Libraries
    Preparing search index...

    Type Alias ToJsonSchemaOptions

    Options accepted by toJsonSchema.

    type ToJsonSchemaOptions = {
        $schema?: boolean;
        draft?: "2020-12" | "07";
    }
    Index

    Properties

    Properties

    $schema?: boolean

    Whether to include the $schema header in the output. Set to false when embedding in an OpenAPI spec.

    true
    
    draft?: "2020-12" | "07"

    JSON Schema draft version to reference in the $schema header.

    '2020-12'