Skip to content

Latest commit

 

History

History
105 lines (56 loc) · 1.71 KB

types.JWTPayload.md

File metadata and controls

105 lines (56 loc) · 1.71 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.

Table of contents

Properties

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