30.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 30-1 T_TOKEN Parameters
| Parameter | Description | 
|---|---|
| 
 | The Javascript Object Signing and Encryption (JOSE) header contains cryptographic parameters. | 
| 
 | The claims which the token asserts. | 
| 
 | The signature of header and payload. | 
Parent topic: APEX_JWT