Skip to main content

ScopedSchemaName TypeAlias

The name of a schema produced by SchemaFactory, including its optional scope prefix.

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 ScopedSchemaName<TScope extends string | undefined, TName extends number | string> = TScope extends undefined ? `${TName}` : `${TScope}.${TName}`;

Type Parameters​

ParameterConstraintDescription
TScopestring | undefined
TNamenumber | string