MonoCloud Authentication SDK
    Preparing search index...

    Standard JWT claims shared between ID tokens and access tokens.

    interface JwtClaims {
        aud: string | string[];
        exp: number;
        iat: number;
        iss: string;
        nbf?: number;
        sub: string;
        [key: string]: unknown;
    }

    Hierarchy

    Indexable

    • [key: string]: unknown

      Additional custom or provider-specific claims.

    Index

    Properties

    Properties

    aud: string | string[]

    Intended audience(s) of the 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.

    nbf?: number

    Not-before time (Unix epoch seconds).

    sub: string

    Subject identifier — uniquely identifies the authenticated user.