Skip to main content
Module

x/jose/index.ts>JWTPayload

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS with no dependencies using runtime's native crypto in Node.js, Browser, Cloudflare Workers, Electron, and Deno.
Extremely Popular
Go to Latest
interface JWTPayload
import { type JWTPayload } from "https://deno.land/x/jose@v4.8.3/index.ts";

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

Index Signatures

[propName: string]: unknown

Properties

optional
iss: string

JWT Issuer - RFC7519#section-4.1.1.

optional
sub: string

JWT Subject - RFC7519#section-4.1.2.

optional
aud: string | string[]

JWT Audience RFC7519#section-4.1.3.

optional
jti: string
optional
nbf: number

JWT Not Before - RFC7519#section-4.1.5.

optional
exp: number

JWT Expiration Time - RFC7519#section-4.1.4.

optional
iat: number

JWT Issued At - RFC7519#section-4.1.6.