MonoCloud Authentication SDK
    Preparing search index...

    Interface LogoutTokenClaims

    Claims contained in a validated OpenID Connect Back-Channel Logout Token.

    interface LogoutTokenClaims {
        aud: string | string[];
        events: Record<string, unknown>;
        exp?: number;
        iat: number;
        iss: string;
        jti?: string;
        nbf?: number;
        sid?: string;
        sub?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional custom or provider-specific claims.

    Index
    aud: string | string[]

    Intended audience(s) of the token.

    events: Record<string, unknown>

    Events claim declaring the JWT as a Logout Token.

    exp?: number

    Expiration time of the token (Unix epoch seconds).

    iat: number

    Time at which the token was issued (Unix epoch seconds).

    iss: string

    Issuer identifier - the authorization server that issued the token.

    jti?: string

    Unique identifier of the token.

    nbf?: number

    Not-before time (Unix epoch seconds).

    sid?: string

    Session identifier of the session being terminated.

    sub?: string

    Subject identifier of the user whose sessions are being terminated.