Interface for Schema class.
Signature:
export interface SchemaInterface extends SchemaShared<SchemaInterface>
Extends: SchemaShared<SchemaInterface>
Properties
Property | Type | Description |
---|---|---|
type | SchemaType | The type of the property. this can only be undefined when using anyof schemas, which do not have an explicit type in the OpenAPI Specification. |
SchemaInterface.type
The type of the property. this can only be undefined when using anyof
schemas, which do not have an explicit type in the OpenAPI Specification.
Signature:
type?: SchemaType;