Documentation
    Preparing search index...

    OpenAPI document structure.

    interface IDocument {
        components?: OpenApiV3_1.IComponents;
        info?: OpenApiV3_1.IDocument.IInfo;
        openapi: `3.1.${number}`;
        paths?: Record<string, OpenApiV3_1.IPath>;
        security?: Record<string, string[]>[];
        servers?: OpenApiV3_1.IServer[];
        tags?: OpenApiV3_1.IDocument.ITag[];
        webhooks?: Record<
            string,
            | OpenApiV3_1.IPath
            | OpenApiV3_1.IJsonSchema.IReference<`#/components/pathItems/${string}`>,
        >;
    }
    Index

    Properties

    Reusable components.

    API metadata.

    openapi: `3.1.${number}`

    OpenAPI version.

    paths?: Record<string, OpenApiV3_1.IPath>

    API paths and operations.

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

    Global security requirements.

    servers?: OpenApiV3_1.IServer[]

    List of servers.

    Tag definitions.

    webhooks?: Record<
        string,
        | OpenApiV3_1.IPath
        | OpenApiV3_1.IJsonSchema.IReference<`#/components/pathItems/${string}`>,
    >

    Webhook definitions.