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

    Interface OperationInfo

    Lightweight summary of an OpenAPI operation: its location, identity, description fields, deprecation flag, and the underlying Operation Object. Returned by listOperations / listAllOperations.

    interface OperationInfo {
        path: string;
        method: string;
        operationId: string | undefined;
        summary: string | undefined;
        description: string | undefined;
        deprecated: boolean;
        operation: JsonObject;
    }
    Index

    Properties

    path: string
    method: string
    operationId: string | undefined
    summary: string | undefined
    description: string | undefined
    deprecated: boolean
    operation: JsonObject