Skip to main content
Module

x/jose/index.ts>JWTPayload

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Go to Latest
interface JWTPayload
import { type JWTPayload } from "https://deno.land/x/jose@v4.14.4/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

optional
sub: string

JWT Subject

optional
aud: string | string[]

JWT Audience

optional
jti: string

JWT ID

optional
nbf: number

JWT Not Before

optional
exp: number

JWT Expiration Time

optional
iat: number

JWT Issued At