Jonathan Hart | 07eb041 | 2016-02-08 16:42:29 -0800 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "routes", | ||||
4 | "required": [ | ||||
5 | "routes" | ||||
6 | ], | ||||
7 | "properties": { | ||||
8 | "routes": { | ||||
9 | "type": "array", | ||||
10 | "xml": { | ||||
11 | "name": "routes", | ||||
12 | "wrapped": true | ||||
13 | }, | ||||
14 | "items": { | ||||
15 | "type": "object", | ||||
16 | "title": "route", | ||||
17 | "required": [ | ||||
18 | "source", | ||||
19 | "group", | ||||
20 | "type" | ||||
21 | ], | ||||
22 | "properties": { | ||||
23 | "source": { | ||||
24 | "type": "string", | ||||
25 | "example": "10.1.1.0", | ||||
26 | "description": "Multicast source IP address" | ||||
27 | }, | ||||
28 | "group": { | ||||
29 | "type": "string", | ||||
30 | "example": "10.1.1.0", | ||||
31 | "description": "Multicast group IP address" | ||||
32 | }, | ||||
33 | "type": { | ||||
34 | "type": "string", | ||||
35 | "example": "STATIC", | ||||
36 | "description": "Type of the multicast route" | ||||
37 | } | ||||
38 | } | ||||
39 | } | ||||
40 | } | ||||
41 | } | ||||
42 | } |