Documentation
    Preparing search index...

    Path item containing operations by HTTP method.

    interface IPath {
        delete?: SwaggerV2.IOperation;
        get?: SwaggerV2.IOperation;
        head?: SwaggerV2.IOperation;
        options?: SwaggerV2.IOperation;
        parameters?: (
            | SwaggerV2.IOperation.IParameter
            | SwaggerV2.IJsonSchema.IReference<`#/parameters/${string}`>
        )[];
        patch?: SwaggerV2.IOperation;
        post?: SwaggerV2.IOperation;
        put?: SwaggerV2.IOperation;
        trace?: SwaggerV2.IOperation;
        "x-additionalOperations"?: Record<string, SwaggerV2.IOperation>;
    }

    Hierarchy

    Index

    Properties

    parameters?: (
        | SwaggerV2.IOperation.IParameter
        | SwaggerV2.IJsonSchema.IReference<`#/parameters/${string}`>
    )[]

    Path-level parameters.

    Optionalpost

    "x-additionalOperations"?: Record<string, SwaggerV2.IOperation>

    Non-standard HTTP method operations (extension).

    Used when downgrading from OpenAPI v3.2 to preserve non-standard methods like query or custom methods.