Andrea Campanella | 644a8a6 | 2018-03-21 19:08:21 -0700 | [diff] [blame] | 1 | { |
| 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 Campanella | 0ddf9b8 | 2018-04-27 15:54:42 +0200 | [diff] [blame] | 31 | "example": "00:CC:00:00:00:02/None", |
| 32 | "description": "A host source for the route" |
Andrea Campanella | 644a8a6 | 2018-03-21 19:08:21 -0700 | [diff] [blame] | 33 | }, |
Andrea Campanella | 0ddf9b8 | 2018-04-27 15:54:42 +0200 | [diff] [blame] | 34 | "description": "Host source for the route" |
Andrea Campanella | 644a8a6 | 2018-03-21 19:08:21 -0700 | [diff] [blame] | 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 | } |