Schemas jwt

{
"title": "JwtStructure",
"type": "object",
"properties": {
"iss": {
"title": "Iss",
"minLength": 1,
"maxLength": 2083,
"format": "uri",
"type": "string"
},
"sub": {
"title": "Sub",
"minLength": 1,
"maxLength": 2083,
"format": "uri",
"type": "string"
},
"iat": {
"title": "Iat",
"type": "integer"
},
"exp": {
"title": "Exp",
"type": "integer"
},
"jti": {
"title": "Jti",
"type": "string"
},
"aud": {
"title": "Aud",
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 2083,
"format": "uri"
}
}
},
"required": [
"iss",
"sub",
"iat",
"exp",
"jti",
"aud"
]
}