blob: 91e104bd3a4080f33146bc26632933bdabcad652 [file] [log] [blame]
Claudine Chiufb8b8162016-04-01 23:50:51 +00001{
2 "type": "object",
3 "title": "tenants",
4 "required": [
5 "tenants"
6 ],
7 "properties": {
8 "tenants": {
9 "type": "array",
10 "xml": {
11 "name": "tenants",
12 "wrapped": true
13 },
14 "items": {
15 "type": "object",
16 "title": "tenant",
17 "required": [
18 "id"
19 ],
20 "properties": {
21 "id": {
22 "type": "String",
23 "example": "Tenant unique identifier"
24 }
25 }
26 }
27 }
28 }
29}