@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface DecodedJWTClaims

    JWT claims section (second segment), decoded but unverified.

    Standard registered claims (RFC 7519 §4.1) are typed; everything else flows through as unknown.

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

    Indexable

    • [key: string]: unknown
    Index

    Properties

    iss?: string
    sub?: string
    aud?: string | string[]

    Audience — string or array of strings per RFC 7519.

    exp?: number
    nbf?: number
    iat?: number
    jti?: string
    scope?: string