blob: 911de19e68066006d53a35918c0556b0a3210c43 [file] [log] [blame]
Jonathan Hart07eb0412016-02-08 16:42:29 -08001{
2 "type": "object",
3 "title": "route",
4 "required": [
5 "source",
6 "group"
7 ],
Kalhee Kim4b2dc722017-10-05 11:56:14 +00008 "optional": [
9 "ingress"
10 ],
Jonathan Hart07eb0412016-02-08 16:42:29 -080011 "properties": {
12 "source": {
13 "type": "string",
14 "example": "10.1.1.0",
15 "description": "Multicast source IP address"
16 },
17 "group": {
18 "type": "string",
19 "example": "10.1.1.0",
20 "description": "Multicast group IP address"
Kalhee Kim4b2dc722017-10-05 11:56:14 +000021 },
22 "ingress": {
23 "type": "string",
24 "example": "of:0000000000000001/1",
25 "description": "Multicast ingress Connection Point device and port"
Jonathan Hart07eb0412016-02-08 16:42:29 -080026 }
27 }
28}