Type Alias IJsonSchemaCollection<Version, Types>

IJsonSchemaCollection: Version extends "3.0"
    ? IJsonSchemaCollection.IV3_0<Types>
    : IJsonSchemaCollection.IV3_1<Types>

Collection of JSON schemas.

Type Parameters

  • Version extends "3.0" | "3.1" = "3.1"

    Version of the OpenAPI specification.

  • Types = unknown[]

    Original TypeScript types used in the JSON schemas.

Jeongho Nam - https://github.com/samchon