UNPKG

626 BJSONView Raw
1{
2 "$id": "activate",
3 "type": "object",
4 "anyOf": [
5 {
6 "required": [
7 "token"
8 ]
9 },
10 {
11 "required": [
12 "username"
13 ]
14 }
15 ],
16 "properties": {
17 "username": {
18 "type": "string",
19 "minLength": 1
20 },
21 "token": {
22 "type": "string",
23 "minLength": 1
24 },
25 "remoteip": {
26 "type": "string",
27 "format": "ipv4"
28 },
29 "audience": {
30 "type": "string",
31 "minLength": 1
32 }
33 }
34}
\No newline at end of file