blob: 513997f5f8f9dd5d8e21fe59732f28c0080e7026 [file] [log] [blame]
Andrea Campanella644a8a62018-03-21 19:08:21 -07001{
2 "type": "object",
3 "title": "multicast-route-creation",
4 "required": [
5 "group",
6 "source"
7 ],
8 "optional": [
9 "sources",
10 "sinks"
11 ],
12 "properties": {
13 "group": {
14 "type": "string",
15 "example": "224.0.1.1",
16 "description": "Multicast Route Group IP Address"
17 },
18 "source": {
19 "type": "string",
20 "example": "10.0.1.1",
21 "description": "Multicast Route Source IP Address"
22 },
23 "sources": {
24 "type": "array",
25 "xml": {
26 "name": "sources",
27 "wrapped": true
28 },
29 "items": {
30 "type": "string",
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020031 "example": "00:CC:00:00:00:02/None",
32 "description": "A host source for the route"
Andrea Campanella644a8a62018-03-21 19:08:21 -070033 },
Andrea Campanella0ddf9b82018-04-27 15:54:42 +020034 "description": "Host source for the route"
Andrea Campanella644a8a62018-03-21 19:08:21 -070035 },
36 "sinks": {
37 "type": "array",
38 "xml": {
39 "name": "sinks",
40 "wrapped": true
41 },
42 "items": {
43 "type": "string",
44 "example": "00:CC:00:00:00:01/None",
45 "description": "A host sink for the route"
46 },
47 "description": "Host sinks for the route"
48 }
49 }
50}