blob: e415a7f5dd584f8d2e33dd6d8a28bb4dccd568f4 [file] [log] [blame]
Jian Lie1c1c8d2016-05-09 16:24:40 -07001{
2 "type": "object",
3 "title": "applicationIds",
4 "required": [
5 "applicationIds"
6 ],
7 "properties": {
8 "applicationIds": {
9 "type": "array",
10 "xml": {
11 "name": "applicationIds",
12 "wrapped": true
13 },
14 "items": {
15 "type": "object",
16 "title": "applicationId",
17 "required": [
18 "name",
19 "id"
20 ],
21 "properties": {
22 "name": {
23 "type": "string",
24 "example": "org.onosproject.distributedprimitives"
25 },
26 "id": {
27 "type": "integer",
28 "format": "int64",
29 "example": 1
30 }
31 }
32 }
33 }
34 }
35}