Beignet API reference
    Preparing search index...

    Type Alias OpenAPISecurityScheme

    OpenAPISecurityScheme:
        | {
            description?: string;
            in: "query"
            | "header"
            | "cookie";
            name: string;
            type: "apiKey";
        }
        | {
            bearerFormat?: string;
            description?: string;
            scheme: string;
            type: "http";
        }
        | { description?: string; flows: Record<string, unknown>; type: "oauth2" }
        | { description?: string; openIdConnectUrl: string; type: "openIdConnect" }

    OpenAPI 3.1 security scheme object.