@ui5/manifest 1.4.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -2
- package/mapping.json +53 -2
- package/package.json +1 -1
- package/schema.json +5167 -841
- package/schema_cil.json +1675 -328
- package/types/manifest.d.ts +3531 -903
package/schema_cil.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"title": "SAP JSON schema for Web Application Manifest File",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-
|
|
2
|
+
"title": "SAP JSON schema for Web Application Manifest File (CIL)",
|
|
3
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"required": [
|
|
6
6
|
"_version",
|
|
@@ -16,7 +16,23 @@
|
|
|
16
16
|
"1.1.0",
|
|
17
17
|
"1.2.0",
|
|
18
18
|
"1.3.0",
|
|
19
|
-
"1.4.0"
|
|
19
|
+
"1.4.0",
|
|
20
|
+
"1.5.0",
|
|
21
|
+
"1.6.0",
|
|
22
|
+
"1.7.0",
|
|
23
|
+
"1.8.0",
|
|
24
|
+
"1.9.0",
|
|
25
|
+
"1.10.0",
|
|
26
|
+
"1.11.0",
|
|
27
|
+
"1.12.0",
|
|
28
|
+
"1.13.0",
|
|
29
|
+
"1.14.0",
|
|
30
|
+
"1.15.0",
|
|
31
|
+
"1.16.0",
|
|
32
|
+
"1.17.0",
|
|
33
|
+
"1.18.0",
|
|
34
|
+
"1.19.0",
|
|
35
|
+
"1.20.0"
|
|
20
36
|
]
|
|
21
37
|
},
|
|
22
38
|
"start_url": {
|
|
@@ -24,7 +40,7 @@
|
|
|
24
40
|
"type": "string"
|
|
25
41
|
},
|
|
26
42
|
"sap.app": {
|
|
27
|
-
"title": "JSON schema for SAP.APP Namespace",
|
|
43
|
+
"title": "JSON schema for SAP.APP Namespace (CIL)",
|
|
28
44
|
"description": "Represents general application attributes",
|
|
29
45
|
"type": "object",
|
|
30
46
|
"additionalProperties": false,
|
|
@@ -42,7 +58,9 @@
|
|
|
42
58
|
"1.1.0",
|
|
43
59
|
"1.2.0",
|
|
44
60
|
"1.3.0",
|
|
45
|
-
"1.4.0"
|
|
61
|
+
"1.4.0",
|
|
62
|
+
"1.5.0",
|
|
63
|
+
"1.6.0"
|
|
46
64
|
]
|
|
47
65
|
},
|
|
48
66
|
"sourceTemplate": {
|
|
@@ -77,30 +95,126 @@
|
|
|
77
95
|
]
|
|
78
96
|
},
|
|
79
97
|
"i18n": {
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
98
|
+
"default": "i18n/i18n.properties",
|
|
99
|
+
"description": "Represents path inside the app to the properties file containing text symbols for the Descriptor or properties file specific settings (including supportedLocales, fallbackLocale, terminologies and enhanceWith)",
|
|
100
|
+
"oneOf": [
|
|
101
|
+
{
|
|
102
|
+
"default": "i18n/i18n.properties",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"type": "object",
|
|
107
|
+
"required": [
|
|
108
|
+
"bundleName"
|
|
109
|
+
],
|
|
110
|
+
"additionalProperties": false,
|
|
111
|
+
"properties": {
|
|
112
|
+
"bundleName": {
|
|
113
|
+
"description": "Represents the alternative for bundleUrl",
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"fallbackLocale": {
|
|
117
|
+
"description": "Represents the fallback locale",
|
|
118
|
+
"type": "string"
|
|
119
|
+
},
|
|
120
|
+
"supportedLocales": {
|
|
121
|
+
"description": "Represents the list of supported locales",
|
|
122
|
+
"type": "array"
|
|
123
|
+
},
|
|
124
|
+
"terminologies": {
|
|
125
|
+
"description": "Represents terminologies with additional properties files",
|
|
126
|
+
"type": "object",
|
|
127
|
+
"additionalProperties": false,
|
|
128
|
+
"patternProperties": {
|
|
129
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
130
|
+
"$ref": "#/definitions/terminologySetting"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"enhanceWith": {
|
|
135
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
136
|
+
"type": "array",
|
|
137
|
+
"items": {
|
|
138
|
+
"type": "object",
|
|
139
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": "object",
|
|
146
|
+
"additionalProperties": false,
|
|
147
|
+
"required": [
|
|
148
|
+
"bundleUrl"
|
|
149
|
+
],
|
|
150
|
+
"properties": {
|
|
151
|
+
"bundleUrl": {
|
|
152
|
+
"description": "Represents the URL for the resource bundle",
|
|
153
|
+
"type": "string"
|
|
154
|
+
},
|
|
155
|
+
"bundleUrlRelativeTo": {
|
|
156
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
157
|
+
"type": "string",
|
|
158
|
+
"default": "component",
|
|
159
|
+
"enum": [
|
|
160
|
+
"manifest",
|
|
161
|
+
"component"
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
"supportedLocales": {
|
|
165
|
+
"description": "Represents the list of supported locales",
|
|
166
|
+
"type": "array"
|
|
167
|
+
},
|
|
168
|
+
"fallbackLocale": {
|
|
169
|
+
"description": "Represents the fallback locale",
|
|
170
|
+
"type": "string"
|
|
171
|
+
},
|
|
172
|
+
"terminologies": {
|
|
173
|
+
"description": "Represents terminologies with additional properties files",
|
|
174
|
+
"type": "object",
|
|
175
|
+
"additionalProperties": false,
|
|
176
|
+
"patternProperties": {
|
|
177
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
178
|
+
"$ref": "#/definitions/terminologySetting"
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"enhanceWith": {
|
|
183
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
184
|
+
"type": "array",
|
|
185
|
+
"items": {
|
|
186
|
+
"type": "object",
|
|
187
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
]
|
|
83
193
|
},
|
|
84
194
|
"embeddedBy": {
|
|
85
195
|
"description": "Represents relative path back to the manifest.json of an embedding component or library (mandatory for nested 'manifest.json')",
|
|
86
196
|
"type": "string"
|
|
87
197
|
},
|
|
88
198
|
"title": {
|
|
89
|
-
"description": "Represents language
|
|
90
|
-
"
|
|
199
|
+
"description": "Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
|
|
200
|
+
"type": "string"
|
|
91
201
|
},
|
|
92
202
|
"subTitle": {
|
|
93
|
-
"description": "Represents language
|
|
94
|
-
"
|
|
203
|
+
"description": "Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
|
|
204
|
+
"type": "string"
|
|
205
|
+
},
|
|
206
|
+
"shortTitle": {
|
|
207
|
+
"description": "Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
|
|
208
|
+
"type": "string"
|
|
95
209
|
},
|
|
96
210
|
"description": {
|
|
97
|
-
"description": "Represents language
|
|
98
|
-
"
|
|
211
|
+
"description": "Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
|
|
212
|
+
"type": "string"
|
|
99
213
|
},
|
|
100
214
|
"ach": {
|
|
101
215
|
"description": "Represents application component hierarchy",
|
|
102
216
|
"type": "string",
|
|
103
|
-
"pattern": "^([a-zA-
|
|
217
|
+
"pattern": "^([a-zA-Z0-9]{2,3})(-[a-zA-Z0-9]{1,6})*$"
|
|
104
218
|
},
|
|
105
219
|
"dataSources": {
|
|
106
220
|
"description": "Represents used data sources with a unique key/alias",
|
|
@@ -142,11 +256,15 @@
|
|
|
142
256
|
"definitions": {
|
|
143
257
|
"version": {
|
|
144
258
|
"type": "string"
|
|
259
|
+
},
|
|
260
|
+
"i18n_key": {
|
|
261
|
+
"type": "string",
|
|
262
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
145
263
|
}
|
|
146
264
|
}
|
|
147
265
|
},
|
|
148
266
|
"sap.ui": {
|
|
149
|
-
"title": "JSON schema for SAP.UI Namespace",
|
|
267
|
+
"title": "JSON schema for SAP.UI Namespace (CIL)",
|
|
150
268
|
"description": "Represents general ui attributes",
|
|
151
269
|
"type": "object",
|
|
152
270
|
"required": [
|
|
@@ -161,18 +279,20 @@
|
|
|
161
279
|
"1.1.0",
|
|
162
280
|
"1.2.0",
|
|
163
281
|
"1.3.0",
|
|
164
|
-
"1.4.0"
|
|
282
|
+
"1.4.0",
|
|
283
|
+
"1.5.0"
|
|
165
284
|
]
|
|
166
285
|
},
|
|
167
286
|
"technology": {
|
|
168
|
-
"description": "Represents UI technology. The possible values are UI5 (default), WDA, NWBC and
|
|
287
|
+
"description": "Represents UI technology. The possible values are UI5 (default), WDA, NWBC, GUI, URL and WCF",
|
|
169
288
|
"type": "string",
|
|
170
289
|
"enum": [
|
|
171
290
|
"UI5",
|
|
172
291
|
"WDA",
|
|
173
292
|
"NWBC",
|
|
174
293
|
"GUI",
|
|
175
|
-
"URL"
|
|
294
|
+
"URL",
|
|
295
|
+
"WCF"
|
|
176
296
|
],
|
|
177
297
|
"default": "UI5"
|
|
178
298
|
},
|
|
@@ -192,7 +312,7 @@
|
|
|
192
312
|
]
|
|
193
313
|
},
|
|
194
314
|
"supportedThemes": {
|
|
195
|
-
"description": "Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
315
|
+
"description": "The property is Deprecated. Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
196
316
|
"type": "array",
|
|
197
317
|
"items": {
|
|
198
318
|
"type": "string"
|
|
@@ -201,238 +321,189 @@
|
|
|
201
321
|
}
|
|
202
322
|
},
|
|
203
323
|
"sap.ui5": {
|
|
204
|
-
"title": "JSON schema for SAP.UI5 Namespace",
|
|
324
|
+
"title": "JSON schema for SAP.UI5 Namespace (CIL)",
|
|
205
325
|
"description": "Represents sapui5 attributes",
|
|
206
|
-
"
|
|
207
|
-
|
|
208
|
-
"required": [
|
|
209
|
-
"dependencies",
|
|
210
|
-
"contentDensities"
|
|
211
|
-
],
|
|
212
|
-
"properties": {
|
|
213
|
-
"_version": {
|
|
214
|
-
"description": " Represents SAPUI5 attributes format version. It is managed by namespace owner",
|
|
215
|
-
"type": "string",
|
|
216
|
-
"enum": [
|
|
217
|
-
"1.1.0",
|
|
218
|
-
"1.2.0",
|
|
219
|
-
"1.3.0"
|
|
220
|
-
]
|
|
221
|
-
},
|
|
222
|
-
"resources": {
|
|
223
|
-
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
224
|
-
"$ref": "#/definitions/resource"
|
|
225
|
-
},
|
|
226
|
-
"dependencies": {
|
|
227
|
-
"description": "Represents external dependences such as libraries or components, that will be loaded by UI5 Core in the initialization phase of your Component and can be used after it",
|
|
326
|
+
"allOf": [
|
|
327
|
+
{
|
|
228
328
|
"type": "object",
|
|
229
|
-
"
|
|
329
|
+
"required": [
|
|
330
|
+
"dependencies",
|
|
331
|
+
"contentDensities"
|
|
332
|
+
],
|
|
230
333
|
"properties": {
|
|
231
|
-
"
|
|
232
|
-
"description": "Represents
|
|
334
|
+
"_version": {
|
|
335
|
+
"description": " Represents SAPUI5 attributes format version. It is managed by namespace owner",
|
|
336
|
+
"type": "string",
|
|
337
|
+
"enum": [
|
|
338
|
+
"1.1.0",
|
|
339
|
+
"1.2.0",
|
|
340
|
+
"1.3.0",
|
|
341
|
+
"1.4.0",
|
|
342
|
+
"1.5.0",
|
|
343
|
+
"1.6.0",
|
|
344
|
+
"1.7.0",
|
|
345
|
+
"1.8.0",
|
|
346
|
+
"1.9.0",
|
|
347
|
+
"1.10.0"
|
|
348
|
+
]
|
|
349
|
+
},
|
|
350
|
+
"resources": {
|
|
351
|
+
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
352
|
+
"$ref": "#/definitions/resource"
|
|
353
|
+
},
|
|
354
|
+
"componentUsages": {
|
|
355
|
+
"description": "Represents the explicit usage declaration for UI5 reuse components",
|
|
233
356
|
"type": "object",
|
|
234
357
|
"additionalProperties": false,
|
|
235
358
|
"patternProperties": {
|
|
236
|
-
"^
|
|
237
|
-
"$ref": "#/definitions/
|
|
359
|
+
"^[a-zA-Z0-9_\\.]*$": {
|
|
360
|
+
"$ref": "#/definitions/componentUsages"
|
|
238
361
|
}
|
|
239
362
|
}
|
|
240
363
|
},
|
|
241
|
-
"
|
|
242
|
-
"description": "Represents
|
|
364
|
+
"dependencies": {
|
|
365
|
+
"description": "Represents external dependences such as libraries or components, that will be loaded by UI5 Core in the initialization phase of your Component and can be used after it",
|
|
243
366
|
"type": "object",
|
|
244
367
|
"additionalProperties": false,
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
},
|
|
253
|
-
"models": {
|
|
254
|
-
"description": "Represents models which should be created/destroyed with the life-cycle of the component",
|
|
255
|
-
"type": "object",
|
|
256
|
-
"additionalProperties": false,
|
|
257
|
-
"patternProperties": {
|
|
258
|
-
"^[a-zA-Z0-9_\\.\\-\\|\\@]*$": {
|
|
259
|
-
"$ref": "#/definitions/model"
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
},
|
|
263
|
-
"resourceRoots": {
|
|
264
|
-
"description": "Represents relative path to the resource. Only relative path allowed, no '../' ",
|
|
265
|
-
"type": "object",
|
|
266
|
-
"additionalProperties": false,
|
|
267
|
-
"patternProperties": {
|
|
268
|
-
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
269
|
-
"$ref": "#/definitions/resourceRoot"
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
},
|
|
273
|
-
"rootView": {
|
|
274
|
-
"description": "Represents the name of the root view",
|
|
275
|
-
"$ref": "#/definitions/rootView_def"
|
|
276
|
-
},
|
|
277
|
-
"handleValidation": {
|
|
278
|
-
"description": "Represents the usage of validation handling by MessageManager for this component (enable/disable)",
|
|
279
|
-
"type": "boolean",
|
|
280
|
-
"default": false
|
|
281
|
-
},
|
|
282
|
-
"config": {
|
|
283
|
-
"description": "Represents the static configuration for components",
|
|
284
|
-
"type": "object",
|
|
285
|
-
"additionalProperties": false,
|
|
286
|
-
"patternProperties": {
|
|
287
|
-
"[\\s\\S]*": {
|
|
288
|
-
"$ref": "#/definitions/config"
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
"routing": {
|
|
293
|
-
"description": "Represents the configuration of routing",
|
|
294
|
-
"type": "object",
|
|
295
|
-
"properties": {
|
|
296
|
-
"config": {
|
|
297
|
-
"description": "Represents the default properties defined for route and target",
|
|
298
|
-
"allOf": [
|
|
299
|
-
{
|
|
368
|
+
"properties": {
|
|
369
|
+
"libs": {
|
|
370
|
+
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
300
371
|
"type": "object",
|
|
301
|
-
"
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
"
|
|
305
|
-
},
|
|
306
|
-
"async": {
|
|
307
|
-
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
308
|
-
"type": "boolean",
|
|
309
|
-
"default": false
|
|
310
|
-
},
|
|
311
|
-
"bypassed": {
|
|
312
|
-
"description": "Represents information about targets to display when no route is matched",
|
|
313
|
-
"type": "object",
|
|
314
|
-
"additionalProperties": false,
|
|
315
|
-
"required": [
|
|
316
|
-
"target"
|
|
317
|
-
],
|
|
318
|
-
"properties": {
|
|
319
|
-
"target": {
|
|
320
|
-
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
321
|
-
"$ref": "#/definitions/arrayOrString"
|
|
322
|
-
}
|
|
323
|
-
}
|
|
372
|
+
"additionalProperties": false,
|
|
373
|
+
"patternProperties": {
|
|
374
|
+
"^([a-z][a-z0-9]{0,39})(\\.[a-z][a-z0-9]{0,39})*$": {
|
|
375
|
+
"$ref": "#/definitions/lib"
|
|
324
376
|
}
|
|
325
377
|
}
|
|
326
378
|
},
|
|
327
|
-
{
|
|
328
|
-
"
|
|
329
|
-
}
|
|
330
|
-
]
|
|
331
|
-
},
|
|
332
|
-
"routes": {
|
|
333
|
-
"oneOf": [
|
|
334
|
-
{
|
|
335
|
-
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
336
|
-
"type": "array",
|
|
337
|
-
"items": {
|
|
338
|
-
"$ref": "#/definitions/route"
|
|
339
|
-
}
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"description": "Represents the definition of routes by providing an object with the route's name as the key and other route options in an object as the value",
|
|
379
|
+
"components": {
|
|
380
|
+
"description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
|
|
343
381
|
"type": "object",
|
|
382
|
+
"additionalProperties": false,
|
|
344
383
|
"patternProperties": {
|
|
345
|
-
"[
|
|
346
|
-
"$ref": "#/definitions/
|
|
384
|
+
"^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$": {
|
|
385
|
+
"$ref": "#/definitions/component"
|
|
347
386
|
}
|
|
348
387
|
}
|
|
349
388
|
}
|
|
350
|
-
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"models": {
|
|
392
|
+
"description": "Represents models which should be created/destroyed with the life-cycle of the component",
|
|
393
|
+
"type": "object",
|
|
394
|
+
"additionalProperties": false,
|
|
395
|
+
"patternProperties": {
|
|
396
|
+
"^[a-zA-Z0-9_\\.\\-\\|@]*$": {
|
|
397
|
+
"$ref": "#/definitions/model"
|
|
398
|
+
}
|
|
399
|
+
}
|
|
351
400
|
},
|
|
352
|
-
"
|
|
353
|
-
"description": "Represents the
|
|
401
|
+
"resourceRoots": {
|
|
402
|
+
"description": "Represents relative path to the resource. Only relative path allowed, no '../' ",
|
|
403
|
+
"type": "object",
|
|
404
|
+
"additionalProperties": false,
|
|
405
|
+
"patternProperties": {
|
|
406
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
407
|
+
"$ref": "#/definitions/resourceRoot"
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"handleValidation": {
|
|
412
|
+
"description": "Represents the usage of validation handling by MessageManager for this component (enable/disable)",
|
|
413
|
+
"type": "boolean",
|
|
414
|
+
"default": false
|
|
415
|
+
},
|
|
416
|
+
"config": {
|
|
417
|
+
"description": "Represents the static configuration for components",
|
|
354
418
|
"type": "object",
|
|
419
|
+
"additionalProperties": false,
|
|
355
420
|
"patternProperties": {
|
|
356
421
|
"[\\s\\S]*": {
|
|
357
|
-
"
|
|
358
|
-
{
|
|
359
|
-
"$ref": "#/definitions/target"
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"type": "object",
|
|
363
|
-
"required": [
|
|
364
|
-
"viewName"
|
|
365
|
-
],
|
|
366
|
-
"properties": {
|
|
367
|
-
"viewName": {
|
|
368
|
-
"description": "Represents the name of a view that will be created",
|
|
369
|
-
"type": "string"
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
"type": "object",
|
|
375
|
-
"properties": {
|
|
376
|
-
"viewID": {
|
|
377
|
-
"description": "Represents the id of the created view",
|
|
378
|
-
"type": "string"
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
]
|
|
422
|
+
"$ref": "#/definitions/config"
|
|
383
423
|
}
|
|
384
424
|
}
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
},
|
|
388
|
-
"extends": {
|
|
389
|
-
"description": "Represents the extension of an additional component",
|
|
390
|
-
"type": "object",
|
|
391
|
-
"additionalProperties": false,
|
|
392
|
-
"properties": {
|
|
393
|
-
"component": {
|
|
394
|
-
"description": "Represents the component name",
|
|
395
|
-
"$ref": "#/definitions/id_def"
|
|
396
425
|
},
|
|
397
|
-
"
|
|
398
|
-
"description": "Represents
|
|
399
|
-
"
|
|
426
|
+
"extends": {
|
|
427
|
+
"description": "Represents the extension of an additional component",
|
|
428
|
+
"type": "object",
|
|
429
|
+
"additionalProperties": false,
|
|
430
|
+
"properties": {
|
|
431
|
+
"component": {
|
|
432
|
+
"description": "Represents the component name",
|
|
433
|
+
"$ref": "#/definitions/id_def"
|
|
434
|
+
},
|
|
435
|
+
"minVersion": {
|
|
436
|
+
"description": "Represents minimal version of the component",
|
|
437
|
+
"$ref": "#/definitions/version"
|
|
438
|
+
},
|
|
439
|
+
"extensions": {
|
|
440
|
+
"description": "Represents extensions of the component",
|
|
441
|
+
"type": "object"
|
|
442
|
+
}
|
|
443
|
+
}
|
|
400
444
|
},
|
|
401
|
-
"
|
|
402
|
-
"description": "Represents
|
|
403
|
-
"type": "object"
|
|
445
|
+
"contentDensities": {
|
|
446
|
+
"description": "Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'",
|
|
447
|
+
"type": "object",
|
|
448
|
+
"additionalProperties": false,
|
|
449
|
+
"required": [
|
|
450
|
+
"compact",
|
|
451
|
+
"cozy"
|
|
452
|
+
],
|
|
453
|
+
"properties": {
|
|
454
|
+
"compact": {
|
|
455
|
+
"description": "Represents indicator whether compact mode is supported",
|
|
456
|
+
"type": "boolean"
|
|
457
|
+
},
|
|
458
|
+
"cozy": {
|
|
459
|
+
"description": "Represents indicator whether cozy mode is supported",
|
|
460
|
+
"type": "boolean"
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"componentName": {
|
|
465
|
+
"description": "Represents a name of the UI5 component",
|
|
466
|
+
"type": "string",
|
|
467
|
+
"pattern": "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
468
|
+
},
|
|
469
|
+
"autoPrefixId": {
|
|
470
|
+
"description": "Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)",
|
|
471
|
+
"type": "boolean"
|
|
472
|
+
},
|
|
473
|
+
"services": {
|
|
474
|
+
"description": "Represents a list of the services ",
|
|
475
|
+
"type": "object",
|
|
476
|
+
"additionalProperties": false,
|
|
477
|
+
"patternProperties": {
|
|
478
|
+
"[\\s\\S]*": {
|
|
479
|
+
"$ref": "#/definitions/service"
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"commands": {
|
|
484
|
+
"description": "Represents a list of UI5 shortcut commands",
|
|
485
|
+
"type": "object",
|
|
486
|
+
"additionalProperties": false,
|
|
487
|
+
"patternProperties": {
|
|
488
|
+
"^[A-Za-z_][A-Za-z0-9_\\-\\|@]+$": {
|
|
489
|
+
"$ref": "#/definitions/command"
|
|
490
|
+
}
|
|
491
|
+
}
|
|
404
492
|
}
|
|
405
493
|
}
|
|
406
494
|
},
|
|
407
|
-
|
|
408
|
-
"description": "Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'",
|
|
495
|
+
{
|
|
409
496
|
"type": "object",
|
|
410
|
-
"additionalProperties": false,
|
|
411
|
-
"required": [
|
|
412
|
-
"compact",
|
|
413
|
-
"cozy"
|
|
414
|
-
],
|
|
415
497
|
"properties": {
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"type": "boolean"
|
|
498
|
+
"routing": {
|
|
499
|
+
"$ref": "#/definitions/routing"
|
|
419
500
|
},
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"type": "boolean"
|
|
501
|
+
"rootView": {
|
|
502
|
+
"$ref": "#/definitions/rootView_def"
|
|
423
503
|
}
|
|
424
504
|
}
|
|
425
|
-
},
|
|
426
|
-
"componentName": {
|
|
427
|
-
"description": "Represents a name of the UI5 component",
|
|
428
|
-
"type": "string",
|
|
429
|
-
"pattern": "^([a-z_$][a-z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
430
|
-
},
|
|
431
|
-
"autoPrefixId": {
|
|
432
|
-
"description": "Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)",
|
|
433
|
-
"type": "boolean"
|
|
434
505
|
}
|
|
435
|
-
|
|
506
|
+
],
|
|
436
507
|
"definitions": {
|
|
437
508
|
"deviceType": {
|
|
438
509
|
"type": "object",
|
|
@@ -452,6 +523,16 @@
|
|
|
452
523
|
"type": "boolean"
|
|
453
524
|
}
|
|
454
525
|
}
|
|
526
|
+
},
|
|
527
|
+
"booleanOrString": {
|
|
528
|
+
"oneOf": [
|
|
529
|
+
{
|
|
530
|
+
"type": "boolean"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"type": "string"
|
|
534
|
+
}
|
|
535
|
+
]
|
|
455
536
|
}
|
|
456
537
|
}
|
|
457
538
|
},
|
|
@@ -521,15 +602,59 @@
|
|
|
521
602
|
}
|
|
522
603
|
}
|
|
523
604
|
},
|
|
524
|
-
"sap.
|
|
525
|
-
"title": "JSON schema for SAP.
|
|
526
|
-
"description": "Represents
|
|
605
|
+
"sap.platform.cf": {
|
|
606
|
+
"title": "JSON schema for SAP.PLATFORM.CF Namespace",
|
|
607
|
+
"description": "Represents CF(Cloud Foundry) platform specific attributes",
|
|
527
608
|
"type": "object",
|
|
528
|
-
"
|
|
529
|
-
|
|
530
|
-
"
|
|
531
|
-
|
|
532
|
-
|
|
609
|
+
"additionalProperties": true,
|
|
610
|
+
"properties": {
|
|
611
|
+
"_version": {
|
|
612
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
613
|
+
"type": "string",
|
|
614
|
+
"enum": [
|
|
615
|
+
"1.1.0",
|
|
616
|
+
"1.2.0"
|
|
617
|
+
]
|
|
618
|
+
},
|
|
619
|
+
"oAuthScopes": {
|
|
620
|
+
"description": "Represents the authorization scope of the application",
|
|
621
|
+
"type": "array",
|
|
622
|
+
"items": {
|
|
623
|
+
"type": "string"
|
|
624
|
+
},
|
|
625
|
+
"appHostId": {
|
|
626
|
+
"description": "Application host id to which the HTML5 app belongs",
|
|
627
|
+
"type": "string"
|
|
628
|
+
},
|
|
629
|
+
"changedOn": {
|
|
630
|
+
"description": "Changed on time stamp of the HTML5 app",
|
|
631
|
+
"type": "string"
|
|
632
|
+
},
|
|
633
|
+
"appName": {
|
|
634
|
+
"description": "Represents the HTML5 application name",
|
|
635
|
+
"type": "string",
|
|
636
|
+
"pattern": "^[a-z][a-z0-9]{0,29}$"
|
|
637
|
+
},
|
|
638
|
+
"appVersion": {
|
|
639
|
+
"description": "Represents the version of the HTML5 application",
|
|
640
|
+
"type": "string"
|
|
641
|
+
},
|
|
642
|
+
"multiVersionApp": {
|
|
643
|
+
"description": "Indicates wether an HTML5 application is multi-version enabled",
|
|
644
|
+
"type": "boolean"
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
"sap.fiori": {
|
|
650
|
+
"title": "JSON schema for SAP.FIORI Namespace",
|
|
651
|
+
"description": "Represents SAP Fiori specific attributes",
|
|
652
|
+
"type": "object",
|
|
653
|
+
"required": [
|
|
654
|
+
"registrationIds",
|
|
655
|
+
"archeType"
|
|
656
|
+
],
|
|
657
|
+
"additionalProperties": false,
|
|
533
658
|
"properties": {
|
|
534
659
|
"_version": {
|
|
535
660
|
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
@@ -569,7 +694,9 @@
|
|
|
569
694
|
"type": "string",
|
|
570
695
|
"enum": [
|
|
571
696
|
"1.1.0",
|
|
572
|
-
"1.2.0"
|
|
697
|
+
"1.2.0",
|
|
698
|
+
"1.3.0",
|
|
699
|
+
"1.4.0"
|
|
573
700
|
]
|
|
574
701
|
},
|
|
575
702
|
"settings": {
|
|
@@ -578,20 +705,37 @@
|
|
|
578
705
|
},
|
|
579
706
|
"pages": {
|
|
580
707
|
"description": "Represents one ore more pages of an application. UI5 routing is created from the definitions in this section",
|
|
581
|
-
"
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
708
|
+
"oneOf": [
|
|
709
|
+
{
|
|
710
|
+
"type": "array",
|
|
711
|
+
"items": {
|
|
712
|
+
"$ref": "#/definitions/pages_array"
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"type": "object",
|
|
717
|
+
"additionalProperties": false,
|
|
718
|
+
"patternProperties": {
|
|
719
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
720
|
+
"$ref": "#/definitions/pages_map"
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
]
|
|
585
725
|
}
|
|
586
726
|
}
|
|
587
727
|
},
|
|
728
|
+
"sap.fe": {
|
|
729
|
+
"title": "JSON schema for SAP.FE Namespace",
|
|
730
|
+
"description": "Represents specific attributes for Fiori Elements ",
|
|
731
|
+
"type": "object"
|
|
732
|
+
},
|
|
588
733
|
"sap.flp": {
|
|
589
734
|
"title": "JSON schema for SAP.FLP Namespace",
|
|
590
735
|
"description": "Represents FLP specific attributes",
|
|
591
736
|
"type": "object",
|
|
592
737
|
"required": [
|
|
593
|
-
"type"
|
|
594
|
-
"config"
|
|
738
|
+
"type"
|
|
595
739
|
],
|
|
596
740
|
"additionalProperties": false,
|
|
597
741
|
"properties": {
|
|
@@ -600,7 +744,8 @@
|
|
|
600
744
|
"type": "string",
|
|
601
745
|
"enum": [
|
|
602
746
|
"1.1.0",
|
|
603
|
-
"1.2.0"
|
|
747
|
+
"1.2.0",
|
|
748
|
+
"1.3.0"
|
|
604
749
|
]
|
|
605
750
|
},
|
|
606
751
|
"tileSize": {
|
|
@@ -630,6 +775,21 @@
|
|
|
630
775
|
"type": "object"
|
|
631
776
|
}
|
|
632
777
|
}
|
|
778
|
+
},
|
|
779
|
+
"origin": {
|
|
780
|
+
"description": "Represents the original tile and target mapping which resulted in this app",
|
|
781
|
+
"type": "object",
|
|
782
|
+
"additionalProperties": false,
|
|
783
|
+
"properties": {
|
|
784
|
+
"tileId": {
|
|
785
|
+
"description": "Represents the original tile which resulted in this app",
|
|
786
|
+
"type": "string"
|
|
787
|
+
},
|
|
788
|
+
"targetMappingId": {
|
|
789
|
+
"description": "Represents the original target mapping which resulted in this app",
|
|
790
|
+
"type": "string"
|
|
791
|
+
}
|
|
792
|
+
}
|
|
633
793
|
}
|
|
634
794
|
}
|
|
635
795
|
},
|
|
@@ -641,9 +801,6 @@
|
|
|
641
801
|
"cards"
|
|
642
802
|
],
|
|
643
803
|
"dependencies": {
|
|
644
|
-
"globalFilterModel": [
|
|
645
|
-
"globalFilterEntityType"
|
|
646
|
-
],
|
|
647
804
|
"globalFilterEntityType": [
|
|
648
805
|
"globalFilterModel"
|
|
649
806
|
]
|
|
@@ -655,28 +812,84 @@
|
|
|
655
812
|
"type": "string",
|
|
656
813
|
"enum": [
|
|
657
814
|
"1.1.0",
|
|
658
|
-
"1.2.0"
|
|
815
|
+
"1.2.0",
|
|
816
|
+
"1.3.0"
|
|
659
817
|
]
|
|
660
818
|
},
|
|
661
819
|
"globalFilterModel": {
|
|
662
820
|
"description": "Represents the name of global filter OData model, which contains entities definition that are relevant for global filters",
|
|
663
821
|
"type": "string",
|
|
664
|
-
"pattern": "^[a-zA-Z0-9_
|
|
822
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
665
823
|
},
|
|
666
824
|
"globalFilterEntityType": {
|
|
667
825
|
"description": "Represents the entity to use as global filter in the smart filter bar control",
|
|
668
826
|
"type": "string",
|
|
669
|
-
"pattern": "^[a-zA-Z0-9_
|
|
827
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
828
|
+
},
|
|
829
|
+
"globalFilterEntitySet": {
|
|
830
|
+
"description": "Represents the entity set to use as global filter in the smart filter bar control",
|
|
831
|
+
"type": "string",
|
|
832
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
833
|
+
},
|
|
834
|
+
"showBasicSearch": {
|
|
835
|
+
"description": "Represents a switch to include basic search in the global filters",
|
|
836
|
+
"type": "boolean",
|
|
837
|
+
"default": false
|
|
838
|
+
},
|
|
839
|
+
"disableErrorPage": {
|
|
840
|
+
"description": "Represents a switch to disable the error page shown on load of overview page when no data is retreived from the backend",
|
|
841
|
+
"type": "boolean",
|
|
842
|
+
"default": false
|
|
843
|
+
},
|
|
844
|
+
"smartVariantRequired": {
|
|
845
|
+
"description": "Represents a switch to activate smart variant management in the global filters",
|
|
846
|
+
"type": "boolean",
|
|
847
|
+
"default": true
|
|
848
|
+
},
|
|
849
|
+
"bHeaderExpanded": {
|
|
850
|
+
"description": "Represents a switch to show smart filter bar in expanded or collapsed mode",
|
|
851
|
+
"type": "boolean",
|
|
852
|
+
"default": false
|
|
670
853
|
},
|
|
671
854
|
"containerLayout": {
|
|
672
855
|
"description": "Represents the layout of the card container",
|
|
673
856
|
"type": "string",
|
|
674
|
-
"default": "
|
|
857
|
+
"default": "fixed",
|
|
675
858
|
"enum": [
|
|
676
|
-
"
|
|
677
|
-
"
|
|
859
|
+
"fixed",
|
|
860
|
+
"resizable"
|
|
678
861
|
]
|
|
679
862
|
},
|
|
863
|
+
"showDateInRelativeFormat": {
|
|
864
|
+
"description": "Represents a switch to Enable or disable Relative or Normal date formating in ovp application",
|
|
865
|
+
"type": "boolean",
|
|
866
|
+
"default": true
|
|
867
|
+
},
|
|
868
|
+
"disableTableCardFlexibility": {
|
|
869
|
+
"description": "Represents a switch to Enable or Disable the Flexibility of Table cards",
|
|
870
|
+
"type": "boolean",
|
|
871
|
+
"default": false
|
|
872
|
+
},
|
|
873
|
+
"enableLiveFilter": {
|
|
874
|
+
"description": "Represents the switch to activate live update in the global filters, else manual update will be required",
|
|
875
|
+
"type": "boolean",
|
|
876
|
+
"default": true
|
|
877
|
+
},
|
|
878
|
+
"considerAnalyticalParameters": {
|
|
879
|
+
"description": "Flag to enable/disable analytical parameter support for Smart filter bar",
|
|
880
|
+
"type": "boolean",
|
|
881
|
+
"default": false
|
|
882
|
+
},
|
|
883
|
+
"refreshIntervalInMinutes": {
|
|
884
|
+
"description": "Time interval in minutes to auto refresh the card models",
|
|
885
|
+
"type": "integer",
|
|
886
|
+
"default": 1
|
|
887
|
+
},
|
|
888
|
+
"useDateRangeType": {
|
|
889
|
+
"description": "Flag to enable/disable semantic date range control for Smart filter bar",
|
|
890
|
+
"type": "boolean",
|
|
891
|
+
"default": false
|
|
892
|
+
},
|
|
680
893
|
"cards": {
|
|
681
894
|
"type": "object",
|
|
682
895
|
"additionalProperties": false,
|
|
@@ -686,12 +899,12 @@
|
|
|
686
899
|
}
|
|
687
900
|
}
|
|
688
901
|
},
|
|
689
|
-
"
|
|
902
|
+
"resizableLayout": {
|
|
690
903
|
"type": "object",
|
|
691
904
|
"additionalProperties": false,
|
|
692
905
|
"patternProperties": {
|
|
693
906
|
"^cols_[0-9]+$": {
|
|
694
|
-
"$ref": "#/definitions/
|
|
907
|
+
"$ref": "#/definitions/resizableLayoutVariant"
|
|
695
908
|
}
|
|
696
909
|
}
|
|
697
910
|
}
|
|
@@ -717,7 +930,7 @@
|
|
|
717
930
|
"applicationId": {
|
|
718
931
|
"description": "Represents ID of an application",
|
|
719
932
|
"type": "string",
|
|
720
|
-
"pattern": "^[a-zA-Z0-9
|
|
933
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,30}$"
|
|
721
934
|
},
|
|
722
935
|
"configId": {
|
|
723
936
|
"description": "Represents ID of an application configuration",
|
|
@@ -728,6 +941,11 @@
|
|
|
728
941
|
"description": "Represents SAP Screen Personas Flavor ID",
|
|
729
942
|
"type": "string",
|
|
730
943
|
"pattern": "^[A-F0-9]{1,32}$"
|
|
944
|
+
},
|
|
945
|
+
"compatibilityMode": {
|
|
946
|
+
"description": "Indicates that WebDynpro Application requires Compatibility Mode, while uses legacy shell services. Possible values are true or false (default)",
|
|
947
|
+
"type": "boolean",
|
|
948
|
+
"default": false
|
|
731
949
|
}
|
|
732
950
|
}
|
|
733
951
|
},
|
|
@@ -741,7 +959,8 @@
|
|
|
741
959
|
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
742
960
|
"type": "string",
|
|
743
961
|
"enum": [
|
|
744
|
-
"1.1.0"
|
|
962
|
+
"1.1.0",
|
|
963
|
+
"1.2.0"
|
|
745
964
|
]
|
|
746
965
|
},
|
|
747
966
|
"activateFilterReduction": {
|
|
@@ -753,6 +972,11 @@
|
|
|
753
972
|
"description": "Represents a switch to activate LREP as the persistence for configurations and texts",
|
|
754
973
|
"type": "boolean",
|
|
755
974
|
"default": false
|
|
975
|
+
},
|
|
976
|
+
"useHeadRequestForXsrfToken": {
|
|
977
|
+
"description": "Represents a switch to use HEAD-Requests instead of GET-Requests when fetching the XSRF-Security-Token",
|
|
978
|
+
"type": "boolean",
|
|
979
|
+
"default": false
|
|
756
980
|
}
|
|
757
981
|
}
|
|
758
982
|
},
|
|
@@ -781,7 +1005,7 @@
|
|
|
781
1005
|
"transaction": {
|
|
782
1006
|
"description": "Represents transaction of an application",
|
|
783
1007
|
"type": "string",
|
|
784
|
-
"pattern": "^[a-zA-Z0-9
|
|
1008
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,20}$"
|
|
785
1009
|
},
|
|
786
1010
|
"flavorId": {
|
|
787
1011
|
"description": "Represents SAP Screen Personas Flavor ID",
|
|
@@ -790,6 +1014,77 @@
|
|
|
790
1014
|
}
|
|
791
1015
|
}
|
|
792
1016
|
},
|
|
1017
|
+
"sap.integration": {
|
|
1018
|
+
"title": "JSON schema for SAP.INTEGRATION Namespace",
|
|
1019
|
+
"description": "Represents Application Integration specific attributes",
|
|
1020
|
+
"type": "object",
|
|
1021
|
+
"required": [
|
|
1022
|
+
"urlTemplateId",
|
|
1023
|
+
"parameters"
|
|
1024
|
+
],
|
|
1025
|
+
"properties": {
|
|
1026
|
+
"_version": {
|
|
1027
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1028
|
+
"type": "string",
|
|
1029
|
+
"enum": [
|
|
1030
|
+
"1.0.0"
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
"urlTemplateId": {
|
|
1034
|
+
"description": "Reference to the desired URL Template",
|
|
1035
|
+
"type": "string",
|
|
1036
|
+
"examples": [
|
|
1037
|
+
"template.sap.sfsf",
|
|
1038
|
+
"template.sap.ui5",
|
|
1039
|
+
"template.sap.wda"
|
|
1040
|
+
]
|
|
1041
|
+
},
|
|
1042
|
+
"parameters": {
|
|
1043
|
+
"description": "Represents configuration parameters which will be used by Template Engine to compile URL Template",
|
|
1044
|
+
"type": "array",
|
|
1045
|
+
"items": {
|
|
1046
|
+
"type": "object",
|
|
1047
|
+
"required": [
|
|
1048
|
+
"key",
|
|
1049
|
+
"value"
|
|
1050
|
+
],
|
|
1051
|
+
"properties": {
|
|
1052
|
+
"key": {
|
|
1053
|
+
"type": "string",
|
|
1054
|
+
"description": "Represents the name of the desired parameter"
|
|
1055
|
+
},
|
|
1056
|
+
"value": {
|
|
1057
|
+
"type": "string",
|
|
1058
|
+
"description": "Represents the actual value of the desired parameter"
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"sap.wcf": {
|
|
1066
|
+
"title": "JSON schema for SAP.WCF Namespace",
|
|
1067
|
+
"description": "Represents WCF Application specific attributes",
|
|
1068
|
+
"type": "object",
|
|
1069
|
+
"required": [
|
|
1070
|
+
"wcf-target-id"
|
|
1071
|
+
],
|
|
1072
|
+
"additionalProperties": false,
|
|
1073
|
+
"properties": {
|
|
1074
|
+
"_version": {
|
|
1075
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1076
|
+
"type": "string",
|
|
1077
|
+
"enum": [
|
|
1078
|
+
"1.1.0"
|
|
1079
|
+
]
|
|
1080
|
+
},
|
|
1081
|
+
"wcf-target-id": {
|
|
1082
|
+
"description": "Represents the target technical id for a WCF Application",
|
|
1083
|
+
"type": "string",
|
|
1084
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,10}$"
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
793
1088
|
"sap.ui.smartbusiness.app": {
|
|
794
1089
|
"title": "JSON schema for SAP.UI.SMARTBUSINESS.APP Namespace",
|
|
795
1090
|
"description": "Represents specific attributes for Smart Business ",
|
|
@@ -821,6 +1116,160 @@
|
|
|
821
1116
|
}
|
|
822
1117
|
}
|
|
823
1118
|
}
|
|
1119
|
+
},
|
|
1120
|
+
"sap.copilot": {
|
|
1121
|
+
"title": "JSON schema for SAP.COPILOT Namespace",
|
|
1122
|
+
"description": "Represents specific attributes for SAP CoPilot",
|
|
1123
|
+
"type": "object",
|
|
1124
|
+
"additionalProperties": true,
|
|
1125
|
+
"properties": {
|
|
1126
|
+
"_version": {
|
|
1127
|
+
"description": "Represents SAP.COPILOT attributes format version. It is managed by namespace owner",
|
|
1128
|
+
"type": "string",
|
|
1129
|
+
"enum": [
|
|
1130
|
+
"1.0.0",
|
|
1131
|
+
"1.1.0"
|
|
1132
|
+
]
|
|
1133
|
+
},
|
|
1134
|
+
"contextAnalysis": {
|
|
1135
|
+
"description": "Settings for the context analysis features of SAP CoPilot",
|
|
1136
|
+
"type": "object",
|
|
1137
|
+
"additionalProperties": true,
|
|
1138
|
+
"properties": {
|
|
1139
|
+
"allowAddingObjectsFromAppScreenToCollection": {
|
|
1140
|
+
"description": "Enable/Disable the ability for SAP CoPilot to analyze your Application Screens and add the found objects to a Collection",
|
|
1141
|
+
"type": "boolean",
|
|
1142
|
+
"default": true
|
|
1143
|
+
},
|
|
1144
|
+
"whitelistedEntityTypes": {
|
|
1145
|
+
"description": "A list of the whitelisted EntityTypes, prefixed with their namespace, that SAP CoPilot can display. The empty list is ignored, thus allowing all EntityTypes by default.",
|
|
1146
|
+
"type": "array",
|
|
1147
|
+
"items": {
|
|
1148
|
+
"type": "string"
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"digitalAssistant": {
|
|
1154
|
+
"description": "Settings for the Digital Assistant features of SAP CoPilot",
|
|
1155
|
+
"type": "object",
|
|
1156
|
+
"additionalProperties": true,
|
|
1157
|
+
"properties": {
|
|
1158
|
+
"intentDefinition": {
|
|
1159
|
+
"description": "A list of Intent",
|
|
1160
|
+
"type": "object",
|
|
1161
|
+
"additionalProperties": false,
|
|
1162
|
+
"patternProperties": {
|
|
1163
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1164
|
+
"type": "object",
|
|
1165
|
+
"additionalProperties": true,
|
|
1166
|
+
"properties": {
|
|
1167
|
+
"uri": {
|
|
1168
|
+
"description": "Represents the uri of the intent",
|
|
1169
|
+
"type": "string"
|
|
1170
|
+
},
|
|
1171
|
+
"dataSources": {
|
|
1172
|
+
"description": "A list of the sap.app.dataSources used by the intent",
|
|
1173
|
+
"type": "array",
|
|
1174
|
+
"items": {
|
|
1175
|
+
"type": "string"
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
"i18n": {
|
|
1179
|
+
"description": "Represents the uri of the translation file",
|
|
1180
|
+
"type": "string"
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
"sap.map": {
|
|
1191
|
+
"title": "JSON schema for SAP.MAP Namespace",
|
|
1192
|
+
"description": "Represents specific attributes for SAP.MAP ",
|
|
1193
|
+
"type": "object"
|
|
1194
|
+
},
|
|
1195
|
+
"sap.url": {
|
|
1196
|
+
"title": "JSON schema for SAP.URL Namespace",
|
|
1197
|
+
"description": "Represents specific attributes for SAP URL",
|
|
1198
|
+
"type": "object",
|
|
1199
|
+
"additionalProperties": false,
|
|
1200
|
+
"required": [
|
|
1201
|
+
"uri"
|
|
1202
|
+
],
|
|
1203
|
+
"properties": {
|
|
1204
|
+
"_version": {
|
|
1205
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1206
|
+
"type": "string",
|
|
1207
|
+
"enum": [
|
|
1208
|
+
"1.0.0"
|
|
1209
|
+
]
|
|
1210
|
+
},
|
|
1211
|
+
"uri": {
|
|
1212
|
+
"description": "Represents URI of an application",
|
|
1213
|
+
"type": "string"
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"sap.platform.sfsf": {
|
|
1218
|
+
"title": "JSON schema for SAP.PLATFORM.SFSF Namespace",
|
|
1219
|
+
"description": "Represents SFSF platform specific attributes",
|
|
1220
|
+
"type": "object",
|
|
1221
|
+
"additionalProperties": false,
|
|
1222
|
+
"required": [
|
|
1223
|
+
"appName"
|
|
1224
|
+
],
|
|
1225
|
+
"properties": {
|
|
1226
|
+
"_version": {
|
|
1227
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1228
|
+
"type": "string",
|
|
1229
|
+
"enum": [
|
|
1230
|
+
"1.0.0"
|
|
1231
|
+
]
|
|
1232
|
+
},
|
|
1233
|
+
"uri": {
|
|
1234
|
+
"description": "Represents the uri inside the SFSF app",
|
|
1235
|
+
"type": "string"
|
|
1236
|
+
},
|
|
1237
|
+
"appName": {
|
|
1238
|
+
"description": "Represents the SFSF application name",
|
|
1239
|
+
"type": "string"
|
|
1240
|
+
},
|
|
1241
|
+
"appVersion": {
|
|
1242
|
+
"description": "Represents the version of the SFSF application",
|
|
1243
|
+
"type": "string"
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
},
|
|
1247
|
+
"sap.cloud": {
|
|
1248
|
+
"title": "JSON schema for SAP.CLOUD Namespace",
|
|
1249
|
+
"description": "Represents cloud platform specific attributes",
|
|
1250
|
+
"type": "object",
|
|
1251
|
+
"additionalProperties": false,
|
|
1252
|
+
"properties": {
|
|
1253
|
+
"_version": {
|
|
1254
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1255
|
+
"type": "string",
|
|
1256
|
+
"enum": [
|
|
1257
|
+
"1.0.0",
|
|
1258
|
+
"1.1.0",
|
|
1259
|
+
"1.2.0"
|
|
1260
|
+
]
|
|
1261
|
+
},
|
|
1262
|
+
"service": {
|
|
1263
|
+
"description": "Unique Business Service Identifier",
|
|
1264
|
+
"type": "string",
|
|
1265
|
+
"pattern": "^[^- @#$%^&()!]+$"
|
|
1266
|
+
},
|
|
1267
|
+
"public": {
|
|
1268
|
+
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
1269
|
+
"type": "boolean",
|
|
1270
|
+
"default": false
|
|
1271
|
+
}
|
|
1272
|
+
}
|
|
824
1273
|
}
|
|
825
1274
|
},
|
|
826
1275
|
"definitions": {
|
|
@@ -847,7 +1296,11 @@
|
|
|
847
1296
|
}
|
|
848
1297
|
}
|
|
849
1298
|
},
|
|
850
|
-
"
|
|
1299
|
+
"levelsDef": {
|
|
1300
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
1301
|
+
"type": "array"
|
|
1302
|
+
},
|
|
1303
|
+
"resizableLayoutVariantCardProperties": {
|
|
851
1304
|
"required": [
|
|
852
1305
|
"col",
|
|
853
1306
|
"row",
|
|
@@ -881,16 +1334,98 @@
|
|
|
881
1334
|
}
|
|
882
1335
|
}
|
|
883
1336
|
},
|
|
884
|
-
"
|
|
885
|
-
"description": "Represents the
|
|
886
|
-
"
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
"
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
1337
|
+
"customActionsSetting": {
|
|
1338
|
+
"description": "Represents the properties for the custom actions in the Quick View Cards",
|
|
1339
|
+
"type": "object",
|
|
1340
|
+
"additionalProperties": true,
|
|
1341
|
+
"properties": {
|
|
1342
|
+
"text": {
|
|
1343
|
+
"description": "Text displayed for extended actions in Quick View",
|
|
1344
|
+
"type": "string",
|
|
1345
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1346
|
+
},
|
|
1347
|
+
"press": {
|
|
1348
|
+
"description": "Name of the press handler for extended actions in Quick View",
|
|
1349
|
+
"type": "string",
|
|
1350
|
+
"pattern": "^[^\\W\\.\\-][\\w\\.\\-]*$"
|
|
1351
|
+
},
|
|
1352
|
+
"position": {
|
|
1353
|
+
"description": "Position of extended actions in Quick View",
|
|
1354
|
+
"type": "integer"
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
},
|
|
1358
|
+
"timeAxisDef": {
|
|
1359
|
+
"description": "Represents the configuration to customize the time axis",
|
|
1360
|
+
"type": "object",
|
|
1361
|
+
"properties": {
|
|
1362
|
+
"levels": {
|
|
1363
|
+
"$ref": "#/definitions/levelsDef"
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
},
|
|
1367
|
+
"plotAreaDef": {
|
|
1368
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
1369
|
+
"type": "object",
|
|
1370
|
+
"additionalProperties": false,
|
|
1371
|
+
"properties": {
|
|
1372
|
+
"isSmoothed": {
|
|
1373
|
+
"description": "Represents whether smoother curves are required or not",
|
|
1374
|
+
"type": "boolean",
|
|
1375
|
+
"default": false
|
|
1376
|
+
},
|
|
1377
|
+
"markerSize": {
|
|
1378
|
+
"description": "Represents the size of the markers in scatter plots",
|
|
1379
|
+
"type": "integer"
|
|
1380
|
+
},
|
|
1381
|
+
"dataLabel": {
|
|
1382
|
+
"type": "object",
|
|
1383
|
+
"description": "dataLabel is a parent property that defines other properties for type",
|
|
1384
|
+
"additionalProperties": false,
|
|
1385
|
+
"properties": {
|
|
1386
|
+
"type": {
|
|
1387
|
+
"description": "Defines whether to display percentage values or actual counts in the donut chart",
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"enum": [
|
|
1390
|
+
"value",
|
|
1391
|
+
"percentage"
|
|
1392
|
+
],
|
|
1393
|
+
"default": "value"
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
}
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
"objectStreamCardsSettingsDef": {
|
|
1400
|
+
"description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards",
|
|
1401
|
+
"type": "object",
|
|
1402
|
+
"additionalProperties": true,
|
|
1403
|
+
"properties": {
|
|
1404
|
+
"showFirstActionInFooter": {
|
|
1405
|
+
"description": "Represents the flag to show first action in footer of the Quickview cards",
|
|
1406
|
+
"type": "boolean",
|
|
1407
|
+
"default": false
|
|
1408
|
+
},
|
|
1409
|
+
"customActions": {
|
|
1410
|
+
"description": "Represents the custom actions in the Quick View Cards",
|
|
1411
|
+
"type": "array",
|
|
1412
|
+
"minItems": 1,
|
|
1413
|
+
"items": {
|
|
1414
|
+
"$ref": "#/definitions/customActionsSetting"
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
},
|
|
1419
|
+
"defaultSpanDef": {
|
|
1420
|
+
"description": "Represents the card default grid size in columns and rows",
|
|
1421
|
+
"oneOf": [
|
|
1422
|
+
{
|
|
1423
|
+
"type": "object",
|
|
1424
|
+
"additionalProperties": false,
|
|
1425
|
+
"required": [
|
|
1426
|
+
"cols",
|
|
1427
|
+
"rows"
|
|
1428
|
+
],
|
|
894
1429
|
"properties": {
|
|
895
1430
|
"cols": {
|
|
896
1431
|
"description": "Represents the number of the number of grid columns",
|
|
@@ -899,6 +1434,23 @@
|
|
|
899
1434
|
"rows": {
|
|
900
1435
|
"description": "Represents the number of the number of grid rows",
|
|
901
1436
|
"type": "integer"
|
|
1437
|
+
},
|
|
1438
|
+
"showOnlyHeader": {
|
|
1439
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
1440
|
+
"type": "boolean",
|
|
1441
|
+
"default": false
|
|
1442
|
+
},
|
|
1443
|
+
"minimumTitleRow": {
|
|
1444
|
+
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
1445
|
+
"type": "integer",
|
|
1446
|
+
"default": 1,
|
|
1447
|
+
"pattern": "^[1-3]$"
|
|
1448
|
+
},
|
|
1449
|
+
"minimumSubTitleRow": {
|
|
1450
|
+
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
1451
|
+
"type": "integer",
|
|
1452
|
+
"default": 1,
|
|
1453
|
+
"pattern": "^[12]$"
|
|
902
1454
|
}
|
|
903
1455
|
}
|
|
904
1456
|
},
|
|
@@ -918,42 +1470,77 @@
|
|
|
918
1470
|
"annotationPath": {
|
|
919
1471
|
"description": "Represents the annotation path",
|
|
920
1472
|
"type": "string",
|
|
921
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1473
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
922
1474
|
},
|
|
923
1475
|
"selectionAnnotationPath": {
|
|
924
1476
|
"description": "Represents the selection annotation path",
|
|
925
1477
|
"type": "string",
|
|
926
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1478
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
927
1479
|
},
|
|
928
1480
|
"chartAnnotationPath": {
|
|
929
1481
|
"description": "Represents the chart annotation path",
|
|
930
1482
|
"type": "string",
|
|
931
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1483
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
932
1484
|
},
|
|
933
1485
|
"presentationAnnotationPath": {
|
|
934
1486
|
"description": "Represents the presentation annotation path",
|
|
935
1487
|
"type": "string",
|
|
936
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1488
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
937
1489
|
},
|
|
938
1490
|
"dataPointAnnotationPath": {
|
|
939
1491
|
"description": "Represents the data point annotation path",
|
|
940
1492
|
"type": "string",
|
|
941
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1493
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
942
1494
|
},
|
|
943
1495
|
"identificationAnnotationPath": {
|
|
944
1496
|
"description": "Represents the identification annotation path",
|
|
945
1497
|
"type": "string",
|
|
946
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1498
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1499
|
+
},
|
|
1500
|
+
"dynamicSubtitleAnnotationPath": {
|
|
1501
|
+
"description": "Represents the dynamic subtitle annotation path",
|
|
1502
|
+
"type": "string",
|
|
1503
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
947
1504
|
},
|
|
948
1505
|
"value": {
|
|
949
1506
|
"description": "Represents the drop down value to be shown",
|
|
950
1507
|
"type": "string"
|
|
1508
|
+
},
|
|
1509
|
+
"chartProperties": {
|
|
1510
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
1511
|
+
"type": "object",
|
|
1512
|
+
"additionalProperties": false,
|
|
1513
|
+
"properties": {
|
|
1514
|
+
"plotArea": {
|
|
1515
|
+
"$ref": "#/definitions/plotAreaDef"
|
|
1516
|
+
},
|
|
1517
|
+
"timeAxis": {
|
|
1518
|
+
"$ref": "#/definitions/timeAxisDef"
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
},
|
|
1522
|
+
"colorPalette": {
|
|
1523
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
1524
|
+
"oneOf": [
|
|
1525
|
+
{
|
|
1526
|
+
"type": "array",
|
|
1527
|
+
"items": {
|
|
1528
|
+
"type": "object"
|
|
1529
|
+
}
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"type": "object"
|
|
1533
|
+
}
|
|
1534
|
+
]
|
|
951
1535
|
}
|
|
952
1536
|
}
|
|
953
1537
|
},
|
|
954
1538
|
"card_setting": {
|
|
955
1539
|
"description": "Represents the card specific properties - properties that are passed to the card",
|
|
956
1540
|
"type": "object",
|
|
1541
|
+
"required": [
|
|
1542
|
+
"title"
|
|
1543
|
+
],
|
|
957
1544
|
"additionalProperties": true,
|
|
958
1545
|
"properties": {
|
|
959
1546
|
"category": {
|
|
@@ -961,6 +1548,11 @@
|
|
|
961
1548
|
"type": "string",
|
|
962
1549
|
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
963
1550
|
},
|
|
1551
|
+
"itemText": {
|
|
1552
|
+
"description": "Represents the user defined string in placeholder card",
|
|
1553
|
+
"type": "string",
|
|
1554
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1555
|
+
},
|
|
964
1556
|
"title": {
|
|
965
1557
|
"description": "Represents language-dependent title of the card - used in the card header",
|
|
966
1558
|
"type": "string",
|
|
@@ -971,10 +1563,15 @@
|
|
|
971
1563
|
"type": "string",
|
|
972
1564
|
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
973
1565
|
},
|
|
1566
|
+
"valueSelectionInfo": {
|
|
1567
|
+
"description": "Represents things like people, number of items",
|
|
1568
|
+
"type": "string",
|
|
1569
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1570
|
+
},
|
|
974
1571
|
"entitySet": {
|
|
975
1572
|
"description": "Represents the entity set that will be displayed in this card",
|
|
976
1573
|
"type": "string",
|
|
977
|
-
"pattern": "^[a-zA-Z0-
|
|
1574
|
+
"pattern": "^[a-zA-Z0-9_]+$"
|
|
978
1575
|
},
|
|
979
1576
|
"staticContent": {
|
|
980
1577
|
"description": "Represents the static content that will be displayed in this card",
|
|
@@ -1015,32 +1612,47 @@
|
|
|
1015
1612
|
"annotationPath": {
|
|
1016
1613
|
"description": "Represents the annotation path",
|
|
1017
1614
|
"type": "string",
|
|
1018
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1615
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1019
1616
|
},
|
|
1020
1617
|
"selectionAnnotationPath": {
|
|
1021
1618
|
"description": "Represents the selection annotation path",
|
|
1022
1619
|
"type": "string",
|
|
1023
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1620
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1024
1621
|
},
|
|
1025
1622
|
"chartAnnotationPath": {
|
|
1026
1623
|
"description": "Represents the chart annotation path",
|
|
1027
1624
|
"type": "string",
|
|
1028
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1625
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1029
1626
|
},
|
|
1030
1627
|
"presentationAnnotationPath": {
|
|
1031
1628
|
"description": "Represents the presentation annotation path",
|
|
1032
1629
|
"type": "string",
|
|
1033
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1630
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1034
1631
|
},
|
|
1035
1632
|
"dataPointAnnotationPath": {
|
|
1036
1633
|
"description": "Represents the data point annotation path",
|
|
1037
1634
|
"type": "string",
|
|
1038
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1635
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1039
1636
|
},
|
|
1040
1637
|
"identificationAnnotationPath": {
|
|
1041
1638
|
"description": "Represents the identification annotation path",
|
|
1042
1639
|
"type": "string",
|
|
1043
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1640
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#,]*$"
|
|
1641
|
+
},
|
|
1642
|
+
"kpiAnnotationPath": {
|
|
1643
|
+
"description": "Represents the KPI annotation path",
|
|
1644
|
+
"type": "string",
|
|
1645
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1646
|
+
},
|
|
1647
|
+
"selectionPresentationAnnotationPath": {
|
|
1648
|
+
"description": "Represents the selection presentation annotation path",
|
|
1649
|
+
"type": "string",
|
|
1650
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1651
|
+
},
|
|
1652
|
+
"dynamicSubtitleAnnotationPath": {
|
|
1653
|
+
"description": "Represents the dynamic subtitle annotation path",
|
|
1654
|
+
"type": "string",
|
|
1655
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1044
1656
|
},
|
|
1045
1657
|
"ignoreSapText": {
|
|
1046
1658
|
"description": "Represents the flag to indicate priority of number formatting over sap text",
|
|
@@ -1052,18 +1664,92 @@
|
|
|
1052
1664
|
},
|
|
1053
1665
|
"requireAppAuthorization": {
|
|
1054
1666
|
"description": "Represents the cards for which authorization is required",
|
|
1667
|
+
"type": "string"
|
|
1668
|
+
},
|
|
1669
|
+
"objectStreamCardsSettings": {
|
|
1670
|
+
"$ref": "#/definitions/objectStreamCardsSettingsDef"
|
|
1671
|
+
},
|
|
1672
|
+
"enableLocaleCurrencyFormatting": {
|
|
1673
|
+
"description": "Represents the flag to indicate the use of object number/smart field",
|
|
1674
|
+
"type": "boolean",
|
|
1675
|
+
"default": false
|
|
1676
|
+
},
|
|
1677
|
+
"navigation": {
|
|
1678
|
+
"description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards",
|
|
1679
|
+
"type": "string",
|
|
1680
|
+
"enum": [
|
|
1681
|
+
"dataPointNav",
|
|
1682
|
+
"chartNav",
|
|
1683
|
+
"headerNav",
|
|
1684
|
+
"noHeaderNav"
|
|
1685
|
+
]
|
|
1686
|
+
},
|
|
1687
|
+
"showFilterInHeader": {
|
|
1688
|
+
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application",
|
|
1689
|
+
"type": "boolean",
|
|
1690
|
+
"default": false
|
|
1691
|
+
},
|
|
1692
|
+
"showSortingInHeader": {
|
|
1693
|
+
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application",
|
|
1694
|
+
"type": "boolean",
|
|
1695
|
+
"default": false
|
|
1696
|
+
},
|
|
1697
|
+
"imageSupported": {
|
|
1698
|
+
"description": "Flag for enabling images in a condensed list card",
|
|
1699
|
+
"type": "boolean",
|
|
1700
|
+
"default": false
|
|
1701
|
+
},
|
|
1702
|
+
"showLineItemDetail": {
|
|
1703
|
+
"description": "Flag for show line item detail in list and table card",
|
|
1704
|
+
"type": "boolean",
|
|
1705
|
+
"default": false
|
|
1706
|
+
},
|
|
1707
|
+
"showLabelText": {
|
|
1708
|
+
"description": "This property is responsible for showing and hiding text labels on the geo spots",
|
|
1709
|
+
"type": "boolean",
|
|
1710
|
+
"default": false
|
|
1711
|
+
},
|
|
1712
|
+
"customParams": {
|
|
1713
|
+
"description": "This property is responsible for passing custom parameters present in the entity set to the navigating application",
|
|
1055
1714
|
"type": "string",
|
|
1056
|
-
"pattern": "^[
|
|
1715
|
+
"pattern": "^[^\\W\\.\\-][\\w\\.\\-]*$"
|
|
1716
|
+
},
|
|
1717
|
+
"chartProperties": {
|
|
1718
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
1719
|
+
"type": "object",
|
|
1720
|
+
"additionalProperties": false,
|
|
1721
|
+
"properties": {
|
|
1722
|
+
"plotArea": {
|
|
1723
|
+
"$ref": "#/definitions/plotAreaDef"
|
|
1724
|
+
},
|
|
1725
|
+
"timeAxis": {
|
|
1726
|
+
"$ref": "#/definitions/timeAxisDef"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"colorPalette": {
|
|
1731
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
1732
|
+
"oneOf": [
|
|
1733
|
+
{
|
|
1734
|
+
"type": "array",
|
|
1735
|
+
"items": {
|
|
1736
|
+
"type": "object"
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"type": "object"
|
|
1741
|
+
}
|
|
1742
|
+
]
|
|
1057
1743
|
}
|
|
1058
1744
|
}
|
|
1059
1745
|
},
|
|
1060
|
-
"
|
|
1061
|
-
"description": "Represents the
|
|
1746
|
+
"resizableLayoutVariant": {
|
|
1747
|
+
"description": "Represents the resizable layout variant",
|
|
1062
1748
|
"type": "object",
|
|
1063
1749
|
"additionalProperties": false,
|
|
1064
1750
|
"patternProperties": {
|
|
1065
1751
|
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
1066
|
-
"$ref": "#/definitions/
|
|
1752
|
+
"$ref": "#/definitions/resizableLayoutVariantCardProperties"
|
|
1067
1753
|
}
|
|
1068
1754
|
}
|
|
1069
1755
|
},
|
|
@@ -1082,7 +1768,7 @@
|
|
|
1082
1768
|
"model": {
|
|
1083
1769
|
"description": "Represents the model for the card",
|
|
1084
1770
|
"type": "string",
|
|
1085
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1771
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
1086
1772
|
},
|
|
1087
1773
|
"template": {
|
|
1088
1774
|
"description": "Represents the card component path to use for this card",
|
|
@@ -1102,9 +1788,71 @@
|
|
|
1102
1788
|
}
|
|
1103
1789
|
}
|
|
1104
1790
|
},
|
|
1105
|
-
"
|
|
1106
|
-
"
|
|
1107
|
-
|
|
1791
|
+
"defaultLayoutType_def": {
|
|
1792
|
+
"type": "string"
|
|
1793
|
+
},
|
|
1794
|
+
"implementingComponent_def": {
|
|
1795
|
+
"type": "object",
|
|
1796
|
+
"additionalProperties": false,
|
|
1797
|
+
"required": [
|
|
1798
|
+
"componentName"
|
|
1799
|
+
],
|
|
1800
|
+
"properties": {
|
|
1801
|
+
"componentName": {
|
|
1802
|
+
"description": "Represents the name of the component to be loaded inside the canvas",
|
|
1803
|
+
"type": "string",
|
|
1804
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
1805
|
+
},
|
|
1806
|
+
"binding": {
|
|
1807
|
+
"description": " Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute ",
|
|
1808
|
+
"type": "string"
|
|
1809
|
+
},
|
|
1810
|
+
"settings": {
|
|
1811
|
+
"$ref": "#/definitions/component_setting_def"
|
|
1812
|
+
},
|
|
1813
|
+
"pages": {
|
|
1814
|
+
"type": "object",
|
|
1815
|
+
"additionalProperties": false,
|
|
1816
|
+
"patternProperties": {
|
|
1817
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
1818
|
+
"$ref": "#/definitions/pages_map"
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
"routingSpec_def": {
|
|
1825
|
+
"type": "object",
|
|
1826
|
+
"additionalProperties": false,
|
|
1827
|
+
"required": [
|
|
1828
|
+
"routeName"
|
|
1829
|
+
],
|
|
1830
|
+
"properties": {
|
|
1831
|
+
"routeName": {
|
|
1832
|
+
"description": "Represents the name of the route",
|
|
1833
|
+
"type": "string"
|
|
1834
|
+
},
|
|
1835
|
+
"noOData": {
|
|
1836
|
+
"description": "Represents the switch to indicate, that this route is not related to the OData service",
|
|
1837
|
+
"type": "boolean"
|
|
1838
|
+
},
|
|
1839
|
+
"binding": {
|
|
1840
|
+
"description": "Represents the binding string to indicate, how the page should be bound relative to the predecessor page or absolute",
|
|
1841
|
+
"type": "string"
|
|
1842
|
+
},
|
|
1843
|
+
"headerTitle": {
|
|
1844
|
+
"description": "Represents the the title to be shown on the page",
|
|
1845
|
+
"type": "string"
|
|
1846
|
+
},
|
|
1847
|
+
"typeImageUrl": {
|
|
1848
|
+
"description": "Represents the URL pointing to an icon, that will be shown in the navigation menu additional to the title to represent the page",
|
|
1849
|
+
"type": "string"
|
|
1850
|
+
},
|
|
1851
|
+
"noKey": {
|
|
1852
|
+
"description": "Represents the switch to indicate, whether this route is reached via a 1:1 navigation or a 1:n navigation",
|
|
1853
|
+
"type": "boolean"
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1108
1856
|
},
|
|
1109
1857
|
"navigation_def": {
|
|
1110
1858
|
"description": "Represents ...",
|
|
@@ -1147,11 +1895,15 @@
|
|
|
1147
1895
|
}
|
|
1148
1896
|
}
|
|
1149
1897
|
},
|
|
1898
|
+
"component_setting_def": {
|
|
1899
|
+
"description": "Represents the settings specific to one component",
|
|
1900
|
+
"type": "object"
|
|
1901
|
+
},
|
|
1150
1902
|
"embeddedComponent": {
|
|
1151
1903
|
"type": "object",
|
|
1152
1904
|
"additionalProperties": false,
|
|
1153
1905
|
"patternProperties": {
|
|
1154
|
-
"^[a-zA-Z0-9_
|
|
1906
|
+
"^[a-zA-Z0-9_.:-]+$": {
|
|
1155
1907
|
"allOf": [
|
|
1156
1908
|
{
|
|
1157
1909
|
"type": "object",
|
|
@@ -1163,7 +1915,7 @@
|
|
|
1163
1915
|
"id": {
|
|
1164
1916
|
"description": "Represents an unique id for the instance of the reuse component inside of the object page",
|
|
1165
1917
|
"type": "string",
|
|
1166
|
-
"pattern": "^([A-Za-z_][
|
|
1918
|
+
"pattern": "^([A-Za-z_][-A-Za-z0-9_.:]*)$"
|
|
1167
1919
|
},
|
|
1168
1920
|
"title": {
|
|
1169
1921
|
"description": "Represents the title for the content of the reuse component",
|
|
@@ -1177,6 +1929,18 @@
|
|
|
1177
1929
|
"settings": {
|
|
1178
1930
|
"description": "Represents a map to populate the API of the reuse component",
|
|
1179
1931
|
"type": "object"
|
|
1932
|
+
},
|
|
1933
|
+
"hiddenByDefault": {
|
|
1934
|
+
"description": "Flag, whether the embedded component should be hidden by default",
|
|
1935
|
+
"type: ": "boolean"
|
|
1936
|
+
},
|
|
1937
|
+
"groupTitle": {
|
|
1938
|
+
"description": "Represents group title of reuse components",
|
|
1939
|
+
"type": "string"
|
|
1940
|
+
},
|
|
1941
|
+
"leadingSectionIdOrPath": {
|
|
1942
|
+
"description": "Represents a section that behaves a leading section for the group",
|
|
1943
|
+
"type": "string"
|
|
1180
1944
|
}
|
|
1181
1945
|
}
|
|
1182
1946
|
},
|
|
@@ -1191,7 +1955,19 @@
|
|
|
1191
1955
|
"componentName": {
|
|
1192
1956
|
"description": "Represents the name of the reuse component ",
|
|
1193
1957
|
"type": "string",
|
|
1194
|
-
"pattern": "^([a-zA-Z][a-zA-Z0-
|
|
1958
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
1959
|
+
}
|
|
1960
|
+
}
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"type": "object",
|
|
1964
|
+
"required": [
|
|
1965
|
+
"componentUsage"
|
|
1966
|
+
],
|
|
1967
|
+
"properties": {
|
|
1968
|
+
"componentUsage": {
|
|
1969
|
+
"description": "Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages",
|
|
1970
|
+
"type": "string"
|
|
1195
1971
|
}
|
|
1196
1972
|
}
|
|
1197
1973
|
},
|
|
@@ -1230,11 +2006,64 @@
|
|
|
1230
2006
|
}
|
|
1231
2007
|
}
|
|
1232
2008
|
},
|
|
1233
|
-
"
|
|
2009
|
+
"pages_map": {
|
|
2010
|
+
"type": "object",
|
|
2011
|
+
"additionalProperties": false,
|
|
2012
|
+
"required": [
|
|
2013
|
+
"component"
|
|
2014
|
+
],
|
|
2015
|
+
"properties": {
|
|
2016
|
+
"navigationProperty": {
|
|
2017
|
+
"description": "Represents the navigation property that leads to this page. The navigation links of the previous page (the page that calls this one) are determined through this property ",
|
|
2018
|
+
"type": "string"
|
|
2019
|
+
},
|
|
2020
|
+
"entitySet": {
|
|
2021
|
+
"description": "Represents the entity set that defines either the aggregation or the root object of the component",
|
|
2022
|
+
"type": "string"
|
|
2023
|
+
},
|
|
2024
|
+
"component": {
|
|
2025
|
+
"description": "Represents the component and its settings that makes the page",
|
|
2026
|
+
"$ref": "#/definitions/component_def"
|
|
2027
|
+
},
|
|
2028
|
+
"navigation": {
|
|
2029
|
+
"description": "Represents the different navigation targets",
|
|
2030
|
+
"$ref": "#/definitions/navigation_def"
|
|
2031
|
+
},
|
|
2032
|
+
"embeddedComponents": {
|
|
2033
|
+
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
2034
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
2035
|
+
},
|
|
2036
|
+
"routingSpec": {
|
|
2037
|
+
"description": "Represents the routing specification",
|
|
2038
|
+
"$ref": "#/definitions/routingSpec_def"
|
|
2039
|
+
},
|
|
2040
|
+
"implementingComponent": {
|
|
2041
|
+
"description": "Represents the component to be loaded inside the canvas if sap.suite.ui.generic.template.Canvas is used as component name, and its settings",
|
|
2042
|
+
"$ref": "#/definitions/implementingComponent_def"
|
|
2043
|
+
},
|
|
2044
|
+
"defaultLayoutType": {
|
|
2045
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
2046
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2047
|
+
},
|
|
2048
|
+
"defaultLayoutTypeIfExternalNavigation": {
|
|
2049
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
2050
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2051
|
+
},
|
|
2052
|
+
"pages": {
|
|
2053
|
+
"type": "object",
|
|
2054
|
+
"additionalProperties": false,
|
|
2055
|
+
"patternProperties": {
|
|
2056
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
2057
|
+
"$ref": "#/definitions/pages_map"
|
|
2058
|
+
}
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
}
|
|
2062
|
+
},
|
|
2063
|
+
"pages_array": {
|
|
1234
2064
|
"type": "object",
|
|
1235
2065
|
"additionalProperties": false,
|
|
1236
2066
|
"required": [
|
|
1237
|
-
"entitySet",
|
|
1238
2067
|
"component"
|
|
1239
2068
|
],
|
|
1240
2069
|
"properties": {
|
|
@@ -1258,10 +2087,26 @@
|
|
|
1258
2087
|
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
1259
2088
|
"$ref": "#/definitions/embeddedComponent"
|
|
1260
2089
|
},
|
|
2090
|
+
"routingSpec": {
|
|
2091
|
+
"description": "Represents the routing specification",
|
|
2092
|
+
"$ref": "#/definitions/routingSpec_def"
|
|
2093
|
+
},
|
|
2094
|
+
"implementingComponent": {
|
|
2095
|
+
"description": "Represents the component to be loaded inside the canvas if sap.suite.ui.generic.template.Canvas is used as component name, and its settings",
|
|
2096
|
+
"$ref": "#/definitions/implementingComponent_def"
|
|
2097
|
+
},
|
|
2098
|
+
"defaultLayoutType": {
|
|
2099
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
2100
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2101
|
+
},
|
|
2102
|
+
"defaultLayoutTypeIfExternalNavigation": {
|
|
2103
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
2104
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2105
|
+
},
|
|
1261
2106
|
"pages": {
|
|
1262
2107
|
"type": "array",
|
|
1263
2108
|
"items": {
|
|
1264
|
-
"$ref": "#/definitions/
|
|
2109
|
+
"$ref": "#/definitions/pages_array"
|
|
1265
2110
|
}
|
|
1266
2111
|
}
|
|
1267
2112
|
}
|
|
@@ -1270,28 +2115,24 @@
|
|
|
1270
2115
|
"description": "Represents global settings for the application controller",
|
|
1271
2116
|
"type": "object"
|
|
1272
2117
|
},
|
|
1273
|
-
"
|
|
2118
|
+
"routeTargetObject": {
|
|
2119
|
+
"description": "Represents the definition of a target of a route as object.",
|
|
1274
2120
|
"type": "object",
|
|
1275
|
-
"additionalProperties": true,
|
|
1276
2121
|
"properties": {
|
|
1277
|
-
"
|
|
1278
|
-
"description": "Represents
|
|
1279
|
-
"type": "string"
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
"type": "string"
|
|
1292
|
-
},
|
|
1293
|
-
"id_def_0": {
|
|
1294
|
-
"type": "string"
|
|
2122
|
+
"name": {
|
|
2123
|
+
"description": "Represents the name of the routing target",
|
|
2124
|
+
"type": "string"
|
|
2125
|
+
},
|
|
2126
|
+
"prefix": {
|
|
2127
|
+
"description": "The prefix of the routing target",
|
|
2128
|
+
"type": "string"
|
|
2129
|
+
},
|
|
2130
|
+
"propagateTitle": {
|
|
2131
|
+
"description": "Indicates whether this 'Component' target should propagate it's title to this component or not",
|
|
2132
|
+
"type": "boolean",
|
|
2133
|
+
"default": "#/definitions/routing/config/propagateTitle"
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
1295
2136
|
},
|
|
1296
2137
|
"routeWithoutName": {
|
|
1297
2138
|
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
@@ -1307,7 +2148,11 @@
|
|
|
1307
2148
|
},
|
|
1308
2149
|
"target": {
|
|
1309
2150
|
"description": "Represents one or multiple names of targets which are displayed when the route is matched",
|
|
1310
|
-
"$ref": "#/definitions/
|
|
2151
|
+
"$ref": "#/definitions/routeTarget"
|
|
2152
|
+
},
|
|
2153
|
+
"titleTarget": {
|
|
2154
|
+
"description": "Represents the name of the target where the 'title' information should be taken",
|
|
2155
|
+
"type": "string"
|
|
1311
2156
|
}
|
|
1312
2157
|
}
|
|
1313
2158
|
},
|
|
@@ -1335,6 +2180,10 @@
|
|
|
1335
2180
|
"description": "Represents the definition of each target",
|
|
1336
2181
|
"type": "object",
|
|
1337
2182
|
"properties": {
|
|
2183
|
+
"title": {
|
|
2184
|
+
"description": "Represents the information which is included as a parameter of the 'titleChanged' event fired on Router when this target is displayed. The title can be set with static text and can also be set with a valid property binding syntax which will be resolved under the scope of the view in the target where the title property is defined.",
|
|
2185
|
+
"type": "string"
|
|
2186
|
+
},
|
|
1338
2187
|
"viewType": {
|
|
1339
2188
|
"description": "Represents the type of view that is going to be created",
|
|
1340
2189
|
"type": "string",
|
|
@@ -1346,10 +2195,6 @@
|
|
|
1346
2195
|
"Template"
|
|
1347
2196
|
]
|
|
1348
2197
|
},
|
|
1349
|
-
"viewPath": {
|
|
1350
|
-
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
1351
|
-
"type": "string"
|
|
1352
|
-
},
|
|
1353
2198
|
"targetParent": {
|
|
1354
2199
|
"description": "Represents the id of the view that contains the control specified by the 'controlId'",
|
|
1355
2200
|
"type": "string"
|
|
@@ -1399,42 +2244,210 @@
|
|
|
1399
2244
|
}
|
|
1400
2245
|
}
|
|
1401
2246
|
},
|
|
1402
|
-
"
|
|
2247
|
+
"routeTarget": {
|
|
2248
|
+
"description": "Represents the definition of a target of a route.",
|
|
1403
2249
|
"oneOf": [
|
|
1404
2250
|
{
|
|
1405
2251
|
"type": "array",
|
|
1406
|
-
"items":
|
|
1407
|
-
|
|
1408
|
-
|
|
2252
|
+
"items": [
|
|
2253
|
+
{
|
|
2254
|
+
"oneOf": [
|
|
2255
|
+
{
|
|
2256
|
+
"type": "string"
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
"$ref": "#/definitions/routeTargetObject"
|
|
2260
|
+
}
|
|
2261
|
+
]
|
|
2262
|
+
}
|
|
2263
|
+
]
|
|
1409
2264
|
},
|
|
1410
2265
|
{
|
|
1411
2266
|
"type": "string"
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"$ref": "#/definitions/routeTargetObject"
|
|
1412
2270
|
}
|
|
1413
2271
|
]
|
|
1414
2272
|
},
|
|
1415
|
-
"
|
|
2273
|
+
"enhanceWithSetting_0": {
|
|
1416
2274
|
"oneOf": [
|
|
1417
2275
|
{
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1420
|
-
"
|
|
2276
|
+
"additionalProperties": false,
|
|
2277
|
+
"required": [
|
|
2278
|
+
"bundleUrl"
|
|
2279
|
+
],
|
|
2280
|
+
"properties": {
|
|
2281
|
+
"bundleUrl": {
|
|
2282
|
+
"description": "Represents property url for model enhancement",
|
|
2283
|
+
"type": "string"
|
|
2284
|
+
},
|
|
2285
|
+
"bundleUrlRelativeTo": {
|
|
2286
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2287
|
+
"type": "string",
|
|
2288
|
+
"default": "component",
|
|
2289
|
+
"enum": [
|
|
2290
|
+
"manifest",
|
|
2291
|
+
"component"
|
|
2292
|
+
]
|
|
2293
|
+
},
|
|
2294
|
+
"fallbackLocale": {
|
|
2295
|
+
"description": "Represents the fallback locale",
|
|
2296
|
+
"type": "string"
|
|
2297
|
+
},
|
|
2298
|
+
"supportedLocales": {
|
|
2299
|
+
"description": "Represents the list of supported locales",
|
|
2300
|
+
"type": "array"
|
|
2301
|
+
},
|
|
2302
|
+
"terminologies": {
|
|
2303
|
+
"description": "Represents terminologies with additional properties files",
|
|
2304
|
+
"type": "object",
|
|
2305
|
+
"patternProperties": {
|
|
2306
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2307
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2308
|
+
}
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
1421
2311
|
}
|
|
1422
2312
|
},
|
|
1423
2313
|
{
|
|
1424
|
-
"
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
"
|
|
1428
|
-
|
|
2314
|
+
"required": [
|
|
2315
|
+
"bundleName"
|
|
2316
|
+
],
|
|
2317
|
+
"additionalProperties": false,
|
|
2318
|
+
"properties": {
|
|
2319
|
+
"bundleName": {
|
|
2320
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2321
|
+
"type": "string"
|
|
2322
|
+
},
|
|
2323
|
+
"supportedLocales": {
|
|
2324
|
+
"description": "Represents the list of supported locales",
|
|
2325
|
+
"type": "array"
|
|
2326
|
+
},
|
|
2327
|
+
"fallbackLocale": {
|
|
2328
|
+
"description": "Represents the fallback locale",
|
|
2329
|
+
"type": "string"
|
|
2330
|
+
},
|
|
2331
|
+
"terminologies": {
|
|
2332
|
+
"description": "Represents terminologies with additional properties files",
|
|
2333
|
+
"type": "object",
|
|
2334
|
+
"patternProperties": {
|
|
2335
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2336
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
}
|
|
2342
|
+
]
|
|
2343
|
+
},
|
|
2344
|
+
"terminologySetting": {
|
|
2345
|
+
"oneOf": [
|
|
1429
2346
|
{
|
|
1430
|
-
"
|
|
2347
|
+
"additionalProperties": false,
|
|
2348
|
+
"required": [
|
|
2349
|
+
"bundleName"
|
|
2350
|
+
],
|
|
2351
|
+
"properties": {
|
|
2352
|
+
"bundleName": {
|
|
2353
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2354
|
+
"type": "string"
|
|
2355
|
+
},
|
|
2356
|
+
"supportedLocales": {
|
|
2357
|
+
"description": "Represents the list of supported locales",
|
|
2358
|
+
"type": "array"
|
|
2359
|
+
}
|
|
2360
|
+
}
|
|
1431
2361
|
},
|
|
1432
2362
|
{
|
|
1433
|
-
"
|
|
2363
|
+
"additionalProperties": false,
|
|
2364
|
+
"required": [
|
|
2365
|
+
"bundleUrl"
|
|
2366
|
+
],
|
|
2367
|
+
"properties": {
|
|
2368
|
+
"bundleUrl": {
|
|
2369
|
+
"description": "Represents the URL for the resource bundle",
|
|
2370
|
+
"type": "string"
|
|
2371
|
+
},
|
|
2372
|
+
"bundleUrlRelativeTo": {
|
|
2373
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2374
|
+
"type": "string",
|
|
2375
|
+
"default": "component",
|
|
2376
|
+
"enum": [
|
|
2377
|
+
"manifest",
|
|
2378
|
+
"component"
|
|
2379
|
+
]
|
|
2380
|
+
},
|
|
2381
|
+
"supportedLocales": {
|
|
2382
|
+
"description": "Represents the list of supported locales",
|
|
2383
|
+
"type": "array"
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
1434
2386
|
}
|
|
1435
2387
|
]
|
|
1436
2388
|
},
|
|
2389
|
+
"ui5setting": {
|
|
2390
|
+
"type": "object",
|
|
2391
|
+
"additionalProperties": true,
|
|
2392
|
+
"properties": {
|
|
2393
|
+
"defaultBindingMode": {
|
|
2394
|
+
"description": "Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay",
|
|
2395
|
+
"type": "string",
|
|
2396
|
+
"default": "Default",
|
|
2397
|
+
"enum": [
|
|
2398
|
+
"Default",
|
|
2399
|
+
"OneTime",
|
|
2400
|
+
"OneWay",
|
|
2401
|
+
"TwoWay"
|
|
2402
|
+
]
|
|
2403
|
+
},
|
|
2404
|
+
"bundleName": {
|
|
2405
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2406
|
+
"type": "string"
|
|
2407
|
+
},
|
|
2408
|
+
"bundleUrl": {
|
|
2409
|
+
"description": "Represents the URL for the resource bundle",
|
|
2410
|
+
"type": "string"
|
|
2411
|
+
},
|
|
2412
|
+
"bundleUrlRelativeTo": {
|
|
2413
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2414
|
+
"type": "string",
|
|
2415
|
+
"default": "component",
|
|
2416
|
+
"enum": [
|
|
2417
|
+
"manifest",
|
|
2418
|
+
"component"
|
|
2419
|
+
]
|
|
2420
|
+
},
|
|
2421
|
+
"fallbackLocale": {
|
|
2422
|
+
"description": "Represents the fallback locale",
|
|
2423
|
+
"type": "string"
|
|
2424
|
+
},
|
|
2425
|
+
"supportedLocales": {
|
|
2426
|
+
"description": "Represents the list of supported locales",
|
|
2427
|
+
"type": "array"
|
|
2428
|
+
},
|
|
2429
|
+
"terminologies": {
|
|
2430
|
+
"description": "Represents terminologies with additional properties files",
|
|
2431
|
+
"type": "object",
|
|
2432
|
+
"additionalProperties": true,
|
|
2433
|
+
"patternProperties": {
|
|
2434
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2435
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2436
|
+
}
|
|
2437
|
+
}
|
|
2438
|
+
},
|
|
2439
|
+
"enhanceWith": {
|
|
2440
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
2441
|
+
"type": "array",
|
|
2442
|
+
"items": {
|
|
2443
|
+
"type": "object",
|
|
2444
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
2445
|
+
}
|
|
2446
|
+
}
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
1437
2449
|
"rootView_def": {
|
|
2450
|
+
"description": "Represents the root view definition being either the name of the view or the view definition object",
|
|
1438
2451
|
"oneOf": [
|
|
1439
2452
|
{
|
|
1440
2453
|
"type": "string"
|
|
@@ -1460,9 +2473,246 @@
|
|
|
1460
2473
|
"HTML",
|
|
1461
2474
|
"Template"
|
|
1462
2475
|
]
|
|
2476
|
+
},
|
|
2477
|
+
"id": {
|
|
2478
|
+
"description": "Represents the id of the view",
|
|
2479
|
+
"type": "string"
|
|
2480
|
+
}
|
|
2481
|
+
}
|
|
2482
|
+
}
|
|
2483
|
+
]
|
|
2484
|
+
},
|
|
2485
|
+
"routing": {
|
|
2486
|
+
"description": "Represents the configuration of routing",
|
|
2487
|
+
"type": "object",
|
|
2488
|
+
"properties": {
|
|
2489
|
+
"config": {
|
|
2490
|
+
"description": "Represents the default properties defined for route and target",
|
|
2491
|
+
"allOf": [
|
|
2492
|
+
{
|
|
2493
|
+
"type": "object",
|
|
2494
|
+
"properties": {
|
|
2495
|
+
"routerClass": {
|
|
2496
|
+
"description": "Represents the router class",
|
|
2497
|
+
"type": "string"
|
|
2498
|
+
},
|
|
2499
|
+
"async": {
|
|
2500
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
2501
|
+
"type": "boolean",
|
|
2502
|
+
"default": false
|
|
2503
|
+
},
|
|
2504
|
+
"propagateTitle": {
|
|
2505
|
+
"description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
|
|
2506
|
+
"type": "boolean",
|
|
2507
|
+
"default": false
|
|
2508
|
+
},
|
|
2509
|
+
"bypassed": {
|
|
2510
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
2511
|
+
"type": "object",
|
|
2512
|
+
"additionalProperties": false,
|
|
2513
|
+
"required": [
|
|
2514
|
+
"target"
|
|
2515
|
+
],
|
|
2516
|
+
"properties": {
|
|
2517
|
+
"target": {
|
|
2518
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
2519
|
+
"$ref": "#/definitions/routeTarget"
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
},
|
|
2523
|
+
"viewPath": {
|
|
2524
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2525
|
+
"type": "string"
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"$ref": "#/definitions/target"
|
|
2531
|
+
}
|
|
2532
|
+
]
|
|
2533
|
+
},
|
|
2534
|
+
"routes": {
|
|
2535
|
+
"oneOf": [
|
|
2536
|
+
{
|
|
2537
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
2538
|
+
"type": "array",
|
|
2539
|
+
"items": {
|
|
2540
|
+
"$ref": "#/definitions/route"
|
|
2541
|
+
}
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
"description": "Represents the definition of routes by providing an object with the route's name as the key and other route options in an object as the value",
|
|
2545
|
+
"type": "object",
|
|
2546
|
+
"patternProperties": {
|
|
2547
|
+
"[\\s\\S]*": {
|
|
2548
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
]
|
|
2553
|
+
},
|
|
2554
|
+
"targets": {
|
|
2555
|
+
"description": "Represents the definition of targets",
|
|
2556
|
+
"type": "object",
|
|
2557
|
+
"patternProperties": {
|
|
2558
|
+
"[\\s\\S]*": {
|
|
2559
|
+
"oneOf": [
|
|
2560
|
+
{
|
|
2561
|
+
"allOf": [
|
|
2562
|
+
{
|
|
2563
|
+
"$ref": "#/definitions/target"
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"type": "object",
|
|
2567
|
+
"required": [
|
|
2568
|
+
"viewName"
|
|
2569
|
+
],
|
|
2570
|
+
"properties": {
|
|
2571
|
+
"viewName": {
|
|
2572
|
+
"description": "Represents the name of a view that will be created",
|
|
2573
|
+
"type": "string"
|
|
2574
|
+
},
|
|
2575
|
+
"viewId": {
|
|
2576
|
+
"description": "Represents the id of the created view",
|
|
2577
|
+
"type": "string"
|
|
2578
|
+
},
|
|
2579
|
+
"viewPath": {
|
|
2580
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2581
|
+
"type": "string"
|
|
2582
|
+
}
|
|
2583
|
+
}
|
|
2584
|
+
}
|
|
2585
|
+
]
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
"allOf": [
|
|
2589
|
+
{
|
|
2590
|
+
"$ref": "#/definitions/target"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"oneOf": [
|
|
2594
|
+
{
|
|
2595
|
+
"type": "object",
|
|
2596
|
+
"required": [
|
|
2597
|
+
"name"
|
|
2598
|
+
],
|
|
2599
|
+
"properties": {
|
|
2600
|
+
"name": {
|
|
2601
|
+
"description": "Represents the name of a view or component that will be created",
|
|
2602
|
+
"type": "string"
|
|
2603
|
+
},
|
|
2604
|
+
"id": {
|
|
2605
|
+
"description": "Represents the id of the created view or component",
|
|
2606
|
+
"type": "string"
|
|
2607
|
+
},
|
|
2608
|
+
"path": {
|
|
2609
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
2610
|
+
"type": "string"
|
|
2611
|
+
},
|
|
2612
|
+
"type": {
|
|
2613
|
+
"description": "Represents the type of the type View or Component",
|
|
2614
|
+
"type": "string",
|
|
2615
|
+
"enum": [
|
|
2616
|
+
"View",
|
|
2617
|
+
"Component"
|
|
2618
|
+
]
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"type": "object",
|
|
2624
|
+
"required": [
|
|
2625
|
+
"usage",
|
|
2626
|
+
"type"
|
|
2627
|
+
],
|
|
2628
|
+
"properties": {
|
|
2629
|
+
"usage": {
|
|
2630
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
2631
|
+
"type": "string"
|
|
2632
|
+
},
|
|
2633
|
+
"id": {
|
|
2634
|
+
"description": "Represents the id of the created view or component",
|
|
2635
|
+
"type": "string"
|
|
2636
|
+
},
|
|
2637
|
+
"type": {
|
|
2638
|
+
"description": "Represents the type of the type Component",
|
|
2639
|
+
"type": "string",
|
|
2640
|
+
"enum": [
|
|
2641
|
+
"Component"
|
|
2642
|
+
]
|
|
2643
|
+
}
|
|
2644
|
+
}
|
|
2645
|
+
}
|
|
2646
|
+
]
|
|
2647
|
+
}
|
|
2648
|
+
]
|
|
2649
|
+
}
|
|
2650
|
+
]
|
|
1463
2651
|
}
|
|
1464
2652
|
}
|
|
1465
2653
|
}
|
|
2654
|
+
}
|
|
2655
|
+
},
|
|
2656
|
+
"command": {
|
|
2657
|
+
"description": "Represents a UI5 shortcut command.",
|
|
2658
|
+
"additionalProperties": false,
|
|
2659
|
+
"type": "object",
|
|
2660
|
+
"properties": {
|
|
2661
|
+
"shortcut": {
|
|
2662
|
+
"description": "A string describing a shortcut key combination that, when used by the user, will trigger the command.",
|
|
2663
|
+
"type": "string",
|
|
2664
|
+
"patternTransformCode": "''.split('').map(function(char) { console.log(char); if (/[a-z]/i.test(char)) { return `[${char.toUpperCase()}${char.toLowerCase()}]`; } else { return char; } } ).join('')",
|
|
2665
|
+
"patternFromRuntime": "^((Ctrl|Shift|Alt)(\\+)?){0,3}([A-Za-z0-9\\.,\\-\\*\\/=]|Plus|Tab|Space|Enter|Backspace|Home|Delete|End|Pageup|Pagedown|Escape|ArrowUp|ArrowDown|ArrowLeft|ArrowRight|F[1-9]|F1[0-2])$",
|
|
2666
|
+
"pattern": "^(([Cc][Tt][Rr][Ll]|[Ss][Hh][Ii][Ff][Tt]|[Aa][Ll][Tt])(\\+)?){0,3}([A-Za-z0-9\\.,\\-\\*\\/=]|[Pp][Ll][Uu][Ss]|[Tt][Aa][Bb]|[Ss][Pp][Aa][Cc][Ee]|[Ee][Nn][Tt][Ee][Rr]|[Bb][Aa][Cc][Kk][Ss][Pp][Aa][Cc][Ee]|[Hh][Oo][Mm][Ee]|[Dd][Ee][Ll][Ee][Tt][Ee]|[Ee][Nn][Dd]|[Pp][Aa][Gg][Ee][Uu][Pp]|[Pp][Aa][Gg][Ee][Dd][Oo][Ww][Nn]|[Ee][Ss][Cc][Aa][Pp][Ee]|[Aa][Rr][Rr][Oo][Ww][Uu][Pp]|[Aa][Rr][Rr][Oo][Ww][Dd][Oo][Ww][Nn]|[Aa][Rr][Rr][Oo][Ww][Ll][Ee][Ff][Tt]|[Aa][Rr][Rr][Oo][Ww][Rr][Ii][Gg][Hh][Tt]|F[1-9]|F1[0-2])$"
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
"service": {
|
|
2671
|
+
"description": "Represents the definition of each service",
|
|
2672
|
+
"type": "object",
|
|
2673
|
+
"required": [
|
|
2674
|
+
"factoryName"
|
|
2675
|
+
],
|
|
2676
|
+
"additionalProperties": true,
|
|
2677
|
+
"properties": {
|
|
2678
|
+
"factoryName": {
|
|
2679
|
+
"description": "Represents the name of the service factory ",
|
|
2680
|
+
"type": "string",
|
|
2681
|
+
"pattern": "^([a-z_$][a-z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
2682
|
+
},
|
|
2683
|
+
"optional": {
|
|
2684
|
+
"description": "Indicates whether the service optional or not ",
|
|
2685
|
+
"type": "boolean",
|
|
2686
|
+
"default": false
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2690
|
+
"version": {
|
|
2691
|
+
"type": "string"
|
|
2692
|
+
},
|
|
2693
|
+
"id_def_0": {
|
|
2694
|
+
"type": "string"
|
|
2695
|
+
},
|
|
2696
|
+
"config": {
|
|
2697
|
+
"oneOf": [
|
|
2698
|
+
{
|
|
2699
|
+
"type": "array",
|
|
2700
|
+
"items": {
|
|
2701
|
+
"type": "string"
|
|
2702
|
+
}
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
"type": "string"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"type": "boolean"
|
|
2709
|
+
},
|
|
2710
|
+
{
|
|
2711
|
+
"type": "number"
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
"type": "object"
|
|
2715
|
+
}
|
|
1466
2716
|
]
|
|
1467
2717
|
},
|
|
1468
2718
|
"resourceRoot": {
|
|
@@ -1505,7 +2755,7 @@
|
|
|
1505
2755
|
"$ref": "#/definitions/version"
|
|
1506
2756
|
},
|
|
1507
2757
|
"lazy": {
|
|
1508
|
-
"description": "Represents
|
|
2758
|
+
"description": "Represents Indicator to lazy loading component",
|
|
1509
2759
|
"type": "boolean",
|
|
1510
2760
|
"default": false
|
|
1511
2761
|
}
|
|
@@ -1520,12 +2770,40 @@
|
|
|
1520
2770
|
"$ref": "#/definitions/version"
|
|
1521
2771
|
},
|
|
1522
2772
|
"lazy": {
|
|
1523
|
-
"description": "Represents
|
|
2773
|
+
"description": "Represents Indicator to lazy loading lib",
|
|
1524
2774
|
"type": "boolean",
|
|
1525
2775
|
"default": false
|
|
1526
2776
|
}
|
|
1527
2777
|
}
|
|
1528
2778
|
},
|
|
2779
|
+
"componentUsages": {
|
|
2780
|
+
"description": "Represents component name for usage",
|
|
2781
|
+
"type": "object",
|
|
2782
|
+
"required": [
|
|
2783
|
+
"name"
|
|
2784
|
+
],
|
|
2785
|
+
"additionalProperties": false,
|
|
2786
|
+
"properties": {
|
|
2787
|
+
"name": {
|
|
2788
|
+
"description": "Represents name of reuse component",
|
|
2789
|
+
"type": "string",
|
|
2790
|
+
"pattern": "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
2791
|
+
},
|
|
2792
|
+
"componentData": {
|
|
2793
|
+
"description": "Represents component data for the Component",
|
|
2794
|
+
"$ref": "#/definitions/config"
|
|
2795
|
+
},
|
|
2796
|
+
"settings": {
|
|
2797
|
+
"description": "Represents settings for the Component",
|
|
2798
|
+
"$ref": "#/definitions/config"
|
|
2799
|
+
},
|
|
2800
|
+
"lazy": {
|
|
2801
|
+
"description": "Represents Indicator to lazy loading component usage, default true",
|
|
2802
|
+
"type": "boolean",
|
|
2803
|
+
"default": true
|
|
2804
|
+
}
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
1529
2807
|
"resource": {
|
|
1530
2808
|
"type": "object",
|
|
1531
2809
|
"properties": {
|
|
@@ -1656,9 +2934,78 @@
|
|
|
1656
2934
|
}
|
|
1657
2935
|
}
|
|
1658
2936
|
},
|
|
1659
|
-
"
|
|
1660
|
-
"
|
|
1661
|
-
|
|
2937
|
+
"enhanceWithSetting": {
|
|
2938
|
+
"oneOf": [
|
|
2939
|
+
{
|
|
2940
|
+
"additionalProperties": false,
|
|
2941
|
+
"required": [
|
|
2942
|
+
"bundleUrl"
|
|
2943
|
+
],
|
|
2944
|
+
"properties": {
|
|
2945
|
+
"bundleUrl": {
|
|
2946
|
+
"description": "Represents property url for model enhancement",
|
|
2947
|
+
"type": "string"
|
|
2948
|
+
},
|
|
2949
|
+
"bundleUrlRelativeTo": {
|
|
2950
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2951
|
+
"type": "string",
|
|
2952
|
+
"default": "component",
|
|
2953
|
+
"enum": [
|
|
2954
|
+
"manifest",
|
|
2955
|
+
"component"
|
|
2956
|
+
]
|
|
2957
|
+
},
|
|
2958
|
+
"fallbackLocale": {
|
|
2959
|
+
"description": "Represents the fallback locale",
|
|
2960
|
+
"type": "string"
|
|
2961
|
+
},
|
|
2962
|
+
"supportedLocales": {
|
|
2963
|
+
"description": "Represents the list of supported locales",
|
|
2964
|
+
"type": "array"
|
|
2965
|
+
},
|
|
2966
|
+
"terminologies": {
|
|
2967
|
+
"description": "Represents terminologies with additional properties files",
|
|
2968
|
+
"type": "object",
|
|
2969
|
+
"additionalProperties": false,
|
|
2970
|
+
"patternProperties": {
|
|
2971
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2972
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2973
|
+
}
|
|
2974
|
+
}
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
},
|
|
2978
|
+
{
|
|
2979
|
+
"required": [
|
|
2980
|
+
"bundleName"
|
|
2981
|
+
],
|
|
2982
|
+
"additionalProperties": false,
|
|
2983
|
+
"properties": {
|
|
2984
|
+
"bundleName": {
|
|
2985
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2986
|
+
"type": "string"
|
|
2987
|
+
},
|
|
2988
|
+
"fallbackLocale": {
|
|
2989
|
+
"description": "Represents the fallback locale",
|
|
2990
|
+
"type": "string"
|
|
2991
|
+
},
|
|
2992
|
+
"supportedLocales": {
|
|
2993
|
+
"description": "Represents the list of supported locales",
|
|
2994
|
+
"type": "array"
|
|
2995
|
+
},
|
|
2996
|
+
"terminologies": {
|
|
2997
|
+
"description": "Represents terminologies with additional properties files",
|
|
2998
|
+
"type": "object",
|
|
2999
|
+
"additionalProperties": false,
|
|
3000
|
+
"patternProperties": {
|
|
3001
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
3002
|
+
"$ref": "#/definitions/terminologySetting"
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
3008
|
+
]
|
|
1662
3009
|
},
|
|
1663
3010
|
"id_def": {
|
|
1664
3011
|
"type": "string",
|