forked from contiv-experimental/contivmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appProfile.json
40 lines (40 loc) · 939 Bytes
/
appProfile.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
{
"name": "contivModel",
"objects": [
{
"name": "appProfile",
"type": "object",
"version": "v1",
"key": [ "tenantName", "appProfileName" ],
"cfgProperties": {
"tenantName": {
"type": "string",
"title": "Tenant Name",
"length": 64,
"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])$"
},
"appProfileName": {
"type": "string",
"title": "Application Profile Name",
"length": 64,
"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])$"
},
"endpointGroups": {
"type": "array",
"items": "string",
"title": "Member groups of the appProf"
}
},
"link-sets": {
"endpointGroups": {
"ref": "endpointGroup"
}
},
"links": {
"tenant": {
"ref": "tenant"
}
}
}
]
}