Schema token_schema.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Claims contained within JSON Web Token",
"patternProperties": { },
"properties": {
"aud": {
"description": "A JSON array of case-sensitive strings, each containing a StringOrURI value that identifies the recipients that the JWT is intended for",
"oneOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "string"
}
]
},
"azp": {
"description": "The client identifier of the OAuth 2.0 client that requested the token",
"type": "string"
},
"client_id": {
"description": "The client identifier of the OAuth 2.0 client that requested the token",
"type": "string"
},
"exp": {
"description": "The UTC time at which the token expires",
"type": "number"
},
"iat": {
"description": "The UTC time at which the token was issued",
"type": "number"
},
"iss": {
"description": "A case-sensitive string containing a StringOrURI value that identifies the Authorization Server that issued the JWT",
"type": "string"
},
"scope": {
"description": "A string containing a space-separated list of scopes associated with the token",
"type": "string"
},