mbus-backend
    Preparing search index...

    Interface OpenAPI

    the subset of the openapi format(s) we are concerned with generating

    interface OpenAPI {
        components: { schemas: Record<string, JSONSchema.JSONSchema> };
        info: { title: string; version: string };
        openapi: "3.1.2";
        paths: Record<string, { get?: OpenAPIGetPath; post?: OpenAPIPostPath }>;
    }
    Index
    components: { schemas: Record<string, JSONSchema.JSONSchema> }
    info: { title: string; version: string }
    openapi: "3.1.2"
    paths: Record<string, { get?: OpenAPIGetPath; post?: OpenAPIPostPath }>