Type Alias IJsonSchemaUnit<Version, Type>

IJsonSchemaUnit: Version extends "3.0"
    ? IJsonSchemaUnit.IV3_0<Type>
    : IJsonSchemaUnit.IV3_1<Type>

Unit of JSON schema.

IJsonSchemaUnit is a type that represents a single JSON schema unit containing the schema and components.

Type Parameters

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

    Version of the OpenAPI specification

  • Type = unknown

    Original TypeScript type used in the JSON schema

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