26.1 T_TOKEN

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

Table 26-1 T_TOKEN 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.