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

    Interface ResolvedOperation

    Aggregate view of a single OpenAPI operation: the operation itself, its Path Item Object context, merged parameters, request body, and responses. Produced by resolveOperation for rendering and inspection.

    interface ResolvedOperation {
        operation: OperationInfo;
        pathItem: PathItemInfo;
        parameters: ParameterInfo[];
        requestBody: RequestBodyInfo | undefined;
        responses: ResponseInfo[];
    }
    Index

    Properties

    operation: OperationInfo
    pathItem: PathItemInfo
    parameters: ParameterInfo[]
    requestBody: RequestBodyInfo | undefined
    responses: ResponseInfo[]