blob: caa863d7bbb9b592d69e164dd695dfa844fdf780 [file] [log] [blame]
Jonathan Hart8338b8d2017-08-15 15:46:14 -07001{
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 Campanella40bccdb2018-03-09 17:53:25 -080020}