Skip to content

Commit 945d1d9

Browse files
committed
Add validators to fields (#22)
1 parent cd0fec3 commit 945d1d9

16 files changed

+1008
-1893
lines changed

appProfile.json

+15-9
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,28 @@
66
"type": "object",
77
"key": [ "tenantName", "networkName", "appProfileName" ],
88
"properties": {
9+
"tenantName": {
10+
"type": "string",
11+
"title": "Tenant Name",
12+
"length": 64,
13+
"format": "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9])$"
14+
},
15+
"networkName": {
16+
"type": "string",
17+
"title": "Network of App Prof",
18+
"length": 64,
19+
"format": "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9])$"
20+
},
921
"appProfileName": {
1022
"type": "string",
11-
"title": "Application Profile Name"
23+
"title": "Application Profile Name",
24+
"length": 64,
25+
"format": "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9])$"
1226
},
1327
"endpointGroups": {
1428
"type": "array",
1529
"items": "string",
1630
"title": "Member groups of the appProf"
17-
},
18-
"networkName": {
19-
"type": "string",
20-
"title": "Network of App Prof"
21-
},
22-
"tenantName": {
23-
"type": "string",
24-
"title": "Tenant Name"
2531
}
2632
},
2733
"link-sets": {

bgphost.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "contivModel",
3+
"objects": [{
4+
"name": "Bgp",
5+
"type": "object",
6+
"key": ["hostname"],
7+
"properties": {
8+
"hostname": {
9+
"type": "string",
10+
"title": "host name",
11+
"length": 256,
12+
"format": "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\\\-]*[a-zA-Z0-9])\\\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\\\-]*[A-Za-z0-9])$"
13+
},
14+
"routerip": {
15+
"type": "string",
16+
"title": "Bgp router intf ip",
17+
"length": 15,
18+
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$"
19+
},
20+
"as": {
21+
"type": "string",
22+
"title": "AS id",
23+
"length": 64
24+
},
25+
"neighbor-as": {
26+
"type": "string",
27+
"title": "AS id",
28+
"length": 64
29+
},
30+
"neighbor":{
31+
"type": "string",
32+
"title": "Bgp neighbor",
33+
"length": 15,
34+
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})?$"
35+
}
36+
}
37+
}]
38+
}

0 commit comments

Comments
 (0)