data-cap
    Preparing search index...

    Interface OpenApiSchemaArtifact

    An OpenAPI 3.1 document's components.schemas shape -- see this module's own doc comment for what's deliberately not included.

    interface OpenApiSchemaArtifact {
        components: { schemas: Readonly<Record<string, JsonSchemaLike>> };
        info: { title: string; version: string };
        openapi: "3.1.0";
    }
    Index
    components: { schemas: Readonly<Record<string, JsonSchemaLike>> }
    info: { title: string; version: string }
    openapi: "3.1.0"