schema-components - v3.7.0
    Preparing search index...

    Interface OpenApiDocument

    Parsed OpenAPI document: the raw root JSON plus a cache of resolved #/components/schemas/* (or Swagger 2.0 #/definitions/*) entries. Produced by parseOpenApiDocument and consumed by every other parser/resolver helper in this module.

    interface OpenApiDocument {
        doc: JsonObject;
        schemas: Map<string, JsonObject>;
    }
    Index

    Properties

    Properties

    schemas: Map<string, JsonObject>