-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathnetconf_managers.json
45 lines (45 loc) · 1.56 KB
/
netconf_managers.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "urn:nuage-metroae:netconfmanager",
"title": "NETCONF Managers",
"description": "Configuration for Netconf Manager.",
"type": "array",
"widget": "form",
"items": {
"widget": "item",
"type": "object",
"title": "NetconfManager",
"additionalProperties": false,
"properties": {
"netconf_server": {
"type": "string",
"format": "hostname",
"title": "NETCONF Server IP or FQDN",
"description": "Hostname or IP address of the machine where NETCONF manager will be installed",
"sectionBegin": "Server Details",
"propertyOrder": 10
},
"email": {
"type": "string",
"format": "email",
"title": "Email address",
"description": "Email address to configure netconf server with",
"propertyOrder": 20
},
"first_name": {
"type": "string",
"title": "First name",
"description": "First name of the NETCONF manager user",
"propertyOrder": 30
},
"last_name": {
"type": "string",
"title": "Last name",
"description": "Last name of the NETCONF manager user",
"sectionEnd": "Server Details",
"propertyOrder": 40
}
},
"required": ["netconf_server"]
}
}