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

    Interface PathItemInfo

    Path-Item-level metadata. OpenAPI 3.1 added summary and description to Path Item Objects alongside the existing operation-level fields. Both are plain strings (no Markdown rendering at this layer).

    interface PathItemInfo {
        summary: string | undefined;
        description: string | undefined;
    }
    Index

    Properties

    Properties

    summary: string | undefined
    description: string | undefined