forked from microsoft/coe-alm-accelerator-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment-settings.schema.json
153 lines (151 loc) · 3.36 KB
/
deployment-settings.schema.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://example.com/object1684336995.json",
"title": "Root",
"type": "array",
"default": [],
"items":{
"$id": "#root/items",
"title": "Items",
"type": "object",
"required": [
"ApprovalType",
"BuildName",
"BuildTemplate",
"DeploymentEnvironmentName",
"DeploymentEnvironmentUrl",
"EnvironmentUrl",
"ServiceConnectionName",
"StepType",
"UserSettings",
"VariableGroup"
],
"properties": {
"ApprovalType": {
"$id": "#root/items/ApprovalType",
"title": "Approvaltype",
"type": "integer",
"examples": [
809060000
],
"default": 0
},
"BuildName": {
"$id": "#root/items/BuildName",
"title": "Buildname",
"type": "string",
"default": "",
"examples": [
"deploy-validation-ALMAcceleratorSampleSolution"
],
"pattern": "^.*$"
},
"BuildTemplate": {
"$id": "#root/items/BuildTemplate",
"title": "Buildtemplate",
"type": "null",
"default": null
},
"DeploymentEnvironmentName": {
"$id": "#root/items/DeploymentEnvironmentName",
"title": "Deploymentenvironmentname",
"type": "string",
"default": "",
"examples": [
"Validation"
],
"pattern": "^.*$"
},
"DeploymentEnvironmentUrl": {
"$id": "#root/items/DeploymentEnvironmentUrl",
"title": "Deploymentenvironmenturl",
"type": "string",
"default": "",
"examples": [
"https://contoso-validation.crm3.dynamics.com/"
],
"pattern": "^.*$"
},
"EnvironmentUrl": {
"$id": "#root/items/EnvironmentUrl",
"title": "Environmenturl",
"type": "string",
"default": "",
"examples": [
"https://contoso-dev.crm.dynamics.com/"
],
"pattern": "^.*$"
},
"ServiceConnectionName": {
"$id": "#root/items/ServiceConnectionName",
"title": "Serviceconnectionname",
"type": "null",
"default": null
},
"StepType": {
"$id": "#root/items/StepType",
"title": "Steptype",
"type": "integer",
"examples": [
809060001
],
"default": 0
},
"UserSettings": {
"$id": "#root/items/UserSettings",
"title": "Usersettings",
"type": "array",
"default": [],
"items":{
"$id": "#root/items/UserSettings/items",
"title": "Items",
"type": "object",
"required": [
"Data",
"Name",
"Value"
],
"properties": {
"Data": {
"$id": "#root/items/UserSettings/items/Data",
"title": "Data",
"type": "string",
"default": "",
"examples": [
"/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps"
],
"pattern": "^.*$"
},
"Name": {
"$id": "#root/items/UserSettings/items/Name",
"title": "Name",
"type": "string",
"default": "",
"examples": [
"connectionreference.cat_CDS_Current"
],
"pattern": "^.*$"
},
"Value": {
"$id": "#root/items/UserSettings/items/Value",
"title": "Value",
"type": "string",
"default": "",
"examples": [
"e34cedbfbb964b4ca7fc7b806121d17c"
],
"pattern": "^.*$"
}
}
}
},
"VariableGroup": {
"$id": "#root/items/VariableGroup",
"title": "Variablegroup",
"type": "null",
"default": null
}
}
}
}