Documentation
    Preparing search index...

    OpenAPI document structure.

    interface IDocument {
        components?: OpenApiV3.IComponents;
        info?: OpenApiV3.IDocument.IInfo;
        openapi: `3.0.${number}` | "3.0";
        paths?: Record<string, OpenApiV3.IPath>;
        security?: Record<string, string[]>[];
        servers?: OpenApiV3.IServer[];
        tags?: OpenApiV3.IDocument.ITag[];
    }
    Index

    Properties

    components?: OpenApiV3.IComponents

    Reusable components.

    API metadata.

    openapi: `3.0.${number}` | "3.0"

    OpenAPI version.

    paths?: Record<string, OpenApiV3.IPath>

    API paths and operations.

    security?: Record<string, string[]>[]

    Global security requirements.

    servers?: OpenApiV3.IServer[]

    List of servers.

    Tag definitions.