MonoCloud Authentication SDK
    Preparing search index...

    Claims contained in a validated OAuth 2.0 access token.

    interface AccessTokenClaims {
        aud: string | string[];
        client_id?: string;
        exp: number;
        iat: number;
        iss: string;
        jti?: string;
        nbf?: number;
        scope?: string;
        sub: string;
        [key: string]: unknown;
    }

    Hierarchy

    Indexable

    • [key: string]: unknown

      Additional custom or provider-specific claims.

    Index
    aud: string | string[]

    Intended audience(s) of the token.

    client_id?: string

    Client ID of the application the token was issued to.

    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

    JWT ID (unique identifier for the token).

    nbf?: number

    Not-before time (Unix epoch seconds).

    scope?: string

    OAuth scope associated with the token.

    sub: string

    Subject identifier — uniquely identifies the authenticated user.