Skip to content

Latest commit

 

History

History
95 lines (48 loc) · 1.49 KB

JWTPayload.md

File metadata and controls

95 lines (48 loc) · 1.49 KB

Interface: JWTPayload

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.

Recognized JWT Claims Set members, any other members may also be present.

Indexable

[propName: string]: unknown

Properties

aud?

optional aud: string | string[]

JWT Audience

See

RFC7519#section-4.1.3


exp?

optional exp: number

JWT Expiration Time

See

RFC7519#section-4.1.4


iat?

optional iat: number

JWT Issued At

See

RFC7519#section-4.1.6


iss?

optional iss: string

JWT Issuer

See

RFC7519#section-4.1.1


jti?

optional jti: string

JWT ID

See

RFC7519#section-4.1.7


nbf?

optional nbf: number

JWT Not Before

See

RFC7519#section-4.1.5


sub?

optional sub: string

JWT Subject

See

RFC7519#section-4.1.2