Jonathan Hart | 8338b8d | 2017-08-15 15:46:14 -0700 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "route", | ||||
4 | "required": [ | ||||
5 | "prefix", | ||||
6 | "nextHop" | ||||
7 | ], | ||||
8 | "properties": { | ||||
9 | "prefix": { | ||||
10 | "type": "string", | ||||
11 | "example": "10.1.1.0/24", | ||||
12 | "description": "Route prefix" | ||||
13 | }, | ||||
14 | "nextHop": { | ||||
15 | "type": "string", | ||||
16 | "example": "1.1.1.1", | ||||
17 | "description": "Next hop IP address" | ||||
18 | } | ||||
19 | } | ||||
Andrea Campanella | 40bccdb | 2018-03-09 17:53:25 -0800 | [diff] [blame] | 20 | } |