mbus-backend
    Preparing search index...

    Interface OpenAPIGetPath

    interface OpenAPIGetPath {
        description: string;
        parameters: {
            in: "path" | "query";
            name: string;
            required: boolean;
            schema: JSONSchema;
        }[];
        responses: {
            "200": {
                content?: { "application/json": { schema: JSONSchema } };
                description: "success";
            };
        };
        summary: string;
    }

    Hierarchy

    • OpenAPIPathCommon
      • OpenAPIGetPath
    Index
    description: string
    parameters: {
        in: "path" | "query";
        name: string;
        required: boolean;
        schema: JSONSchema;
    }[]
    responses: {
        "200": {
            content?: { "application/json": { schema: JSONSchema } };
            description: "success";
        };
    }
    summary: string