Path item.

OpenApi.IPath represents a path item of emended OpenAPI v3.1, collecting multiple method operations in a single path.

interface IPath {
    delete?: OpenApi.IOperation;
    description?: string;
    get?: OpenApi.IOperation;
    head?: OpenApi.IOperation;
    options?: OpenApi.IOperation;
    patch?: OpenApi.IOperation;
    post?: OpenApi.IOperation;
    put?: OpenApi.IOperation;
    servers?: OpenApi.IServer[];
    summary?: string;
    trace?: OpenApi.IOperation;
}

Hierarchy

Properties

description?: string

Description of the path.

servers?: OpenApi.IServer[]

Servers that provide the path operations.

summary?: string

Summary of the path.