38.1 t_token Record

A t_token record contains the decoded parts of a JSON Web Token.

Syntax

type t_token is record (
    header      VARCHAR2(32767),
    payload     VARCHAR2(32767),
    signature   VARCHAR2(32767) );

Parameters

Parameter Description
header The Javascript Object Signing and Encryption (JOSE) header contains cryptographic parameters.
payload The claims which the token asserts.
signature The signature of header and payload.