DScano | 55a0103 | 2020-04-09 20:01:50 +0200 | [diff] [blame] | 1 | { |
2 | "type": "object", | ||||
3 | "title": "interfaces", | ||||
4 | "required": [ | ||||
5 | "interfaces" | ||||
6 | ], | ||||
7 | "properties": { | ||||
8 | "interfaces": { | ||||
9 | "type": "array", | ||||
10 | "xml": { | ||||
11 | "name": "interfaces", | ||||
12 | "wrapped": true | ||||
13 | }, | ||||
14 | "items": { | ||||
15 | "type": "object", | ||||
16 | "title": "interfaces", | ||||
17 | "required": [ | ||||
18 | "name", | ||||
19 | "connect point", | ||||
20 | "ips", | ||||
21 | "mac", | ||||
22 | "vlan" | ||||
23 | ], | ||||
24 | "properties": { | ||||
25 | "name": { | ||||
26 | "type": "string", | ||||
27 | "example": "h1" | ||||
28 | }, | ||||
29 | "connect point": { | ||||
30 | "type": "string", | ||||
31 | "example": "of:0000000000000001/1" | ||||
32 | }, | ||||
33 | "ips": { | ||||
34 | "type": "array", | ||||
35 | "example": ["10.0.1.1/24"] | ||||
36 | }, | ||||
37 | "mac": { | ||||
38 | "type": "string", | ||||
39 | "example": "00:04:00:00:00:02" | ||||
40 | }, | ||||
41 | "vlan": { | ||||
42 | "type": "string", | ||||
43 | "example": "100" | ||||
44 | } | ||||
45 | } | ||||
46 | } | ||||
47 | } | ||||
48 | } | ||||
DScano | af46bac | 2020-05-19 18:28:12 +0200 | [diff] [blame] | 49 | } |