Skip to main content

UnannotateSchemaRecord TypeAlias

Removes annotations from field schemas in a schema record.

This API is reserved for internal system use and should not be imported directly. It may change at any time without notice.

For more information about our API support guarantees, see here.

Signature

export type UnannotateSchemaRecord<T extends RestrictiveStringRecord<ImplicitAnnotatedFieldSchema>> = {
readonly [P in Extract<keyof T, string>]: UnannotateImplicitFieldSchema<T[P]>;
};

Type Parameters

Parameter Constraint Description
T RestrictiveStringRecord<ImplicitAnnotatedFieldSchema>