22.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 22-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.