@valon-technologies/gestalt
    Preparing search index...

    Interface IntrospectResponse

    IntrospectResponse models RFC 7662 token introspection response fields. subject must be a canonical Gestalt subject ID, for example a user: subject using a stable user identifier or verified email. It must not be a raw upstream OIDC sub. Empty scope means full first-party/Gestalt access for that grant.

    interface IntrospectResponse {
        active: boolean;
        subject: string;
        scope: string;
        clientId: string;
        audience: string[];
    }
    Index

    Properties

    active: boolean
    subject: string
    scope: string
    clientId: string
    audience: string[]