blob: 006ed70d04b46ded78dd523b9d30a60a6ee52087 [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",
31 "example": "of:0000000000000206/8",
32 "description": "A source connect point for the route"
33 },
34 "description": "Source connect points for the route"
35 },
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}