-
Notifications
You must be signed in to change notification settings - Fork 1
/
json_schema.json.example
51 lines (51 loc) · 1.32 KB
/
json_schema.json.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://localhost:8006/json-schema.json",
"title": "userinfo",
"description": "JSON Schema for the userinfo endpoint",
"type": "object",
"properties": {
"bsn": {
"type": "string",
"description": "The Subject Identifier of the End-User."
},
"session_id": {
"type": "string",
"description": "The id of the session created at the Issuer."
},
"loa_authn": {
"type": "string",
"description": "The level of assurance of the authentication performed at the Issuer."
},
"iss": {
"type": "string",
"description": "The identifier of the Issuer of the userinfo."
},
"aud": {
"type": "string",
"description": "The audience(s) that the userinfo is intended for."
},
"nbf": {
"type": "integer",
"description": "The time before which the userinfo MUST NOT be accepted for processing."
},
"exp": {
"type": "integer",
"description": "The time on or after which the userinfo MUST NOT be accepted for processing."
},
"x5c": {
"type": "string",
"description": "The client pubkey used for authentication."
}
},
"required": [
"bsn",
"session_id",
"loa_authn",
"iss",
"aud",
"nbf",
"exp",
"x5c"
]
}