mbus-backend
    Preparing search index...

    Interface OpenAPIPostPath

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

    Hierarchy

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