@suluk/core - v0.1.13
    Preparing search index...

    Interface PathItem

    A pathItem, keyed in paths by its uriTemplate. Each request is an operation (SPEC §1.3/1.4).

    interface PathItem {
        summary?: string;
        description?: string;
        servers?: Server[];
        shared?: Shared;
        requests: Record<string, Request>;
        pathResponses?: Record<string, Response>;
    }
    Index

    Properties

    summary?: string
    description?: string
    servers?: Server[]
    shared?: Shared

    Optional per-level inheritance wrapper (C012 #116).

    requests: Record<string, Request>

    The operations at this path, keyed by stable name (C009). At least one required.

    pathResponses?: Record<string, Response>

    Responses reusable across this pathItem's requests (§5).