UNPKG

674 BJSONView Raw
1{
2 "type": "object",
3 "required": [
4 "organizationId",
5 "username",
6 "permission"
7 ],
8 "properties": {
9 "organizationId": {
10 "type": "string"
11 },
12 "username": {
13 "type": "string"
14 },
15 "permission": {
16 "type": "object",
17 "minProperties": 1,
18 "properties": {
19 "$set": {
20 "type": "array",
21 "items": {
22 "type": "string",
23 "minLength": 1
24 },
25 "minItems": 1
26 },
27 "$remove": {
28 "type": "array",
29 "items": {
30 "type": "string",
31 "minLength": 1
32 },
33 "minItems": 1
34 }
35 }
36 }
37 }
38}