tsoa-next
    Preparing search index...

    Interface Schema2

    interface Schema2 {
        $ref?: string;
        additionalProperties?: boolean | Swagger.Schema2;
        default?: unknown;
        description?: string;
        discriminator?: string;
        enum?: (string | number | boolean | null)[];
        example?: unknown;
        exclusiveMaximum?: boolean;
        exclusiveMinimum?: boolean;
        externalDocs?: Swagger.ExternalDocs;
        format?: Swagger.DataFormat;
        items?: Swagger.Schema2;
        maximum?: number;
        maxItems?: number;
        maxLength?: number;
        maxProperties?: number;
        minimum?: number;
        minItems?: number;
        minLength?: number;
        minProperties?: number;
        multipleOf?: number;
        pattern?: string;
        properties?: { [propertyName: string]: Swagger.Schema2 };
        readOnly?: boolean;
        required?: string[];
        title?: string;
        type?: Swagger.DataType;
        uniqueItems?: boolean;
        "x-deprecated"?: boolean;
        "x-nullable"?: boolean;
        xml?: Swagger.XML;
        [key: `x-${string}`]: unknown;
    }

    Hierarchy

    Indexable

    • [key: `x-${string}`]: unknown
    Index

    Properties

    $ref?: string
    additionalProperties?: boolean | Swagger.Schema2
    default?: unknown
    description?: string
    discriminator?: string
    enum?: (string | number | boolean | null)[]
    example?: unknown
    exclusiveMaximum?: boolean
    exclusiveMinimum?: boolean
    externalDocs?: Swagger.ExternalDocs
    maximum?: number
    maxItems?: number
    maxLength?: number
    maxProperties?: number
    minimum?: number
    minItems?: number
    minLength?: number
    minProperties?: number
    multipleOf?: number
    pattern?: string
    properties?: { [propertyName: string]: Swagger.Schema2 }
    readOnly?: boolean
    required?: string[]
    title?: string
    uniqueItems?: boolean
    "x-deprecated"?: boolean
    "x-nullable"?: boolean
    xml?: Swagger.XML