Skip to content

IdTokenClaims

Defined in: client/src/types.ts:6

Decoded claims from an ID token payload per RFC 7519 and OpenID Connect Core section 2.

[claim: string]: unknown

Additional claims present in the token.

aud: string | string[]

Defined in: client/src/types.ts:12

Audience(s) the token is intended for.


exp: number

Defined in: client/src/types.ts:14

Expiration time as a Unix timestamp in seconds.


iat: number

Defined in: client/src/types.ts:16

Issued-at time as a Unix timestamp in seconds.


iss: string

Defined in: client/src/types.ts:10

Issuer identifier (URL) of the token.


optional nonce?: string

Defined in: client/src/types.ts:18

Nonce value used to associate a client session with an ID token.


sub: string

Defined in: client/src/types.ts:8

Subject identifier for the end-user.