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

    Interface SecurityScheme

    Parsed view of an OpenAPI Security Scheme Object covering every field defined for apiKey, http, oauth2, openIdConnect, and mutualTLS schemes.

    interface SecurityScheme {
        type: string | undefined;
        description: string | undefined;
        name: string | undefined;
        location: string | undefined;
        scheme: string | undefined;
        bearerFormat: string | undefined;
        flows: JsonObject | undefined;
        openIdConnectUrl: string | undefined;
    }
    Index

    Properties

    type: string | undefined
    description: string | undefined
    name: string | undefined
    location: string | undefined
    scheme: string | undefined
    bearerFormat: string | undefined
    flows: JsonObject | undefined
    openIdConnectUrl: string | undefined