UNPKG

477 BJSONView Raw
1{
2 "$id": "challenge",
3 "type": "object",
4 "required": [
5 "type",
6 "username"
7 ],
8 "properties": {
9 "type": {
10 "type": "string",
11 "enum": ["email", "phone"]
12 },
13 "username": {
14 "type": "string",
15 "minLength": 1
16 },
17 "remoteip": {
18 "type": "string",
19 "format": "ipv4"
20 },
21 "metadata": {
22 "type": "object"
23 }
24 }
25}