1{
2 "type": "string",
3 "contentMediaType": "application/jwt",
4 "contentSchema": {
5 "type": "array",
6 "minItems": 2,
7 "items": [
8 {
9 "const": {
10 "typ": "JWT",
11 "alg": "HS256"
12 }
13 },
14 {
15 "type": "object",
16 "required": ["iss", "exp"],
17 "properties": {
18 "iss": {"type": "string"},
19 "exp": {"type": "integer"}
20 }
21 }
22 ]
23 }
24}
25