@ui5/manifest 1.4.0 → 1.17.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 +2 -2
- package/mapping.json +14 -1
- package/package.json +1 -1
- package/schema.json +3465 -751
- package/schema_cil.json +1337 -299
- package/types/manifest.d.ts +1929 -245
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "SAP JSON schema for Web Application Manifest File",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-
|
|
3
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"required": [
|
|
6
6
|
"_version",
|
|
@@ -16,7 +16,20 @@
|
|
|
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"
|
|
20
33
|
]
|
|
21
34
|
},
|
|
22
35
|
"start_url": {
|
|
@@ -42,7 +55,12 @@
|
|
|
42
55
|
"1.1.0",
|
|
43
56
|
"1.2.0",
|
|
44
57
|
"1.3.0",
|
|
45
|
-
"1.4.0"
|
|
58
|
+
"1.4.0",
|
|
59
|
+
"1.5.0",
|
|
60
|
+
"1.6.0",
|
|
61
|
+
"1.7.0",
|
|
62
|
+
"1.8.0",
|
|
63
|
+
"1.9.0"
|
|
46
64
|
]
|
|
47
65
|
},
|
|
48
66
|
"sourceTemplate": {
|
|
@@ -73,7 +91,8 @@
|
|
|
73
91
|
"enum": [
|
|
74
92
|
"application",
|
|
75
93
|
"component",
|
|
76
|
-
"library"
|
|
94
|
+
"library",
|
|
95
|
+
"card"
|
|
77
96
|
]
|
|
78
97
|
},
|
|
79
98
|
"i18n": {
|
|
@@ -112,6 +131,14 @@
|
|
|
112
131
|
"description": "Represents language-dependent additional information to the title",
|
|
113
132
|
"$ref": "#/definitions/i18n_key"
|
|
114
133
|
},
|
|
134
|
+
"shortTitle": {
|
|
135
|
+
"description": "Represents shorter version of the title (language-dependent )",
|
|
136
|
+
"$ref": "#/definitions/i18n_key"
|
|
137
|
+
},
|
|
138
|
+
"info": {
|
|
139
|
+
"description": "Represents language-dependent additional information to the title",
|
|
140
|
+
"$ref": "#/definitions/i18n_key"
|
|
141
|
+
},
|
|
115
142
|
"description": {
|
|
116
143
|
"description": "Represents language-dependent description",
|
|
117
144
|
"$ref": "#/definitions/i18n_key"
|
|
@@ -126,20 +153,27 @@
|
|
|
126
153
|
"properties": {
|
|
127
154
|
"keywords": {
|
|
128
155
|
"$ref": "#/definitions/tag"
|
|
156
|
+
},
|
|
157
|
+
"technicalAttributes": {
|
|
158
|
+
"type": "array",
|
|
159
|
+
"items": {
|
|
160
|
+
"type": "string",
|
|
161
|
+
"pattern": "^[A-Z0-9_\\-\\/]+$"
|
|
162
|
+
}
|
|
129
163
|
}
|
|
130
164
|
}
|
|
131
165
|
},
|
|
132
166
|
"ach": {
|
|
133
167
|
"description": "Represents application component hierarchy",
|
|
134
168
|
"type": "string",
|
|
135
|
-
"pattern": "^([a-zA-
|
|
169
|
+
"pattern": "^([a-zA-Z0-9]{2,3})(\\-[a-zA-Z0-9]{1,6})*$"
|
|
136
170
|
},
|
|
137
171
|
"dataSources": {
|
|
138
172
|
"description": "Represents used data sources with a unique key/alias",
|
|
139
173
|
"type": "object",
|
|
140
174
|
"additionalProperties": false,
|
|
141
175
|
"patternProperties": {
|
|
142
|
-
"^[
|
|
176
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
143
177
|
"$ref": "#/definitions/dataSource"
|
|
144
178
|
}
|
|
145
179
|
}
|
|
@@ -179,6 +213,13 @@
|
|
|
179
213
|
"$ref": "#/definitions/openSource"
|
|
180
214
|
}
|
|
181
215
|
},
|
|
216
|
+
"provider": {
|
|
217
|
+
"description": "Represents the name of the provider which owns the application",
|
|
218
|
+
"type": "string",
|
|
219
|
+
"enum": [
|
|
220
|
+
"sfsf"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
182
223
|
"offline": {
|
|
183
224
|
"description": "Represents indicator whether the app is running offline. Possible values are true or false (default)",
|
|
184
225
|
"type": "boolean",
|
|
@@ -196,7 +237,7 @@
|
|
|
196
237
|
"type": "object",
|
|
197
238
|
"additionalProperties": false,
|
|
198
239
|
"patternProperties": {
|
|
199
|
-
"^[
|
|
240
|
+
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
200
241
|
"description": "Represents unique id of the site",
|
|
201
242
|
"type": "object",
|
|
202
243
|
"required": [
|
|
@@ -248,18 +289,20 @@
|
|
|
248
289
|
"1.1.0",
|
|
249
290
|
"1.2.0",
|
|
250
291
|
"1.3.0",
|
|
251
|
-
"1.4.0"
|
|
292
|
+
"1.4.0",
|
|
293
|
+
"1.5.0"
|
|
252
294
|
]
|
|
253
295
|
},
|
|
254
296
|
"technology": {
|
|
255
|
-
"description": "Represents UI technology. The possible values are UI5 (default), WDA, NWBC and
|
|
297
|
+
"description": "Represents UI technology. The possible values are UI5 (default), WDA, NWBC, GUI, URL and WCF",
|
|
256
298
|
"type": "string",
|
|
257
299
|
"enum": [
|
|
258
300
|
"UI5",
|
|
259
301
|
"WDA",
|
|
260
302
|
"NWBC",
|
|
261
303
|
"GUI",
|
|
262
|
-
"URL"
|
|
304
|
+
"URL",
|
|
305
|
+
"WCF"
|
|
263
306
|
],
|
|
264
307
|
"default": "UI5"
|
|
265
308
|
},
|
|
@@ -310,7 +353,7 @@
|
|
|
310
353
|
]
|
|
311
354
|
},
|
|
312
355
|
"supportedThemes": {
|
|
313
|
-
"description": "Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
356
|
+
"description": "The property is Deprecated. Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
314
357
|
"type": "array",
|
|
315
358
|
"items": {
|
|
316
359
|
"type": "string"
|
|
@@ -325,262 +368,279 @@
|
|
|
325
368
|
"sap.ui5": {
|
|
326
369
|
"title": "JSON schema for SAP.UI5 Namespace",
|
|
327
370
|
"description": "Represents sapui5 attributes",
|
|
328
|
-
"
|
|
329
|
-
|
|
330
|
-
"required": [
|
|
331
|
-
"dependencies",
|
|
332
|
-
"contentDensities"
|
|
333
|
-
],
|
|
334
|
-
"properties": {
|
|
335
|
-
"_version": {
|
|
336
|
-
"description": " Represents SAPUI5 attributes format version. It is managed by namespace owner",
|
|
337
|
-
"type": "string",
|
|
338
|
-
"enum": [
|
|
339
|
-
"1.1.0",
|
|
340
|
-
"1.2.0",
|
|
341
|
-
"1.3.0"
|
|
342
|
-
]
|
|
343
|
-
},
|
|
344
|
-
"resources": {
|
|
345
|
-
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
346
|
-
"$ref": "#/definitions/resource"
|
|
347
|
-
},
|
|
348
|
-
"dependencies": {
|
|
349
|
-
"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",
|
|
371
|
+
"allOf": [
|
|
372
|
+
{
|
|
350
373
|
"type": "object",
|
|
351
|
-
"additionalProperties": false,
|
|
352
374
|
"required": [
|
|
353
|
-
"
|
|
375
|
+
"dependencies",
|
|
376
|
+
"contentDensities"
|
|
354
377
|
],
|
|
355
378
|
"properties": {
|
|
356
|
-
"
|
|
357
|
-
"description": "Represents
|
|
358
|
-
"
|
|
379
|
+
"_version": {
|
|
380
|
+
"description": " Represents SAPUI5 attributes format version. It is managed by namespace owner",
|
|
381
|
+
"type": "string",
|
|
382
|
+
"enum": [
|
|
383
|
+
"1.1.0",
|
|
384
|
+
"1.2.0",
|
|
385
|
+
"1.3.0",
|
|
386
|
+
"1.4.0",
|
|
387
|
+
"1.5.0",
|
|
388
|
+
"1.6.0",
|
|
389
|
+
"1.7.0",
|
|
390
|
+
"1.8.0"
|
|
391
|
+
]
|
|
359
392
|
},
|
|
360
|
-
"
|
|
361
|
-
"description": "Represents
|
|
362
|
-
"
|
|
363
|
-
"default": false
|
|
393
|
+
"resources": {
|
|
394
|
+
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
395
|
+
"$ref": "#/definitions/resource"
|
|
364
396
|
},
|
|
365
|
-
"
|
|
366
|
-
"description": "Represents the
|
|
397
|
+
"componentUsages": {
|
|
398
|
+
"description": "Represents the explicit usage declaration for UI5 reuse components",
|
|
367
399
|
"type": "object",
|
|
368
400
|
"additionalProperties": false,
|
|
369
401
|
"patternProperties": {
|
|
370
|
-
"^
|
|
371
|
-
"$ref": "#/definitions/
|
|
402
|
+
"^[a-zA-Z0-9_\\.]*$": {
|
|
403
|
+
"$ref": "#/definitions/componentUsages"
|
|
372
404
|
}
|
|
373
405
|
}
|
|
374
406
|
},
|
|
375
|
-
"
|
|
376
|
-
"description": "Represents
|
|
407
|
+
"dependencies": {
|
|
408
|
+
"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",
|
|
377
409
|
"type": "object",
|
|
378
410
|
"additionalProperties": false,
|
|
379
|
-
"
|
|
380
|
-
"
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
},
|
|
397
|
-
"resourceRoots": {
|
|
398
|
-
"description": "Represents relative path to the resource. Only relative path allowed, no '../' ",
|
|
399
|
-
"type": "object",
|
|
400
|
-
"additionalProperties": false,
|
|
401
|
-
"patternProperties": {
|
|
402
|
-
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
403
|
-
"$ref": "#/definitions/resourceRoot"
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
"rootView": {
|
|
408
|
-
"description": "Represents the name of the root view",
|
|
409
|
-
"$ref": "#/definitions/rootView_def"
|
|
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",
|
|
418
|
-
"type": "object",
|
|
419
|
-
"additionalProperties": false,
|
|
420
|
-
"patternProperties": {
|
|
421
|
-
"[\\s\\S]*": {
|
|
422
|
-
"$ref": "#/definitions/config"
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
"routing": {
|
|
427
|
-
"description": "Represents the configuration of routing",
|
|
428
|
-
"type": "object",
|
|
429
|
-
"properties": {
|
|
430
|
-
"config": {
|
|
431
|
-
"description": "Represents the default properties defined for route and target",
|
|
432
|
-
"allOf": [
|
|
433
|
-
{
|
|
411
|
+
"required": [
|
|
412
|
+
"minUI5Version"
|
|
413
|
+
],
|
|
414
|
+
"properties": {
|
|
415
|
+
"minUI5Version": {
|
|
416
|
+
"description": "Represents the minimum version of SAP UI5 that your component requires",
|
|
417
|
+
"$ref": "#/definitions/version"
|
|
418
|
+
},
|
|
419
|
+
"incompatibleLimitation": {
|
|
420
|
+
"description": "Represents ...",
|
|
421
|
+
"type": "boolean",
|
|
422
|
+
"default": false
|
|
423
|
+
},
|
|
424
|
+
"libs": {
|
|
425
|
+
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
434
426
|
"type": "object",
|
|
435
|
-
"
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
"
|
|
439
|
-
},
|
|
440
|
-
"async": {
|
|
441
|
-
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
442
|
-
"type": "boolean",
|
|
443
|
-
"default": false
|
|
444
|
-
},
|
|
445
|
-
"bypassed": {
|
|
446
|
-
"description": "Represents information about targets to display when no route is matched",
|
|
447
|
-
"type": "object",
|
|
448
|
-
"additionalProperties": false,
|
|
449
|
-
"required": [
|
|
450
|
-
"target"
|
|
451
|
-
],
|
|
452
|
-
"properties": {
|
|
453
|
-
"target": {
|
|
454
|
-
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
455
|
-
"$ref": "#/definitions/arrayOrString"
|
|
456
|
-
}
|
|
457
|
-
}
|
|
427
|
+
"additionalProperties": false,
|
|
428
|
+
"patternProperties": {
|
|
429
|
+
"^([a-z][a-z0-9]{0,39})(\\.[a-z][a-z0-9]{0,39})*$": {
|
|
430
|
+
"$ref": "#/definitions/lib"
|
|
458
431
|
}
|
|
459
432
|
}
|
|
460
433
|
},
|
|
461
|
-
{
|
|
462
|
-
"
|
|
463
|
-
}
|
|
464
|
-
]
|
|
465
|
-
},
|
|
466
|
-
"routes": {
|
|
467
|
-
"oneOf": [
|
|
468
|
-
{
|
|
469
|
-
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
470
|
-
"type": "array",
|
|
471
|
-
"items": {
|
|
472
|
-
"$ref": "#/definitions/route"
|
|
473
|
-
}
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"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",
|
|
434
|
+
"components": {
|
|
435
|
+
"description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
|
|
477
436
|
"type": "object",
|
|
437
|
+
"additionalProperties": false,
|
|
478
438
|
"patternProperties": {
|
|
479
|
-
"[
|
|
480
|
-
"$ref": "#/definitions/
|
|
439
|
+
"^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$": {
|
|
440
|
+
"$ref": "#/definitions/component"
|
|
481
441
|
}
|
|
482
442
|
}
|
|
483
443
|
}
|
|
484
|
-
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"models": {
|
|
447
|
+
"description": "Represents models which should be created/destroyed with the life-cycle of the component",
|
|
448
|
+
"type": "object",
|
|
449
|
+
"additionalProperties": false,
|
|
450
|
+
"patternProperties": {
|
|
451
|
+
"^[a-zA-Z0-9_\\.\\-\\|\\@]*$": {
|
|
452
|
+
"$ref": "#/definitions/model"
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"resourceRoots": {
|
|
457
|
+
"description": "Represents relative path to the resource. Only relative path allowed, no '../' ",
|
|
458
|
+
"type": "object",
|
|
459
|
+
"additionalProperties": false,
|
|
460
|
+
"patternProperties": {
|
|
461
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
462
|
+
"$ref": "#/definitions/resourceRoot"
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"handleValidation": {
|
|
467
|
+
"description": "Represents the usage of validation handling by MessageManager for this component (enable/disable)",
|
|
468
|
+
"type": "boolean",
|
|
469
|
+
"default": false
|
|
485
470
|
},
|
|
486
|
-
"
|
|
487
|
-
"description": "Represents the
|
|
471
|
+
"config": {
|
|
472
|
+
"description": "Represents the static configuration for components",
|
|
488
473
|
"type": "object",
|
|
474
|
+
"additionalProperties": false,
|
|
489
475
|
"patternProperties": {
|
|
490
476
|
"[\\s\\S]*": {
|
|
491
|
-
"
|
|
492
|
-
{
|
|
493
|
-
"$ref": "#/definitions/target"
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"type": "object",
|
|
497
|
-
"required": [
|
|
498
|
-
"viewName"
|
|
499
|
-
],
|
|
500
|
-
"properties": {
|
|
501
|
-
"viewName": {
|
|
502
|
-
"description": "Represents the name of a view that will be created",
|
|
503
|
-
"type": "string"
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"type": "object",
|
|
509
|
-
"properties": {
|
|
510
|
-
"viewID": {
|
|
511
|
-
"description": "Represents the id of the created view",
|
|
512
|
-
"type": "string"
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
]
|
|
477
|
+
"$ref": "#/definitions/config"
|
|
517
478
|
}
|
|
518
479
|
}
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
"extends": {
|
|
523
|
-
"description": "Represents the extension of an additional component",
|
|
524
|
-
"type": "object",
|
|
525
|
-
"additionalProperties": false,
|
|
526
|
-
"properties": {
|
|
527
|
-
"component": {
|
|
528
|
-
"description": "Represents the component name",
|
|
529
|
-
"$ref": "#/definitions/id_def"
|
|
530
480
|
},
|
|
531
|
-
"
|
|
532
|
-
"description": "Represents
|
|
533
|
-
"
|
|
481
|
+
"extends": {
|
|
482
|
+
"description": "Represents the extension of an additional component",
|
|
483
|
+
"type": "object",
|
|
484
|
+
"additionalProperties": false,
|
|
485
|
+
"properties": {
|
|
486
|
+
"component": {
|
|
487
|
+
"description": "Represents the component name",
|
|
488
|
+
"$ref": "#/definitions/id_def"
|
|
489
|
+
},
|
|
490
|
+
"minVersion": {
|
|
491
|
+
"description": "Represents minimal version of the component",
|
|
492
|
+
"$ref": "#/definitions/version"
|
|
493
|
+
},
|
|
494
|
+
"extensions": {
|
|
495
|
+
"description": "Represents extensions of the component",
|
|
496
|
+
"type": "object"
|
|
497
|
+
}
|
|
498
|
+
}
|
|
534
499
|
},
|
|
535
|
-
"
|
|
536
|
-
"description": "Represents
|
|
537
|
-
"type": "object"
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
500
|
+
"contentDensities": {
|
|
501
|
+
"description": "Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'",
|
|
502
|
+
"type": "object",
|
|
503
|
+
"additionalProperties": false,
|
|
504
|
+
"required": [
|
|
505
|
+
"compact",
|
|
506
|
+
"cozy"
|
|
507
|
+
],
|
|
508
|
+
"properties": {
|
|
509
|
+
"compact": {
|
|
510
|
+
"description": "Represents indicator whether compact mode is supported",
|
|
511
|
+
"type": "boolean"
|
|
512
|
+
},
|
|
513
|
+
"cozy": {
|
|
514
|
+
"description": "Represents indicator whether cozy mode is supported",
|
|
515
|
+
"type": "boolean"
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
"componentName": {
|
|
520
|
+
"description": "Represents a name of the UI5 component",
|
|
521
|
+
"type": "string",
|
|
522
|
+
"pattern": "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
553
523
|
},
|
|
554
|
-
"
|
|
555
|
-
"description": "
|
|
524
|
+
"autoPrefixId": {
|
|
525
|
+
"description": "Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)",
|
|
556
526
|
"type": "boolean"
|
|
527
|
+
},
|
|
528
|
+
"appVariantId": {
|
|
529
|
+
"description": "Represents the identifier of an application variant. The value will be calculated and should not be set manually ",
|
|
530
|
+
"type": "string"
|
|
531
|
+
},
|
|
532
|
+
"appVariantIdHierarchy": {
|
|
533
|
+
"description": "Represents array of appVariantId hierarchy with origin layer and version, calculated attribute and filled automatically during variant merge",
|
|
534
|
+
"type": "array",
|
|
535
|
+
"items": {
|
|
536
|
+
"type": "object",
|
|
537
|
+
"additionalProperties": false,
|
|
538
|
+
"required": [
|
|
539
|
+
"layer",
|
|
540
|
+
"appVariantId",
|
|
541
|
+
"version"
|
|
542
|
+
],
|
|
543
|
+
"properties": {
|
|
544
|
+
"layer": {
|
|
545
|
+
"description": "Represents origin layer of the app variant id",
|
|
546
|
+
"type": "string"
|
|
547
|
+
},
|
|
548
|
+
"appVariantId": {
|
|
549
|
+
"description": "Represents app variant id",
|
|
550
|
+
"type": "string"
|
|
551
|
+
},
|
|
552
|
+
"version": {
|
|
553
|
+
"description": "Represents version of the app variant id",
|
|
554
|
+
"type": "string"
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"services": {
|
|
560
|
+
"description": "Represents a list of the services ",
|
|
561
|
+
"type": "object",
|
|
562
|
+
"additionalProperties": false,
|
|
563
|
+
"patternProperties": {
|
|
564
|
+
"[\\s\\S]*": {
|
|
565
|
+
"$ref": "#/definitions/service"
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"library": {
|
|
570
|
+
"description": "Represents UI5 library specific properties",
|
|
571
|
+
"type": "object",
|
|
572
|
+
"additionalProperties": false,
|
|
573
|
+
"properties": {
|
|
574
|
+
"i18n": {
|
|
575
|
+
"description": "Flag whether the library contains a i18n resource or not. If using a string instead of a boolean value an alternative name for the i18n resource could be defined.",
|
|
576
|
+
"$ref": "#/definitions/booleanOrString"
|
|
577
|
+
},
|
|
578
|
+
"css": {
|
|
579
|
+
"description": "Flag whether the library contains a CSS file or not.",
|
|
580
|
+
"$ref": "#/definitions/booleanOrString"
|
|
581
|
+
},
|
|
582
|
+
"content": {
|
|
583
|
+
"description": "Represents the content of a library. Content are controls, elements, types and interfaces.",
|
|
584
|
+
"type": "object"
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"commands": {
|
|
589
|
+
"description": "Represents a list of UI5 shortcut commands",
|
|
590
|
+
"type": "object",
|
|
591
|
+
"additionalProperties": false,
|
|
592
|
+
"patternProperties": {
|
|
593
|
+
"^[A-Za-z_][A-Za-z0-9_\\-\\|\\@]+$": {
|
|
594
|
+
"$ref": "#/definitions/command"
|
|
595
|
+
}
|
|
596
|
+
}
|
|
557
597
|
}
|
|
558
598
|
}
|
|
559
599
|
},
|
|
560
|
-
|
|
561
|
-
"
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
600
|
+
{
|
|
601
|
+
"oneOf": [
|
|
602
|
+
{
|
|
603
|
+
"type": "object",
|
|
604
|
+
"required": [
|
|
605
|
+
"flexEnabled"
|
|
606
|
+
],
|
|
607
|
+
"properties": {
|
|
608
|
+
"flexEnabled": {
|
|
609
|
+
"description": "Represents an Indicator whether an app is flex enabled",
|
|
610
|
+
"type": "boolean",
|
|
611
|
+
"enum": [
|
|
612
|
+
true
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
"routing": {
|
|
616
|
+
"$ref": "#/definitions/routing_flexEnabled"
|
|
617
|
+
},
|
|
618
|
+
"rootView": {
|
|
619
|
+
"$ref": "#/definitions/rootView_def_flexEnabled"
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"type": "object",
|
|
625
|
+
"properties": {
|
|
626
|
+
"flexEnabled": {
|
|
627
|
+
"description": "Represents an Indicator whether an app is flex enabled",
|
|
628
|
+
"type": "boolean",
|
|
629
|
+
"enum": [
|
|
630
|
+
false
|
|
631
|
+
]
|
|
632
|
+
},
|
|
633
|
+
"routing": {
|
|
634
|
+
"$ref": "#/definitions/routing"
|
|
635
|
+
},
|
|
636
|
+
"rootView": {
|
|
637
|
+
"$ref": "#/definitions/rootView_def"
|
|
638
|
+
}
|
|
639
|
+
}
|
|
580
640
|
}
|
|
581
|
-
|
|
641
|
+
]
|
|
582
642
|
}
|
|
583
|
-
|
|
643
|
+
],
|
|
584
644
|
"definitions": {
|
|
585
645
|
"deviceType": {
|
|
586
646
|
"type": "object",
|
|
@@ -669,21 +729,65 @@
|
|
|
669
729
|
}
|
|
670
730
|
}
|
|
671
731
|
},
|
|
672
|
-
"sap.
|
|
673
|
-
"title": "JSON schema for SAP.
|
|
674
|
-
"description": "Represents
|
|
732
|
+
"sap.platform.cf": {
|
|
733
|
+
"title": "JSON schema for SAP.PLATFORM.CF Namespace",
|
|
734
|
+
"description": "Represents CF(Cloud Foundry) platform specific attributes",
|
|
675
735
|
"type": "object",
|
|
676
|
-
"
|
|
677
|
-
"registrationIds",
|
|
678
|
-
"archeType"
|
|
679
|
-
],
|
|
680
|
-
"additionalProperties": false,
|
|
736
|
+
"additionalProperties": true,
|
|
681
737
|
"properties": {
|
|
682
738
|
"_version": {
|
|
683
739
|
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
684
740
|
"type": "string",
|
|
685
741
|
"enum": [
|
|
686
|
-
"1.1.0"
|
|
742
|
+
"1.1.0",
|
|
743
|
+
"1.2.0"
|
|
744
|
+
]
|
|
745
|
+
},
|
|
746
|
+
"oAuthScopes": {
|
|
747
|
+
"description": "Represents the authorization scope of the application",
|
|
748
|
+
"type": "array",
|
|
749
|
+
"items": {
|
|
750
|
+
"type": "string"
|
|
751
|
+
},
|
|
752
|
+
"appHostId": {
|
|
753
|
+
"description": "Application host id to which the HTML5 app belongs",
|
|
754
|
+
"type": "string"
|
|
755
|
+
},
|
|
756
|
+
"changedOn": {
|
|
757
|
+
"description": "Changed on time stamp of the HTML5 app",
|
|
758
|
+
"type": "string"
|
|
759
|
+
},
|
|
760
|
+
"appName": {
|
|
761
|
+
"description": "Represents the HTML5 application name",
|
|
762
|
+
"type": "string",
|
|
763
|
+
"pattern": "^[a-z][a-z0-9]{0,29}$"
|
|
764
|
+
},
|
|
765
|
+
"appVersion": {
|
|
766
|
+
"description": "Represents the version of the HTML5 application",
|
|
767
|
+
"type": "string"
|
|
768
|
+
},
|
|
769
|
+
"multiVersionApp": {
|
|
770
|
+
"description": "Indicates wether an HTML5 application is multi-version enabled",
|
|
771
|
+
"type": "boolean"
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"sap.fiori": {
|
|
777
|
+
"title": "JSON schema for SAP.FIORI Namespace",
|
|
778
|
+
"description": "Represents SAP Fiori specific attributes",
|
|
779
|
+
"type": "object",
|
|
780
|
+
"required": [
|
|
781
|
+
"registrationIds",
|
|
782
|
+
"archeType"
|
|
783
|
+
],
|
|
784
|
+
"additionalProperties": false,
|
|
785
|
+
"properties": {
|
|
786
|
+
"_version": {
|
|
787
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
788
|
+
"type": "string",
|
|
789
|
+
"enum": [
|
|
790
|
+
"1.1.0"
|
|
687
791
|
]
|
|
688
792
|
},
|
|
689
793
|
"registrationIds": {
|
|
@@ -717,7 +821,8 @@
|
|
|
717
821
|
"type": "string",
|
|
718
822
|
"enum": [
|
|
719
823
|
"1.1.0",
|
|
720
|
-
"1.2.0"
|
|
824
|
+
"1.2.0",
|
|
825
|
+
"1.3.0"
|
|
721
826
|
]
|
|
722
827
|
},
|
|
723
828
|
"settings": {
|
|
@@ -726,20 +831,37 @@
|
|
|
726
831
|
},
|
|
727
832
|
"pages": {
|
|
728
833
|
"description": "Represents one ore more pages of an application. UI5 routing is created from the definitions in this section",
|
|
729
|
-
"
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
834
|
+
"oneOf": [
|
|
835
|
+
{
|
|
836
|
+
"type": "array",
|
|
837
|
+
"items": {
|
|
838
|
+
"$ref": "#/definitions/pages_array"
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"type": "object",
|
|
843
|
+
"additionalProperties": false,
|
|
844
|
+
"patternProperties": {
|
|
845
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
846
|
+
"$ref": "#/definitions/pages_map"
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
]
|
|
733
851
|
}
|
|
734
852
|
}
|
|
735
853
|
},
|
|
854
|
+
"sap.fe": {
|
|
855
|
+
"title": "JSON schema for SAP.FE Namespace",
|
|
856
|
+
"description": "Represents specific attributes for Fiori Elements ",
|
|
857
|
+
"type": "object"
|
|
858
|
+
},
|
|
736
859
|
"sap.flp": {
|
|
737
860
|
"title": "JSON schema for SAP.FLP Namespace",
|
|
738
861
|
"description": "Represents FLP specific attributes",
|
|
739
862
|
"type": "object",
|
|
740
863
|
"required": [
|
|
741
|
-
"type"
|
|
742
|
-
"config"
|
|
864
|
+
"type"
|
|
743
865
|
],
|
|
744
866
|
"additionalProperties": false,
|
|
745
867
|
"properties": {
|
|
@@ -748,7 +870,8 @@
|
|
|
748
870
|
"type": "string",
|
|
749
871
|
"enum": [
|
|
750
872
|
"1.1.0",
|
|
751
|
-
"1.2.0"
|
|
873
|
+
"1.2.0",
|
|
874
|
+
"1.3.0"
|
|
752
875
|
]
|
|
753
876
|
},
|
|
754
877
|
"tileSize": {
|
|
@@ -778,6 +901,21 @@
|
|
|
778
901
|
"type": "object"
|
|
779
902
|
}
|
|
780
903
|
}
|
|
904
|
+
},
|
|
905
|
+
"origin": {
|
|
906
|
+
"description": "Represents the original tile and target mapping which resulted in this app",
|
|
907
|
+
"type": "object",
|
|
908
|
+
"additionalProperties": false,
|
|
909
|
+
"properties": {
|
|
910
|
+
"tileId": {
|
|
911
|
+
"description": "Represents the original tile which resulted in this app",
|
|
912
|
+
"type": "string"
|
|
913
|
+
},
|
|
914
|
+
"targetMappingId": {
|
|
915
|
+
"description": "Represents the original target mapping which resulted in this app",
|
|
916
|
+
"type": "string"
|
|
917
|
+
}
|
|
918
|
+
}
|
|
781
919
|
}
|
|
782
920
|
}
|
|
783
921
|
},
|
|
@@ -789,9 +927,6 @@
|
|
|
789
927
|
"cards"
|
|
790
928
|
],
|
|
791
929
|
"dependencies": {
|
|
792
|
-
"globalFilterModel": [
|
|
793
|
-
"globalFilterEntityType"
|
|
794
|
-
],
|
|
795
930
|
"globalFilterEntityType": [
|
|
796
931
|
"globalFilterModel"
|
|
797
932
|
]
|
|
@@ -803,7 +938,8 @@
|
|
|
803
938
|
"type": "string",
|
|
804
939
|
"enum": [
|
|
805
940
|
"1.1.0",
|
|
806
|
-
"1.2.0"
|
|
941
|
+
"1.2.0",
|
|
942
|
+
"1.3.0"
|
|
807
943
|
]
|
|
808
944
|
},
|
|
809
945
|
"globalFilterModel": {
|
|
@@ -816,15 +952,70 @@
|
|
|
816
952
|
"type": "string",
|
|
817
953
|
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
818
954
|
},
|
|
955
|
+
"globalFilterEntitySet": {
|
|
956
|
+
"description": "Represents the entity set to use as global filter in the smart filter bar control",
|
|
957
|
+
"type": "string",
|
|
958
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
959
|
+
},
|
|
960
|
+
"showBasicSearch": {
|
|
961
|
+
"description": "Represents a switch to include basic search in the global filters",
|
|
962
|
+
"type": "boolean",
|
|
963
|
+
"default": false
|
|
964
|
+
},
|
|
965
|
+
"disableErrorPage": {
|
|
966
|
+
"description": "Represents a switch to disable the error page shown on load of overview page when no data is retreived from the backend",
|
|
967
|
+
"type": "boolean",
|
|
968
|
+
"default": false
|
|
969
|
+
},
|
|
970
|
+
"smartVariantRequired": {
|
|
971
|
+
"description": "Represents a switch to activate smart variant management in the global filters",
|
|
972
|
+
"type": "boolean",
|
|
973
|
+
"default": true
|
|
974
|
+
},
|
|
975
|
+
"bHeaderExpanded": {
|
|
976
|
+
"description": "Represents a switch to show smart filter bar in expanded or collapsed mode",
|
|
977
|
+
"type": "boolean",
|
|
978
|
+
"default": false
|
|
979
|
+
},
|
|
819
980
|
"containerLayout": {
|
|
820
981
|
"description": "Represents the layout of the card container",
|
|
821
982
|
"type": "string",
|
|
822
|
-
"default": "
|
|
983
|
+
"default": "fixed",
|
|
823
984
|
"enum": [
|
|
824
|
-
"
|
|
825
|
-
"
|
|
985
|
+
"fixed",
|
|
986
|
+
"resizable"
|
|
826
987
|
]
|
|
827
988
|
},
|
|
989
|
+
"showDateInRelativeFormat": {
|
|
990
|
+
"description": "Represents a switch to Enable or disable Relative or Normal date formating in ovp application",
|
|
991
|
+
"type": "boolean",
|
|
992
|
+
"default": true
|
|
993
|
+
},
|
|
994
|
+
"disableTableCardFlexibility": {
|
|
995
|
+
"description": "Represents a switch to Enable or Disable the Flexibility of Table cards",
|
|
996
|
+
"type": "boolean",
|
|
997
|
+
"default": false
|
|
998
|
+
},
|
|
999
|
+
"enableLiveFilter": {
|
|
1000
|
+
"description": "Represents the switch to activate live update in the global filters, else manual update will be required",
|
|
1001
|
+
"type": "boolean",
|
|
1002
|
+
"default": true
|
|
1003
|
+
},
|
|
1004
|
+
"considerAnalyticalParameters": {
|
|
1005
|
+
"description": "Flag to enable/disable analytical parameter support for Smart filter bar",
|
|
1006
|
+
"type": "boolean",
|
|
1007
|
+
"default": false
|
|
1008
|
+
},
|
|
1009
|
+
"refreshIntervalInMinutes": {
|
|
1010
|
+
"description": "Time interval in minutes to auto refresh the card models",
|
|
1011
|
+
"type": "integer",
|
|
1012
|
+
"default": 1
|
|
1013
|
+
},
|
|
1014
|
+
"useDateRangeType": {
|
|
1015
|
+
"description": "Flag to enable/disable semantic date range control for Smart filter bar",
|
|
1016
|
+
"type": "boolean",
|
|
1017
|
+
"default": false
|
|
1018
|
+
},
|
|
828
1019
|
"cards": {
|
|
829
1020
|
"type": "object",
|
|
830
1021
|
"additionalProperties": false,
|
|
@@ -834,12 +1025,12 @@
|
|
|
834
1025
|
}
|
|
835
1026
|
}
|
|
836
1027
|
},
|
|
837
|
-
"
|
|
1028
|
+
"resizableLayout": {
|
|
838
1029
|
"type": "object",
|
|
839
1030
|
"additionalProperties": false,
|
|
840
1031
|
"patternProperties": {
|
|
841
1032
|
"^cols_[0-9]+$": {
|
|
842
|
-
"$ref": "#/definitions/
|
|
1033
|
+
"$ref": "#/definitions/resizableLayoutVariant"
|
|
843
1034
|
}
|
|
844
1035
|
}
|
|
845
1036
|
}
|
|
@@ -876,6 +1067,11 @@
|
|
|
876
1067
|
"description": "Represents SAP Screen Personas Flavor ID",
|
|
877
1068
|
"type": "string",
|
|
878
1069
|
"pattern": "^[A-F0-9]{1,32}$"
|
|
1070
|
+
},
|
|
1071
|
+
"compatibilityMode": {
|
|
1072
|
+
"description": "Indicates that WebDynpro Application requires Compatibility Mode, while uses legacy shell services. Possible values are true or false (default)",
|
|
1073
|
+
"type": "boolean",
|
|
1074
|
+
"default": false
|
|
879
1075
|
}
|
|
880
1076
|
}
|
|
881
1077
|
},
|
|
@@ -889,7 +1085,8 @@
|
|
|
889
1085
|
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
890
1086
|
"type": "string",
|
|
891
1087
|
"enum": [
|
|
892
|
-
"1.1.0"
|
|
1088
|
+
"1.1.0",
|
|
1089
|
+
"1.2.0"
|
|
893
1090
|
]
|
|
894
1091
|
},
|
|
895
1092
|
"activateFilterReduction": {
|
|
@@ -901,6 +1098,11 @@
|
|
|
901
1098
|
"description": "Represents a switch to activate LREP as the persistence for configurations and texts",
|
|
902
1099
|
"type": "boolean",
|
|
903
1100
|
"default": false
|
|
1101
|
+
},
|
|
1102
|
+
"useHeadRequestForXsrfToken": {
|
|
1103
|
+
"description": "Represents a switch to use HEAD-Requests instead of GET-Requests when fetching the XSRF-Security-Token",
|
|
1104
|
+
"type": "boolean",
|
|
1105
|
+
"default": false
|
|
904
1106
|
}
|
|
905
1107
|
}
|
|
906
1108
|
},
|
|
@@ -938,6 +1140,77 @@
|
|
|
938
1140
|
}
|
|
939
1141
|
}
|
|
940
1142
|
},
|
|
1143
|
+
"sap.integration": {
|
|
1144
|
+
"title": "JSON schema for SAP.INTEGRATION Namespace",
|
|
1145
|
+
"description": "Represents Application Integration specific attributes",
|
|
1146
|
+
"type": "object",
|
|
1147
|
+
"required": [
|
|
1148
|
+
"urlTemplateId",
|
|
1149
|
+
"parameters"
|
|
1150
|
+
],
|
|
1151
|
+
"properties": {
|
|
1152
|
+
"_version": {
|
|
1153
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1154
|
+
"type": "string",
|
|
1155
|
+
"enum": [
|
|
1156
|
+
"1.0.0"
|
|
1157
|
+
]
|
|
1158
|
+
},
|
|
1159
|
+
"urlTemplateId": {
|
|
1160
|
+
"description": "Reference to the desired URL Template",
|
|
1161
|
+
"type": "string",
|
|
1162
|
+
"examples": [
|
|
1163
|
+
"template.sap.sfsf",
|
|
1164
|
+
"template.sap.ui5",
|
|
1165
|
+
"template.sap.wda"
|
|
1166
|
+
]
|
|
1167
|
+
},
|
|
1168
|
+
"parameters": {
|
|
1169
|
+
"description": "Represents configuration parameters which will be used by Template Engine to compile URL Template",
|
|
1170
|
+
"type": "array",
|
|
1171
|
+
"items": {
|
|
1172
|
+
"type": "object",
|
|
1173
|
+
"required": [
|
|
1174
|
+
"key",
|
|
1175
|
+
"value"
|
|
1176
|
+
],
|
|
1177
|
+
"properties": {
|
|
1178
|
+
"key": {
|
|
1179
|
+
"type": "string",
|
|
1180
|
+
"description": "Represents the name of the desired parameter"
|
|
1181
|
+
},
|
|
1182
|
+
"value": {
|
|
1183
|
+
"type": "string",
|
|
1184
|
+
"description": "Represents the actual value of the desired parameter"
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
"sap.wcf": {
|
|
1192
|
+
"title": "JSON schema for SAP.WCF Namespace",
|
|
1193
|
+
"description": "Represents WCF Application specific attributes",
|
|
1194
|
+
"type": "object",
|
|
1195
|
+
"required": [
|
|
1196
|
+
"wcf-target-id"
|
|
1197
|
+
],
|
|
1198
|
+
"additionalProperties": false,
|
|
1199
|
+
"properties": {
|
|
1200
|
+
"_version": {
|
|
1201
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1202
|
+
"type": "string",
|
|
1203
|
+
"enum": [
|
|
1204
|
+
"1.1.0"
|
|
1205
|
+
]
|
|
1206
|
+
},
|
|
1207
|
+
"wcf-target-id": {
|
|
1208
|
+
"description": "Represents the target technical id for a WCF Application",
|
|
1209
|
+
"type": "string",
|
|
1210
|
+
"pattern": "^[a-zA-Z0-9\\/\\_]{1,10}$"
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
},
|
|
941
1214
|
"sap.ui.smartbusiness.app": {
|
|
942
1215
|
"title": "JSON schema for SAP.UI.SMARTBUSINESS.APP Namespace",
|
|
943
1216
|
"description": "Represents specific attributes for Smart Business ",
|
|
@@ -969,472 +1242,2943 @@
|
|
|
969
1242
|
}
|
|
970
1243
|
}
|
|
971
1244
|
}
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
1245
|
+
},
|
|
1246
|
+
"sap.copilot": {
|
|
1247
|
+
"title": "JSON schema for SAP.COPILOT Namespace",
|
|
1248
|
+
"description": "Represents specific attributes for SAP CoPilot",
|
|
1249
|
+
"type": "object",
|
|
1250
|
+
"additionalProperties": true,
|
|
1251
|
+
"properties": {
|
|
1252
|
+
"_version": {
|
|
1253
|
+
"description": "Represents SAP.COPILOT attributes format version. It is managed by namespace owner",
|
|
1254
|
+
"type": "string",
|
|
1255
|
+
"enum": [
|
|
1256
|
+
"1.0.0",
|
|
1257
|
+
"1.1.0"
|
|
1258
|
+
]
|
|
1259
|
+
},
|
|
1260
|
+
"contextAnalysis": {
|
|
1261
|
+
"description": "Settings for the context analysis features of SAP CoPilot",
|
|
1262
|
+
"type": "object",
|
|
1263
|
+
"additionalProperties": true,
|
|
1264
|
+
"properties": {
|
|
1265
|
+
"allowAddingObjectsFromAppScreenToCollection": {
|
|
1266
|
+
"description": "Enable/Disable the ability for SAP CoPilot to analyze your Application Screens and add the found objects to a Collection",
|
|
1267
|
+
"type": "boolean",
|
|
1268
|
+
"default": true
|
|
1269
|
+
},
|
|
1270
|
+
"whitelistedEntityTypes": {
|
|
1271
|
+
"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.",
|
|
1272
|
+
"type": "array",
|
|
1273
|
+
"items": {
|
|
1274
|
+
"type": "string"
|
|
1275
|
+
}
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"digitalAssistant": {
|
|
1280
|
+
"description": "Settings for the Digital Assistant features of SAP CoPilot",
|
|
1281
|
+
"type": "object",
|
|
1282
|
+
"additionalProperties": true,
|
|
1283
|
+
"properties": {
|
|
1284
|
+
"intentDefinition": {
|
|
1285
|
+
"description": "A list of Intent",
|
|
1286
|
+
"type": "object",
|
|
1287
|
+
"additionalProperties": false,
|
|
1288
|
+
"patternProperties": {
|
|
1289
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1290
|
+
"type": "object",
|
|
1291
|
+
"additionalProperties": true,
|
|
1292
|
+
"properties": {
|
|
1293
|
+
"uri": {
|
|
1294
|
+
"description": "Represents the uri of the intent",
|
|
1295
|
+
"type": "string"
|
|
1296
|
+
},
|
|
1297
|
+
"dataSources": {
|
|
1298
|
+
"description": "A list of the sap.app.dataSources used by the intent",
|
|
1299
|
+
"type": "array",
|
|
1300
|
+
"items": {
|
|
1301
|
+
"type": "string"
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
"i18n": {
|
|
1305
|
+
"description": "Represents the uri of the translation file",
|
|
1306
|
+
"type": "string"
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
},
|
|
1316
|
+
"sap.map": {
|
|
1317
|
+
"title": "JSON schema for SAP.MAP Namespace",
|
|
1318
|
+
"description": "Represents specific attributes for SAP.MAP ",
|
|
1319
|
+
"type": "object"
|
|
1320
|
+
},
|
|
1321
|
+
"sap.url": {
|
|
1322
|
+
"title": "JSON schema for SAP.URL Namespace",
|
|
1323
|
+
"description": "Represents specific attributes for SAP URL",
|
|
976
1324
|
"type": "object",
|
|
977
1325
|
"additionalProperties": false,
|
|
978
1326
|
"required": [
|
|
979
|
-
"
|
|
980
|
-
"path"
|
|
1327
|
+
"uri"
|
|
981
1328
|
],
|
|
982
1329
|
"properties": {
|
|
983
|
-
"
|
|
984
|
-
"description": "Represents
|
|
985
|
-
"type": "string"
|
|
1330
|
+
"_version": {
|
|
1331
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1332
|
+
"type": "string",
|
|
1333
|
+
"enum": [
|
|
1334
|
+
"1.0.0"
|
|
1335
|
+
]
|
|
986
1336
|
},
|
|
987
|
-
"
|
|
988
|
-
"description": "Represents
|
|
1337
|
+
"uri": {
|
|
1338
|
+
"description": "Represents URI of an application",
|
|
989
1339
|
"type": "string"
|
|
990
|
-
},
|
|
991
|
-
"retrieveStreams": {
|
|
992
|
-
"description": "Represents indicator whether streams should be retrieved",
|
|
993
|
-
"type": "boolean",
|
|
994
|
-
"default": false
|
|
995
1340
|
}
|
|
996
1341
|
}
|
|
997
1342
|
},
|
|
998
|
-
"
|
|
999
|
-
"
|
|
1000
|
-
|
|
1001
|
-
"row",
|
|
1002
|
-
"colSpan",
|
|
1003
|
-
"rowSpan"
|
|
1004
|
-
],
|
|
1005
|
-
"description": "Represents the card properties is a layout variant",
|
|
1343
|
+
"sap.platform.sfsf": {
|
|
1344
|
+
"title": "JSON schema for SAP.PLATFORM.SFSF Namespace",
|
|
1345
|
+
"description": "Represents SFSF platform specific attributes",
|
|
1006
1346
|
"type": "object",
|
|
1007
1347
|
"additionalProperties": false,
|
|
1348
|
+
"required": [
|
|
1349
|
+
"appName"
|
|
1350
|
+
],
|
|
1008
1351
|
"properties": {
|
|
1009
|
-
"
|
|
1010
|
-
"description": "Represents
|
|
1011
|
-
"type": "
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
"type": "integer"
|
|
1352
|
+
"_version": {
|
|
1353
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1354
|
+
"type": "string",
|
|
1355
|
+
"enum": [
|
|
1356
|
+
"1.0.0"
|
|
1357
|
+
]
|
|
1016
1358
|
},
|
|
1017
|
-
"
|
|
1018
|
-
"description": "Represents the
|
|
1019
|
-
"type": "
|
|
1359
|
+
"uri": {
|
|
1360
|
+
"description": "Represents the uri inside the SFSF app",
|
|
1361
|
+
"type": "string"
|
|
1020
1362
|
},
|
|
1021
|
-
"
|
|
1022
|
-
"description": "Represents the
|
|
1023
|
-
"type": "
|
|
1363
|
+
"appName": {
|
|
1364
|
+
"description": "Represents the SFSF application name",
|
|
1365
|
+
"type": "string"
|
|
1024
1366
|
},
|
|
1025
|
-
"
|
|
1026
|
-
"description": "Represents the
|
|
1027
|
-
"type": "
|
|
1028
|
-
"default": true
|
|
1367
|
+
"appVersion": {
|
|
1368
|
+
"description": "Represents the version of the SFSF application",
|
|
1369
|
+
"type": "string"
|
|
1029
1370
|
}
|
|
1030
1371
|
}
|
|
1031
1372
|
},
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1034
|
-
"
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
"rows"
|
|
1041
|
-
],
|
|
1042
|
-
"properties": {
|
|
1043
|
-
"cols": {
|
|
1044
|
-
"description": "Represents the number of the number of grid columns",
|
|
1045
|
-
"type": "integer"
|
|
1046
|
-
},
|
|
1047
|
-
"rows": {
|
|
1048
|
-
"description": "Represents the number of the number of grid rows",
|
|
1049
|
-
"type": "integer"
|
|
1050
|
-
}
|
|
1051
|
-
}
|
|
1052
|
-
},
|
|
1053
|
-
{
|
|
1373
|
+
"sap.cloud": {
|
|
1374
|
+
"title": "JSON schema for SAP.CLOUD Namespace",
|
|
1375
|
+
"description": "Represents cloud platform specific attributes",
|
|
1376
|
+
"type": "object",
|
|
1377
|
+
"additionalProperties": false,
|
|
1378
|
+
"properties": {
|
|
1379
|
+
"_version": {
|
|
1380
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1054
1381
|
"type": "string",
|
|
1055
1382
|
"enum": [
|
|
1056
|
-
"
|
|
1383
|
+
"1.0.0",
|
|
1384
|
+
"1.1.0"
|
|
1057
1385
|
]
|
|
1386
|
+
},
|
|
1387
|
+
"service": {
|
|
1388
|
+
"description": "Unique Business Service Identifier",
|
|
1389
|
+
"type": "string"
|
|
1390
|
+
},
|
|
1391
|
+
"public": {
|
|
1392
|
+
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
1393
|
+
"type": "boolean",
|
|
1394
|
+
"default": false
|
|
1058
1395
|
}
|
|
1059
|
-
|
|
1396
|
+
}
|
|
1060
1397
|
},
|
|
1061
|
-
"
|
|
1062
|
-
"
|
|
1398
|
+
"sap.card": {
|
|
1399
|
+
"title": "JSON schema for SAP.CARD Namespace",
|
|
1400
|
+
"description": "Represents general card attributes",
|
|
1063
1401
|
"type": "object",
|
|
1064
|
-
"additionalProperties":
|
|
1402
|
+
"additionalProperties": false,
|
|
1403
|
+
"required": [
|
|
1404
|
+
"type"
|
|
1405
|
+
],
|
|
1065
1406
|
"properties": {
|
|
1066
|
-
"
|
|
1067
|
-
"description": "Represents
|
|
1407
|
+
"_version": {
|
|
1408
|
+
"description": "Represents SAP.CARD attributes format version. It is managed by namespace owner",
|
|
1068
1409
|
"type": "string",
|
|
1069
|
-
"
|
|
1410
|
+
"enum": [
|
|
1411
|
+
"1.1.0",
|
|
1412
|
+
"1.2.0",
|
|
1413
|
+
"1.3.0",
|
|
1414
|
+
"1.4.0",
|
|
1415
|
+
"1.5.0",
|
|
1416
|
+
"1.6.0",
|
|
1417
|
+
"1.7.0"
|
|
1418
|
+
]
|
|
1070
1419
|
},
|
|
1071
|
-
"
|
|
1072
|
-
"description": "Represents
|
|
1420
|
+
"configuration": {
|
|
1421
|
+
"description": "Represents configuration with parameters, which can be used inside the Card",
|
|
1422
|
+
"type": "object",
|
|
1423
|
+
"additionalProperties": true
|
|
1424
|
+
},
|
|
1425
|
+
"type": {
|
|
1426
|
+
"description": "Represents the type of the card's content",
|
|
1073
1427
|
"type": "string",
|
|
1074
|
-
"
|
|
1428
|
+
"enum": [
|
|
1429
|
+
"List",
|
|
1430
|
+
"Analytical",
|
|
1431
|
+
"Table",
|
|
1432
|
+
"Object",
|
|
1433
|
+
"Timeline",
|
|
1434
|
+
"Component"
|
|
1435
|
+
]
|
|
1075
1436
|
},
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1437
|
+
"data": {
|
|
1438
|
+
"$ref": "#/definitions/data"
|
|
1439
|
+
},
|
|
1440
|
+
"headerPosition": {
|
|
1441
|
+
"description": "Represents card header position - under or over the content",
|
|
1078
1442
|
"type": "string",
|
|
1079
|
-
"
|
|
1443
|
+
"oneOf": [
|
|
1444
|
+
{
|
|
1445
|
+
"enum": [
|
|
1446
|
+
"Top",
|
|
1447
|
+
"Bottom"
|
|
1448
|
+
],
|
|
1449
|
+
"default": "Top"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1453
|
+
}
|
|
1454
|
+
]
|
|
1080
1455
|
},
|
|
1081
|
-
"
|
|
1082
|
-
"description": "Represents
|
|
1456
|
+
"header": {
|
|
1457
|
+
"description": "Represents card header attributes",
|
|
1458
|
+
"$ref": "#/definitions/HeaderType"
|
|
1459
|
+
},
|
|
1460
|
+
"content": {
|
|
1461
|
+
"description": "Represents card content attributes. Content type should be the same as card type e.g. if card type List is used the content type should also be List"
|
|
1462
|
+
}
|
|
1463
|
+
},
|
|
1464
|
+
"oneOf": [
|
|
1465
|
+
{
|
|
1466
|
+
"allOf": [
|
|
1467
|
+
{
|
|
1468
|
+
"properties": {
|
|
1469
|
+
"type": {
|
|
1470
|
+
"enum": [
|
|
1471
|
+
"List"
|
|
1472
|
+
]
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"properties": {
|
|
1478
|
+
"content": {
|
|
1479
|
+
"$ref": "#/definitions/ContentType.List"
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
}
|
|
1483
|
+
]
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"allOf": [
|
|
1487
|
+
{
|
|
1488
|
+
"properties": {
|
|
1489
|
+
"type": {
|
|
1490
|
+
"enum": [
|
|
1491
|
+
"Analytical"
|
|
1492
|
+
]
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"properties": {
|
|
1498
|
+
"content": {
|
|
1499
|
+
"$ref": "#/definitions/ContentType.Analytical"
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
]
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"allOf": [
|
|
1507
|
+
{
|
|
1508
|
+
"properties": {
|
|
1509
|
+
"type": {
|
|
1510
|
+
"enum": [
|
|
1511
|
+
"Timeline"
|
|
1512
|
+
]
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"properties": {
|
|
1518
|
+
"content": {
|
|
1519
|
+
"$ref": "#/definitions/ContentType.Timeline"
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
]
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"allOf": [
|
|
1527
|
+
{
|
|
1528
|
+
"properties": {
|
|
1529
|
+
"type": {
|
|
1530
|
+
"enum": [
|
|
1531
|
+
"Table"
|
|
1532
|
+
]
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"properties": {
|
|
1538
|
+
"content": {
|
|
1539
|
+
"$ref": "#/definitions/ContentType.Table"
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
]
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"allOf": [
|
|
1547
|
+
{
|
|
1548
|
+
"properties": {
|
|
1549
|
+
"type": {
|
|
1550
|
+
"enum": [
|
|
1551
|
+
"Object"
|
|
1552
|
+
]
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"properties": {
|
|
1558
|
+
"content": {
|
|
1559
|
+
"$ref": "#/definitions/ContentType.Object"
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
}
|
|
1563
|
+
]
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"allOf": [
|
|
1567
|
+
{
|
|
1568
|
+
"properties": {
|
|
1569
|
+
"type": {
|
|
1570
|
+
"enum": [
|
|
1571
|
+
"Component"
|
|
1572
|
+
]
|
|
1573
|
+
}
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"properties": {
|
|
1578
|
+
"content": {
|
|
1579
|
+
"enum": [
|
|
1580
|
+
"null"
|
|
1581
|
+
]
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
}
|
|
1585
|
+
]
|
|
1586
|
+
}
|
|
1587
|
+
],
|
|
1588
|
+
"definitions": {
|
|
1589
|
+
"i18n_key": {
|
|
1083
1590
|
"type": "string",
|
|
1084
|
-
"pattern": "
|
|
1591
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
1592
|
+
}
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"definitions": {
|
|
1597
|
+
"parameters": {
|
|
1598
|
+
"description": "Represents parameters that are passed in the actions",
|
|
1599
|
+
"type": "object",
|
|
1600
|
+
"additionalProperties": true
|
|
1601
|
+
},
|
|
1602
|
+
"service_0": {
|
|
1603
|
+
"description": "Represents service that will be used for an actions",
|
|
1604
|
+
"oneOf": [
|
|
1605
|
+
{
|
|
1606
|
+
"description": "Represents name of the Service to be used for the action",
|
|
1607
|
+
"type": "string"
|
|
1085
1608
|
},
|
|
1086
|
-
|
|
1087
|
-
"
|
|
1609
|
+
{
|
|
1610
|
+
"type": "object",
|
|
1611
|
+
"additionalProperties": false,
|
|
1612
|
+
"properties": {
|
|
1613
|
+
"name": {
|
|
1614
|
+
"description": "Represents name of the Service to be used for the action",
|
|
1615
|
+
"type": "string"
|
|
1616
|
+
},
|
|
1617
|
+
"parameters": {
|
|
1618
|
+
"$ref": "#/definitions/parameters"
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
]
|
|
1623
|
+
},
|
|
1624
|
+
"request": {
|
|
1625
|
+
"description": "Represents request attributes",
|
|
1626
|
+
"type": "object",
|
|
1627
|
+
"additionalProperties": false,
|
|
1628
|
+
"required": [
|
|
1629
|
+
"url"
|
|
1630
|
+
],
|
|
1631
|
+
"properties": {
|
|
1632
|
+
"mode": {
|
|
1633
|
+
"description": "The mode of the request",
|
|
1088
1634
|
"type": "string",
|
|
1089
|
-
"
|
|
1635
|
+
"oneOf": [
|
|
1636
|
+
{
|
|
1637
|
+
"enum": [
|
|
1638
|
+
"no-cors",
|
|
1639
|
+
"same-origin",
|
|
1640
|
+
"cors"
|
|
1641
|
+
],
|
|
1642
|
+
"default": "cors"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1646
|
+
}
|
|
1647
|
+
]
|
|
1090
1648
|
},
|
|
1091
|
-
"
|
|
1092
|
-
"description": "
|
|
1649
|
+
"url": {
|
|
1650
|
+
"description": "The URL to make the request to",
|
|
1651
|
+
"type": "string"
|
|
1652
|
+
},
|
|
1653
|
+
"method": {
|
|
1654
|
+
"description": "The HTTP method",
|
|
1093
1655
|
"type": "string",
|
|
1094
|
-
"
|
|
1656
|
+
"oneOf": [
|
|
1657
|
+
{
|
|
1658
|
+
"enum": [
|
|
1659
|
+
"GET",
|
|
1660
|
+
"POST"
|
|
1661
|
+
],
|
|
1662
|
+
"default": "GET"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1666
|
+
}
|
|
1667
|
+
]
|
|
1668
|
+
},
|
|
1669
|
+
"parameters": {
|
|
1670
|
+
"description": "Represents the request parameters. If it is a POST request the parameters will be put as key/value pairs into the body of the request",
|
|
1671
|
+
"$ref": "#/definitions/parameters"
|
|
1672
|
+
},
|
|
1673
|
+
"headers": {
|
|
1674
|
+
"description": "Represents HTTP headers",
|
|
1675
|
+
"type": "object",
|
|
1676
|
+
"additionalProperties": true
|
|
1677
|
+
},
|
|
1678
|
+
"withCredentials": {
|
|
1679
|
+
"description": "Indicates whether cross-site requests should be made using credentials.",
|
|
1680
|
+
"oneOf": [
|
|
1681
|
+
{
|
|
1682
|
+
"type": "boolean",
|
|
1683
|
+
"default": false
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1687
|
+
}
|
|
1688
|
+
]
|
|
1689
|
+
}
|
|
1690
|
+
}
|
|
1691
|
+
},
|
|
1692
|
+
"statusTextFormatter": {
|
|
1693
|
+
"type": "object",
|
|
1694
|
+
"description": "Defines fields for dynamic status formatting.",
|
|
1695
|
+
"additionalProperties": false,
|
|
1696
|
+
"properties": {
|
|
1697
|
+
"format": {
|
|
1698
|
+
"description": "Defines binding information.",
|
|
1699
|
+
"type": "object",
|
|
1700
|
+
"additionalProperties": false,
|
|
1701
|
+
"properties": {
|
|
1702
|
+
"translationKey": {
|
|
1703
|
+
"type": "string"
|
|
1704
|
+
},
|
|
1705
|
+
"parts": {
|
|
1706
|
+
"type": "array"
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
"progressIndicator": {
|
|
1713
|
+
"description": "Represents progress indicator attributes",
|
|
1714
|
+
"type": "object",
|
|
1715
|
+
"additionalProperties": false,
|
|
1716
|
+
"properties": {
|
|
1717
|
+
"state": {
|
|
1718
|
+
"description": "Represents state color",
|
|
1719
|
+
"oneOf": [
|
|
1720
|
+
{
|
|
1721
|
+
"$ref": "#/definitions/state"
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1725
|
+
}
|
|
1726
|
+
]
|
|
1727
|
+
},
|
|
1728
|
+
"percent": {
|
|
1729
|
+
"description": "Represents progress indicator percent value",
|
|
1730
|
+
"oneOf": [
|
|
1731
|
+
{
|
|
1732
|
+
"type": "number"
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1736
|
+
}
|
|
1737
|
+
]
|
|
1738
|
+
},
|
|
1739
|
+
"text": {
|
|
1740
|
+
"description": "Represents progress indicator text",
|
|
1741
|
+
"type": "string"
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
"identifier": {
|
|
1746
|
+
"description": "Represents identifier",
|
|
1747
|
+
"oneOf": [
|
|
1748
|
+
{
|
|
1749
|
+
"type": "boolean",
|
|
1750
|
+
"default": false
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"type": "object",
|
|
1754
|
+
"additionalProperties": false,
|
|
1755
|
+
"properties": {
|
|
1756
|
+
"url": {
|
|
1757
|
+
"type": "string"
|
|
1758
|
+
},
|
|
1759
|
+
"target": {
|
|
1760
|
+
"$ref": "#/definitions/target"
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
]
|
|
1765
|
+
},
|
|
1766
|
+
"ContentType.Table.Column": {
|
|
1767
|
+
"description": "Represents object item attributes",
|
|
1768
|
+
"type": "object",
|
|
1769
|
+
"additionalProperties": false,
|
|
1770
|
+
"properties": {
|
|
1771
|
+
"title": {
|
|
1772
|
+
"description": "Defines language-dependent title of the column.",
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
},
|
|
1775
|
+
"width": {
|
|
1776
|
+
"description": "Defines the width of the column.",
|
|
1777
|
+
"type": "string"
|
|
1778
|
+
},
|
|
1779
|
+
"value": {
|
|
1780
|
+
"description": "Represents the text value of the column.",
|
|
1781
|
+
"type": "string"
|
|
1782
|
+
},
|
|
1783
|
+
"icon": {
|
|
1784
|
+
"description": "Represents column with icon.",
|
|
1785
|
+
"$ref": "#/definitions/icon"
|
|
1786
|
+
},
|
|
1787
|
+
"state": {
|
|
1788
|
+
"description": "Defines the state of the column.",
|
|
1789
|
+
"oneOf": [
|
|
1790
|
+
{
|
|
1791
|
+
"$ref": "#/definitions/state"
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1795
|
+
}
|
|
1796
|
+
]
|
|
1797
|
+
},
|
|
1798
|
+
"url": {
|
|
1799
|
+
"description": "Defines the URL string.",
|
|
1800
|
+
"type": "string"
|
|
1801
|
+
},
|
|
1802
|
+
"target": {
|
|
1803
|
+
"description": "Specifies where to open the 'url', if it is provided.",
|
|
1804
|
+
"type": "string",
|
|
1805
|
+
"oneOf": [
|
|
1806
|
+
{
|
|
1807
|
+
"$ref": "#/definitions/target"
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1811
|
+
}
|
|
1812
|
+
]
|
|
1813
|
+
},
|
|
1814
|
+
"identifier": {
|
|
1815
|
+
"oneOf": [
|
|
1816
|
+
{
|
|
1817
|
+
"$ref": "#/definitions/identifier"
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1821
|
+
}
|
|
1822
|
+
]
|
|
1823
|
+
},
|
|
1824
|
+
"progressIndicator": {
|
|
1825
|
+
"description": "Represents progress indicator attributes",
|
|
1826
|
+
"$ref": "#/definitions/progressIndicator"
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
"target_0": {
|
|
1831
|
+
"description": "Specifies where to open an URL",
|
|
1832
|
+
"type": "string",
|
|
1833
|
+
"enum": [
|
|
1834
|
+
"_blank",
|
|
1835
|
+
"_self"
|
|
1836
|
+
],
|
|
1837
|
+
"default": "_blank"
|
|
1838
|
+
},
|
|
1839
|
+
"ContentType.Object.Item": {
|
|
1840
|
+
"description": "Represents a single item of information. It can contain label, value and image",
|
|
1841
|
+
"type": "object",
|
|
1842
|
+
"additionalProperties": false,
|
|
1843
|
+
"properties": {
|
|
1844
|
+
"icon": {
|
|
1845
|
+
"description": "Defines the icon of the item.",
|
|
1846
|
+
"$ref": "#/definitions/icon"
|
|
1847
|
+
},
|
|
1848
|
+
"label": {
|
|
1849
|
+
"description": "Defines the label of the item.",
|
|
1850
|
+
"type": "string"
|
|
1851
|
+
},
|
|
1852
|
+
"value": {
|
|
1853
|
+
"description": "Represents the text, which is associated with the label.",
|
|
1854
|
+
"type": "string"
|
|
1855
|
+
},
|
|
1856
|
+
"type": {
|
|
1857
|
+
"description": "Defines the type of the displayed information.",
|
|
1858
|
+
"type": "string",
|
|
1859
|
+
"oneOf": [
|
|
1860
|
+
{
|
|
1861
|
+
"enum": [
|
|
1862
|
+
"phone",
|
|
1863
|
+
"email",
|
|
1864
|
+
"link",
|
|
1865
|
+
"text"
|
|
1866
|
+
],
|
|
1867
|
+
"default": "text"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1871
|
+
}
|
|
1872
|
+
]
|
|
1873
|
+
},
|
|
1874
|
+
"url": {
|
|
1875
|
+
"description": "Defines the URL string. Works only with items of type 'link'.",
|
|
1876
|
+
"type": "string"
|
|
1877
|
+
},
|
|
1878
|
+
"target": {
|
|
1879
|
+
"description": "Specifies the target of the link - it works like the target property of the HTML 'a' tag. Works only with items of type 'link'.",
|
|
1880
|
+
"oneOf": [
|
|
1881
|
+
{
|
|
1882
|
+
"$ref": "#/definitions/target"
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1886
|
+
}
|
|
1887
|
+
]
|
|
1888
|
+
},
|
|
1889
|
+
"emailSubject": {
|
|
1890
|
+
"description": "Represents the subject of the email. Works only with item of type 'email'.",
|
|
1891
|
+
"type": "string"
|
|
1892
|
+
}
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
"ContentType.Object.Group": {
|
|
1896
|
+
"description": "Represents a group of information for an object",
|
|
1897
|
+
"type": "object",
|
|
1898
|
+
"additionalProperties": false,
|
|
1899
|
+
"properties": {
|
|
1900
|
+
"title": {
|
|
1901
|
+
"description": "Defines language-dependent title of the object group.",
|
|
1902
|
+
"type": "string"
|
|
1903
|
+
},
|
|
1904
|
+
"items": {
|
|
1905
|
+
"description": "Represents items of information.",
|
|
1906
|
+
"type": "array",
|
|
1907
|
+
"items": {
|
|
1908
|
+
"$ref": "#/definitions/ContentType.Object.Item"
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
},
|
|
1913
|
+
"ContentType.Timeline.Item": {
|
|
1914
|
+
"description": "Represents a single timeline item",
|
|
1915
|
+
"type": "object",
|
|
1916
|
+
"additionalProperties": false,
|
|
1917
|
+
"properties": {
|
|
1918
|
+
"title": {
|
|
1919
|
+
"description": "The title of the timeline item.",
|
|
1920
|
+
"$ref": "#/definitions/field"
|
|
1921
|
+
},
|
|
1922
|
+
"description": {
|
|
1923
|
+
"description": "The description of the timeline item.",
|
|
1924
|
+
"$ref": "#/definitions/field"
|
|
1925
|
+
},
|
|
1926
|
+
"dateTime": {
|
|
1927
|
+
"description": "The dateTime value of the timeline item.",
|
|
1928
|
+
"$ref": "#/definitions/field"
|
|
1929
|
+
},
|
|
1930
|
+
"owner": {
|
|
1931
|
+
"description": "The owner of the timeline item.",
|
|
1932
|
+
"$ref": "#/definitions/field"
|
|
1933
|
+
},
|
|
1934
|
+
"ownerImage": {
|
|
1935
|
+
"description": "The owner image of the timeline item.",
|
|
1936
|
+
"properties": {
|
|
1937
|
+
"value": {
|
|
1938
|
+
"type": "string"
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
},
|
|
1942
|
+
"icon": {
|
|
1943
|
+
"description": "The icon of the timeline item.",
|
|
1944
|
+
"$ref": "#/definitions/icon"
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
},
|
|
1948
|
+
"ContentType.Analytical.AxisText": {
|
|
1949
|
+
"description": "Represents descriptive text of the axis",
|
|
1950
|
+
"type": "object",
|
|
1951
|
+
"additionalProperties": false,
|
|
1952
|
+
"properties": {
|
|
1953
|
+
"visible": {
|
|
1954
|
+
"description": "Represents the visibility state of the descriptive axis text",
|
|
1955
|
+
"oneOf": [
|
|
1956
|
+
{
|
|
1957
|
+
"type": "boolean",
|
|
1958
|
+
"default": true
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1962
|
+
}
|
|
1963
|
+
]
|
|
1964
|
+
}
|
|
1965
|
+
}
|
|
1966
|
+
},
|
|
1967
|
+
"ContentType.Analytical.DataLabel": {
|
|
1968
|
+
"description": "Represents value attributes in the plot area",
|
|
1969
|
+
"type": "object",
|
|
1970
|
+
"additionalProperties": false,
|
|
1971
|
+
"properties": {
|
|
1972
|
+
"visible": {
|
|
1973
|
+
"description": "Represents the visibility state of the dataLabel",
|
|
1974
|
+
"oneOf": [
|
|
1975
|
+
{
|
|
1976
|
+
"type": "boolean",
|
|
1977
|
+
"default": true
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1981
|
+
}
|
|
1982
|
+
]
|
|
1983
|
+
},
|
|
1984
|
+
"showTotal": {
|
|
1985
|
+
"description": "Represents the visibility state of 'show total' indicator",
|
|
1986
|
+
"oneOf": [
|
|
1987
|
+
{
|
|
1988
|
+
"type": "boolean",
|
|
1989
|
+
"default": true
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"$ref": "#/definitions/simpleBinding"
|
|
1993
|
+
}
|
|
1994
|
+
]
|
|
1995
|
+
}
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"ContentType.Analytical.Legend": {
|
|
1999
|
+
"description": "Represents chart legend attributes",
|
|
2000
|
+
"type": "object",
|
|
2001
|
+
"additionalProperties": false,
|
|
2002
|
+
"properties": {
|
|
2003
|
+
"visible": {
|
|
2004
|
+
"description": "Represent the visibility state of the legend",
|
|
2005
|
+
"oneOf": [
|
|
2006
|
+
{
|
|
2007
|
+
"type": "boolean",
|
|
2008
|
+
"default": true
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2012
|
+
}
|
|
2013
|
+
]
|
|
2014
|
+
},
|
|
2015
|
+
"position": {
|
|
2016
|
+
"description": "Representation of where the legend will be positioned",
|
|
2017
|
+
"type": "string",
|
|
2018
|
+
"oneOf": [
|
|
2019
|
+
{
|
|
2020
|
+
"enum": [
|
|
2021
|
+
"Top",
|
|
2022
|
+
"Bottom",
|
|
2023
|
+
"Left",
|
|
2024
|
+
"Right"
|
|
2025
|
+
],
|
|
2026
|
+
"default": "Right"
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2030
|
+
}
|
|
2031
|
+
]
|
|
2032
|
+
},
|
|
2033
|
+
"alignment": {
|
|
2034
|
+
"description": "Representation of how the legend will be aligned",
|
|
2035
|
+
"type": "string",
|
|
2036
|
+
"oneOf": [
|
|
2037
|
+
{
|
|
2038
|
+
"enum": [
|
|
2039
|
+
"TopLeft",
|
|
2040
|
+
"Center"
|
|
2041
|
+
],
|
|
2042
|
+
"default": "TopLeft"
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2046
|
+
}
|
|
2047
|
+
]
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2050
|
+
},
|
|
2051
|
+
"state": {
|
|
2052
|
+
"description": "Represents state of an entity",
|
|
2053
|
+
"type": "string",
|
|
2054
|
+
"enum": [
|
|
2055
|
+
"Error",
|
|
2056
|
+
"Success",
|
|
2057
|
+
"Warning",
|
|
2058
|
+
"None",
|
|
2059
|
+
"Information"
|
|
2060
|
+
],
|
|
2061
|
+
"default": "None"
|
|
2062
|
+
},
|
|
2063
|
+
"field": {
|
|
2064
|
+
"type": "object",
|
|
2065
|
+
"additionalProperties": false,
|
|
2066
|
+
"properties": {
|
|
2067
|
+
"label": {
|
|
2068
|
+
"description": "Represents language-dependent label of the field",
|
|
2069
|
+
"type": "string"
|
|
2070
|
+
},
|
|
2071
|
+
"value": {
|
|
2072
|
+
"type": "string",
|
|
2073
|
+
"description": "The value of the field"
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
2077
|
+
"ContentType.List.Item": {
|
|
2078
|
+
"description": "The template for all items",
|
|
2079
|
+
"type": "object",
|
|
2080
|
+
"additionalProperties": false,
|
|
2081
|
+
"properties": {
|
|
2082
|
+
"title": {
|
|
2083
|
+
"description": "The title of the item.",
|
|
2084
|
+
"oneOf": [
|
|
2085
|
+
{
|
|
2086
|
+
"$ref": "#/definitions/field"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"type": "string"
|
|
2090
|
+
}
|
|
2091
|
+
]
|
|
2092
|
+
},
|
|
2093
|
+
"description": {
|
|
2094
|
+
"description": "The description of the item.",
|
|
2095
|
+
"oneOf": [
|
|
2096
|
+
{
|
|
2097
|
+
"$ref": "#/definitions/field"
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"type": "string"
|
|
2101
|
+
}
|
|
2102
|
+
]
|
|
2103
|
+
},
|
|
2104
|
+
"info": {
|
|
2105
|
+
"type": "object",
|
|
2106
|
+
"additionalProperties": false,
|
|
2107
|
+
"properties": {
|
|
2108
|
+
"value": {
|
|
2109
|
+
"type": "string",
|
|
2110
|
+
"description": "The value of the field"
|
|
2111
|
+
},
|
|
2112
|
+
"state": {
|
|
2113
|
+
"oneOf": [
|
|
2114
|
+
{
|
|
2115
|
+
"$ref": "#/definitions/state"
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2119
|
+
}
|
|
2120
|
+
]
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
},
|
|
2124
|
+
"highlight": {
|
|
2125
|
+
"type": "string",
|
|
2126
|
+
"description": "The highlight of the item.",
|
|
2127
|
+
"oneOf": [
|
|
2128
|
+
{
|
|
2129
|
+
"$ref": "#/definitions/state"
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2133
|
+
}
|
|
2134
|
+
]
|
|
2135
|
+
},
|
|
2136
|
+
"icon": {
|
|
2137
|
+
"$ref": "#/definitions/icon"
|
|
2138
|
+
},
|
|
2139
|
+
"actions": {
|
|
2140
|
+
"description": "Defines actions that can be applied on the item.",
|
|
2141
|
+
"type": "array",
|
|
2142
|
+
"items": {
|
|
2143
|
+
"$ref": "#/definitions/action"
|
|
2144
|
+
}
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2147
|
+
},
|
|
2148
|
+
"HeaderType.Numeric.SideIndicator": {
|
|
2149
|
+
"description": "Represents side indicator attributes which are used for additional information about the main indicator",
|
|
2150
|
+
"type": "object",
|
|
2151
|
+
"additionalProperties": false,
|
|
2152
|
+
"properties": {
|
|
2153
|
+
"title": {
|
|
2154
|
+
"description": "Represents language-dependent title of the side indicator",
|
|
2155
|
+
"type": "string"
|
|
2156
|
+
},
|
|
2157
|
+
"number": {
|
|
2158
|
+
"description": "Represents value of the side indicator",
|
|
2159
|
+
"type": "string"
|
|
2160
|
+
},
|
|
2161
|
+
"unit": {
|
|
2162
|
+
"description": "Represents unit of measurement of the side indicator",
|
|
2163
|
+
"type": "string"
|
|
2164
|
+
}
|
|
2165
|
+
}
|
|
2166
|
+
},
|
|
2167
|
+
"HeaderType.Numeric.MainIndicator": {
|
|
2168
|
+
"description": "Represents the main numeric indicator of the header",
|
|
2169
|
+
"type": "object",
|
|
2170
|
+
"additionalProperties": false,
|
|
2171
|
+
"properties": {
|
|
2172
|
+
"number": {
|
|
2173
|
+
"description": "The value of the main indicator",
|
|
2174
|
+
"type": "string"
|
|
2175
|
+
},
|
|
2176
|
+
"unit": {
|
|
2177
|
+
"description": "The unit of the main indicator",
|
|
2178
|
+
"type": "string"
|
|
2179
|
+
},
|
|
2180
|
+
"trend": {
|
|
2181
|
+
"description": "The trend indicator (direction)",
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"oneOf": [
|
|
2184
|
+
{
|
|
2185
|
+
"enum": [
|
|
2186
|
+
"Down",
|
|
2187
|
+
"None",
|
|
2188
|
+
"Up"
|
|
2189
|
+
],
|
|
2190
|
+
"default": "None"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2194
|
+
}
|
|
2195
|
+
]
|
|
2196
|
+
},
|
|
2197
|
+
"state": {
|
|
2198
|
+
"description": "The state color of the main indicator",
|
|
2199
|
+
"type": "string",
|
|
2200
|
+
"oneOf": [
|
|
2201
|
+
{
|
|
2202
|
+
"description": "The state color of the main indicator",
|
|
2203
|
+
"type": "string",
|
|
2204
|
+
"enum": [
|
|
2205
|
+
"Critical",
|
|
2206
|
+
"Error",
|
|
2207
|
+
"Good",
|
|
2208
|
+
"Neutral"
|
|
2209
|
+
],
|
|
2210
|
+
"default": "Neutral"
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2214
|
+
}
|
|
2215
|
+
]
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
"status": {
|
|
2220
|
+
"description": "Represents status attributes.",
|
|
2221
|
+
"type": "object",
|
|
2222
|
+
"additionalProperties": false,
|
|
2223
|
+
"properties": {
|
|
2224
|
+
"text": {
|
|
2225
|
+
"description": "Represents status text.",
|
|
2226
|
+
"oneOf": [
|
|
2227
|
+
{
|
|
2228
|
+
"type": "string"
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"$ref": "#/definitions/statusTextFormatter"
|
|
2232
|
+
}
|
|
2233
|
+
]
|
|
2234
|
+
}
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
2237
|
+
"icon": {
|
|
2238
|
+
"description": "Represents icon attributes",
|
|
2239
|
+
"type": "object",
|
|
2240
|
+
"additionalProperties": false,
|
|
2241
|
+
"properties": {
|
|
2242
|
+
"src": {
|
|
2243
|
+
"type": "string",
|
|
2244
|
+
"description": "Represents icon name or source URL"
|
|
2245
|
+
},
|
|
2246
|
+
"alt": {
|
|
2247
|
+
"type": "string",
|
|
2248
|
+
"description": "Alternative text for the icon"
|
|
2249
|
+
},
|
|
2250
|
+
"shape": {
|
|
2251
|
+
"type": "string",
|
|
2252
|
+
"description": "Represents the shape of the icon",
|
|
2253
|
+
"oneOf": [
|
|
2254
|
+
{
|
|
2255
|
+
"enum": [
|
|
2256
|
+
"Square",
|
|
2257
|
+
"Circle"
|
|
2258
|
+
],
|
|
2259
|
+
"default": "Square"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2263
|
+
}
|
|
2264
|
+
]
|
|
2265
|
+
},
|
|
2266
|
+
"text": {
|
|
2267
|
+
"type": "string",
|
|
2268
|
+
"description": "Text inside icon"
|
|
2269
|
+
},
|
|
2270
|
+
"backgroundColor": {
|
|
2271
|
+
"type": "string",
|
|
2272
|
+
"description": "Background color of the icon"
|
|
2273
|
+
},
|
|
2274
|
+
"color": {
|
|
2275
|
+
"type": "string",
|
|
2276
|
+
"description": "Color of the icon"
|
|
2277
|
+
}
|
|
2278
|
+
}
|
|
2279
|
+
},
|
|
2280
|
+
"action": {
|
|
2281
|
+
"description": "Represents actions that can be applied on card elements",
|
|
2282
|
+
"type": "object",
|
|
2283
|
+
"required": [
|
|
2284
|
+
"type"
|
|
2285
|
+
],
|
|
2286
|
+
"additionalProperties": false,
|
|
2287
|
+
"properties": {
|
|
2288
|
+
"type": {
|
|
2289
|
+
"description": "The type of the action",
|
|
2290
|
+
"type": "string",
|
|
2291
|
+
"oneOf": [
|
|
2292
|
+
{
|
|
2293
|
+
"enum": [
|
|
2294
|
+
"Navigation"
|
|
2295
|
+
]
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2299
|
+
}
|
|
2300
|
+
]
|
|
2301
|
+
},
|
|
2302
|
+
"enabled": {
|
|
2303
|
+
"description": "Represents the state of the action",
|
|
2304
|
+
"oneOf": [
|
|
2305
|
+
{
|
|
2306
|
+
"type": "boolean"
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2310
|
+
}
|
|
2311
|
+
]
|
|
2312
|
+
},
|
|
2313
|
+
"service": {
|
|
2314
|
+
"$ref": "#/definitions/service"
|
|
2315
|
+
},
|
|
2316
|
+
"url": {
|
|
2317
|
+
"description": "Represents the URL that will be used as navigation target if no service is provided",
|
|
2318
|
+
"type": "string"
|
|
2319
|
+
},
|
|
2320
|
+
"parameters": {
|
|
2321
|
+
"$ref": "#/definitions/parameters"
|
|
2322
|
+
},
|
|
2323
|
+
"target": {
|
|
2324
|
+
"description": "Specifies where to open the 'url', if it is provided.",
|
|
2325
|
+
"type": "string",
|
|
2326
|
+
"oneOf": [
|
|
2327
|
+
{
|
|
2328
|
+
"$ref": "#/definitions/target"
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2332
|
+
}
|
|
2333
|
+
]
|
|
2334
|
+
}
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
"HeaderType.Numeric": {
|
|
2338
|
+
"additionalProperties": false,
|
|
2339
|
+
"required": [
|
|
2340
|
+
"type"
|
|
2341
|
+
],
|
|
2342
|
+
"description": "Represents header with numeric data",
|
|
2343
|
+
"type": "object",
|
|
2344
|
+
"properties": {
|
|
2345
|
+
"type": {
|
|
2346
|
+
"description": "Represents the type of the header.",
|
|
2347
|
+
"type": "string",
|
|
2348
|
+
"enum": [
|
|
2349
|
+
"Numeric"
|
|
2350
|
+
]
|
|
2351
|
+
},
|
|
2352
|
+
"title": {
|
|
2353
|
+
"description": "Represents language-dependent title.",
|
|
2354
|
+
"type": "string"
|
|
2355
|
+
},
|
|
2356
|
+
"subTitle": {
|
|
2357
|
+
"description": "Represents language-dependent additional information to the title.",
|
|
2358
|
+
"type": "string"
|
|
2359
|
+
},
|
|
2360
|
+
"actions": {
|
|
2361
|
+
"description": "Represents description of the actions that can be applied on a part of a card.",
|
|
2362
|
+
"type": "array",
|
|
2363
|
+
"items": {
|
|
2364
|
+
"$ref": "#/definitions/action"
|
|
2365
|
+
}
|
|
2366
|
+
},
|
|
2367
|
+
"data": {
|
|
2368
|
+
"$ref": "#/definitions/data"
|
|
2369
|
+
},
|
|
2370
|
+
"unitOfMeasurement": {
|
|
2371
|
+
"description": "Represents unit of measurement for the whole numeric header.",
|
|
2372
|
+
"type": "string"
|
|
2373
|
+
},
|
|
2374
|
+
"mainIndicator": {
|
|
2375
|
+
"$ref": "#/definitions/HeaderType.Numeric.MainIndicator"
|
|
2376
|
+
},
|
|
2377
|
+
"details": {
|
|
2378
|
+
"description": "Represents additional information about the numeric header.",
|
|
2379
|
+
"type": "string"
|
|
2380
|
+
},
|
|
2381
|
+
"sideIndicators": {
|
|
2382
|
+
"description": "Multiple side indicators that relate to the main numeric indicator.",
|
|
2383
|
+
"type": "array",
|
|
2384
|
+
"maxItems": 2,
|
|
2385
|
+
"items": {
|
|
2386
|
+
"$ref": "#/definitions/HeaderType.Numeric.SideIndicator"
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
"status": {
|
|
2390
|
+
"description": "Represents the status of the card.",
|
|
2391
|
+
"$ref": "#/definitions/status"
|
|
2392
|
+
}
|
|
2393
|
+
}
|
|
2394
|
+
},
|
|
2395
|
+
"HeaderType.Default": {
|
|
2396
|
+
"additionalProperties": false,
|
|
2397
|
+
"description": "Represents default header attributes",
|
|
2398
|
+
"type": "object",
|
|
2399
|
+
"properties": {
|
|
2400
|
+
"type": {
|
|
2401
|
+
"description": "Represents the type of the header.",
|
|
2402
|
+
"type": "string",
|
|
2403
|
+
"enum": [
|
|
2404
|
+
"Default"
|
|
2405
|
+
]
|
|
2406
|
+
},
|
|
2407
|
+
"title": {
|
|
2408
|
+
"description": "Represents language-dependent title.",
|
|
2409
|
+
"type": "string"
|
|
2410
|
+
},
|
|
2411
|
+
"subTitle": {
|
|
2412
|
+
"description": "Represents language-dependent additional information to the title.",
|
|
2413
|
+
"type": "string"
|
|
2414
|
+
},
|
|
2415
|
+
"actions": {
|
|
2416
|
+
"description": "Represents description of the actions that can be applied on a part of a card.",
|
|
2417
|
+
"type": "array",
|
|
2418
|
+
"items": {
|
|
2419
|
+
"$ref": "#/definitions/action"
|
|
2420
|
+
}
|
|
2421
|
+
},
|
|
2422
|
+
"data": {
|
|
2423
|
+
"$ref": "#/definitions/data"
|
|
2424
|
+
},
|
|
2425
|
+
"icon": {
|
|
2426
|
+
"description": "Represents the icon of the card.",
|
|
2427
|
+
"$ref": "#/definitions/icon"
|
|
2428
|
+
},
|
|
2429
|
+
"status": {
|
|
2430
|
+
"description": "Represents the status of the card.",
|
|
2431
|
+
"$ref": "#/definitions/status"
|
|
2432
|
+
}
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2435
|
+
"ContentType.Object": {
|
|
2436
|
+
"description": "Represents object content attributes",
|
|
2437
|
+
"type": "object",
|
|
2438
|
+
"additionalProperties": false,
|
|
2439
|
+
"properties": {
|
|
2440
|
+
"data": {
|
|
2441
|
+
"$ref": "#/definitions/data"
|
|
2442
|
+
},
|
|
2443
|
+
"groups": {
|
|
2444
|
+
"description": "Represents groups of information for an object",
|
|
2445
|
+
"type": "array",
|
|
2446
|
+
"items": {
|
|
2447
|
+
"$ref": "#/definitions/ContentType.Object.Group"
|
|
2448
|
+
}
|
|
2449
|
+
},
|
|
2450
|
+
"actions": {
|
|
2451
|
+
"description": "Defines actions that can be applied on the content.",
|
|
2452
|
+
"type": "array",
|
|
2453
|
+
"items": {
|
|
2454
|
+
"$ref": "#/definitions/action"
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
"ContentType.Table": {
|
|
2460
|
+
"description": "Represents table content attributes",
|
|
2461
|
+
"type": "object",
|
|
2462
|
+
"additionalProperties": false,
|
|
2463
|
+
"properties": {
|
|
2464
|
+
"data": {
|
|
2465
|
+
"$ref": "#/definitions/data"
|
|
2466
|
+
},
|
|
2467
|
+
"row": {
|
|
2468
|
+
"description": "The template for all rows",
|
|
2469
|
+
"type": "object",
|
|
2470
|
+
"additionalProperties": false,
|
|
2471
|
+
"properties": {
|
|
2472
|
+
"columns": {
|
|
2473
|
+
"description": "Defines the columns attributes.",
|
|
2474
|
+
"type": "array",
|
|
2475
|
+
"items": {
|
|
2476
|
+
"$ref": "#/definitions/ContentType.Table.Column"
|
|
2477
|
+
}
|
|
2478
|
+
},
|
|
2479
|
+
"actions": {
|
|
2480
|
+
"description": "Defines actions that can be applied on the item.",
|
|
2481
|
+
"type": "array",
|
|
2482
|
+
"items": {
|
|
2483
|
+
"$ref": "#/definitions/action"
|
|
2484
|
+
}
|
|
2485
|
+
}
|
|
2486
|
+
}
|
|
2487
|
+
},
|
|
2488
|
+
"maxItems": {
|
|
2489
|
+
"description": "Represents number of items",
|
|
2490
|
+
"oneOf": [
|
|
2491
|
+
{
|
|
2492
|
+
"type": "number"
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2496
|
+
}
|
|
2497
|
+
]
|
|
2498
|
+
}
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
"ContentType.Timeline": {
|
|
2502
|
+
"description": "Represents time related content",
|
|
2503
|
+
"type": "object",
|
|
2504
|
+
"additionalProperties": false,
|
|
2505
|
+
"properties": {
|
|
2506
|
+
"data": {
|
|
2507
|
+
"$ref": "#/definitions/data"
|
|
2508
|
+
},
|
|
2509
|
+
"item": {
|
|
2510
|
+
"description": "Defines the timeline item",
|
|
2511
|
+
"$ref": "#/definitions/ContentType.Timeline.Item"
|
|
2512
|
+
},
|
|
2513
|
+
"maxItems": {
|
|
2514
|
+
"description": "Represents number of items",
|
|
2515
|
+
"oneOf": [
|
|
2516
|
+
{
|
|
2517
|
+
"type": "number"
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2521
|
+
}
|
|
2522
|
+
]
|
|
2523
|
+
}
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2526
|
+
"ContentType.Analytical": {
|
|
2527
|
+
"description": "Represents analytical content attributes",
|
|
2528
|
+
"type": "object",
|
|
2529
|
+
"additionalProperties": false,
|
|
2530
|
+
"properties": {
|
|
2531
|
+
"data": {
|
|
2532
|
+
"$ref": "#/definitions/data"
|
|
2533
|
+
},
|
|
2534
|
+
"chartType": {
|
|
2535
|
+
"description": "Describes the type of the chart",
|
|
2536
|
+
"type": "string",
|
|
2537
|
+
"oneOf": [
|
|
2538
|
+
{
|
|
2539
|
+
"enum": [
|
|
2540
|
+
"Line",
|
|
2541
|
+
"StackedColumn",
|
|
2542
|
+
"StackedBar",
|
|
2543
|
+
"Donut"
|
|
2544
|
+
]
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2548
|
+
}
|
|
2549
|
+
]
|
|
2550
|
+
},
|
|
2551
|
+
"legend": {
|
|
2552
|
+
"$ref": "#/definitions/ContentType.Analytical.Legend"
|
|
2553
|
+
},
|
|
2554
|
+
"plotArea": {
|
|
2555
|
+
"description": "Describes the plotArea properties",
|
|
2556
|
+
"type": "object",
|
|
2557
|
+
"additionalProperties": false,
|
|
2558
|
+
"properties": {
|
|
2559
|
+
"dataLabel": {
|
|
2560
|
+
"$ref": "#/definitions/ContentType.Analytical.DataLabel"
|
|
2561
|
+
},
|
|
2562
|
+
"categoryAxisText": {
|
|
2563
|
+
"$ref": "#/definitions/ContentType.Analytical.AxisText"
|
|
2564
|
+
},
|
|
2565
|
+
"valueAxisText": {
|
|
2566
|
+
"$ref": "#/definitions/ContentType.Analytical.AxisText"
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2570
|
+
"title": {
|
|
2571
|
+
"description": "Represents title attributes",
|
|
2572
|
+
"type": "object",
|
|
2573
|
+
"additionalProperties": false,
|
|
2574
|
+
"properties": {
|
|
2575
|
+
"visible": {
|
|
2576
|
+
"description": "Represents the visibility state of the title",
|
|
2577
|
+
"oneOf": [
|
|
2578
|
+
{
|
|
2579
|
+
"type": "boolean",
|
|
2580
|
+
"default": true
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2584
|
+
}
|
|
2585
|
+
]
|
|
2586
|
+
},
|
|
2587
|
+
"text": {
|
|
2588
|
+
"description": "Represents title text",
|
|
2589
|
+
"type": "string"
|
|
2590
|
+
},
|
|
2591
|
+
"alignment": {
|
|
2592
|
+
"description": "Represents the title alignment",
|
|
2593
|
+
"oneOf": [
|
|
2594
|
+
{
|
|
2595
|
+
"enum": [
|
|
2596
|
+
"Left",
|
|
2597
|
+
"Center",
|
|
2598
|
+
"Right"
|
|
2599
|
+
],
|
|
2600
|
+
"default": "Center"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2604
|
+
}
|
|
2605
|
+
]
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2608
|
+
},
|
|
2609
|
+
"measureAxis": {
|
|
2610
|
+
"description": "Represents the value set for measure axis",
|
|
2611
|
+
"type": "string"
|
|
2612
|
+
},
|
|
2613
|
+
"dimensionAxis": {
|
|
2614
|
+
"description": "Represents the value set for dimension axis",
|
|
2615
|
+
"type": "string"
|
|
2616
|
+
},
|
|
2617
|
+
"dimensions": {
|
|
2618
|
+
"type": "array",
|
|
2619
|
+
"items": {
|
|
2620
|
+
"$ref": "#/definitions/field"
|
|
2621
|
+
}
|
|
2622
|
+
},
|
|
2623
|
+
"measures": {
|
|
2624
|
+
"type": "array",
|
|
2625
|
+
"items": {
|
|
2626
|
+
"$ref": "#/definitions/field"
|
|
2627
|
+
}
|
|
2628
|
+
},
|
|
2629
|
+
"actions": {
|
|
2630
|
+
"description": "Defines actions that can be applied on the content.",
|
|
2631
|
+
"type": "array",
|
|
2632
|
+
"items": {
|
|
2633
|
+
"$ref": "#/definitions/action"
|
|
2634
|
+
}
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"ContentType.List": {
|
|
2639
|
+
"description": "Represents list content attributes",
|
|
2640
|
+
"type": "object",
|
|
2641
|
+
"additionalProperties": false,
|
|
2642
|
+
"properties": {
|
|
2643
|
+
"data": {
|
|
2644
|
+
"$ref": "#/definitions/data"
|
|
2645
|
+
},
|
|
2646
|
+
"item": {
|
|
2647
|
+
"$ref": "#/definitions/ContentType.List.Item"
|
|
2648
|
+
},
|
|
2649
|
+
"maxItems": {
|
|
2650
|
+
"description": "Represents number of items",
|
|
2651
|
+
"oneOf": [
|
|
2652
|
+
{
|
|
2653
|
+
"type": "number"
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2657
|
+
}
|
|
2658
|
+
]
|
|
2659
|
+
}
|
|
2660
|
+
}
|
|
2661
|
+
},
|
|
2662
|
+
"HeaderType": {
|
|
2663
|
+
"oneOf": [
|
|
2664
|
+
{
|
|
2665
|
+
"$ref": "#/definitions/HeaderType.Default"
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
"$ref": "#/definitions/HeaderType.Numeric"
|
|
2669
|
+
}
|
|
2670
|
+
]
|
|
2671
|
+
},
|
|
2672
|
+
"simpleBinding": {
|
|
2673
|
+
"type": "string",
|
|
2674
|
+
"pattern": "\\{.*\\}"
|
|
2675
|
+
},
|
|
2676
|
+
"data": {
|
|
2677
|
+
"description": "Represents request and response attributes",
|
|
2678
|
+
"type": "object",
|
|
2679
|
+
"additionalProperties": false,
|
|
2680
|
+
"properties": {
|
|
2681
|
+
"request": {
|
|
2682
|
+
"$ref": "#/definitions/request"
|
|
2683
|
+
},
|
|
2684
|
+
"path": {
|
|
2685
|
+
"description": "The path from the JSON to be used as root",
|
|
2686
|
+
"type": "string",
|
|
2687
|
+
"default": "/",
|
|
2688
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-/|\\@\\#]*$"
|
|
2689
|
+
},
|
|
2690
|
+
"json": {
|
|
2691
|
+
"description": "The data to be used directly. Without making requests.",
|
|
2692
|
+
"type": [
|
|
2693
|
+
"object",
|
|
2694
|
+
"array"
|
|
2695
|
+
],
|
|
2696
|
+
"additionalProperties": true
|
|
2697
|
+
},
|
|
2698
|
+
"service": {
|
|
2699
|
+
"$ref": "#/definitions/service"
|
|
2700
|
+
},
|
|
2701
|
+
"updateInterval": {
|
|
2702
|
+
"description": "Represents interval in seconds, after which a new data request will be triggered.",
|
|
2703
|
+
"oneOf": [
|
|
2704
|
+
{
|
|
2705
|
+
"type": "number"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2709
|
+
}
|
|
2710
|
+
]
|
|
2711
|
+
}
|
|
2712
|
+
}
|
|
2713
|
+
},
|
|
2714
|
+
"definingRequest": {
|
|
2715
|
+
"type": "object",
|
|
2716
|
+
"additionalProperties": false,
|
|
2717
|
+
"required": [
|
|
2718
|
+
"dataSource",
|
|
2719
|
+
"path"
|
|
2720
|
+
],
|
|
2721
|
+
"properties": {
|
|
2722
|
+
"dataSource": {
|
|
2723
|
+
"description": "Represents reference to dataSource under sap.app",
|
|
2724
|
+
"type": "string"
|
|
2725
|
+
},
|
|
2726
|
+
"path": {
|
|
2727
|
+
"description": "Represents path to the title collection",
|
|
2728
|
+
"type": "string"
|
|
2729
|
+
},
|
|
2730
|
+
"retrieveStreams": {
|
|
2731
|
+
"description": "Represents indicator whether streams should be retrieved",
|
|
2732
|
+
"type": "boolean",
|
|
2733
|
+
"default": false
|
|
2734
|
+
}
|
|
2735
|
+
}
|
|
2736
|
+
},
|
|
2737
|
+
"levelsDef": {
|
|
2738
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
2739
|
+
"type": "array"
|
|
2740
|
+
},
|
|
2741
|
+
"resizableLayoutVariantCardProperties": {
|
|
2742
|
+
"required": [
|
|
2743
|
+
"col",
|
|
2744
|
+
"row",
|
|
2745
|
+
"colSpan",
|
|
2746
|
+
"rowSpan"
|
|
2747
|
+
],
|
|
2748
|
+
"description": "Represents the card properties is a layout variant",
|
|
2749
|
+
"type": "object",
|
|
2750
|
+
"additionalProperties": false,
|
|
2751
|
+
"properties": {
|
|
2752
|
+
"col": {
|
|
2753
|
+
"description": "Represents the grid column",
|
|
2754
|
+
"type": "integer"
|
|
2755
|
+
},
|
|
2756
|
+
"row": {
|
|
2757
|
+
"description": "Represents the grid row",
|
|
2758
|
+
"type": "integer"
|
|
2759
|
+
},
|
|
2760
|
+
"colSpan": {
|
|
2761
|
+
"description": "Represents the column span",
|
|
2762
|
+
"type": "integer"
|
|
2763
|
+
},
|
|
2764
|
+
"rowSpan": {
|
|
2765
|
+
"description": "Represents the row span",
|
|
2766
|
+
"type": "integer"
|
|
2767
|
+
},
|
|
2768
|
+
"visible": {
|
|
2769
|
+
"description": "Represents the visibility of the card",
|
|
2770
|
+
"type": "boolean",
|
|
2771
|
+
"default": true
|
|
2772
|
+
}
|
|
2773
|
+
}
|
|
2774
|
+
},
|
|
2775
|
+
"customActionsSetting": {
|
|
2776
|
+
"description": "Represents the properties for the custom actions in the Quick View Cards",
|
|
2777
|
+
"type": "object",
|
|
2778
|
+
"additionalProperties": true,
|
|
2779
|
+
"properties": {
|
|
2780
|
+
"text": {
|
|
2781
|
+
"description": "Text displayed for extended actions in Quick View",
|
|
2782
|
+
"type": "string",
|
|
2783
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
2784
|
+
},
|
|
2785
|
+
"press": {
|
|
2786
|
+
"description": "Name of the press handler for extended actions in Quick View",
|
|
2787
|
+
"type": "string",
|
|
2788
|
+
"pattern": "^[^\\W\\.\\-][\\w\\.\\-]*$"
|
|
2789
|
+
},
|
|
2790
|
+
"position": {
|
|
2791
|
+
"description": "Position of extended actions in Quick View",
|
|
2792
|
+
"type": "integer"
|
|
2793
|
+
}
|
|
2794
|
+
}
|
|
2795
|
+
},
|
|
2796
|
+
"timeAxisDef": {
|
|
2797
|
+
"description": "Represents the configuration to customize the time axis",
|
|
2798
|
+
"type": "object",
|
|
2799
|
+
"properties": {
|
|
2800
|
+
"levels": {
|
|
2801
|
+
"$ref": "#/definitions/levelsDef"
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2804
|
+
},
|
|
2805
|
+
"plotAreaDef": {
|
|
2806
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
2807
|
+
"type": "object",
|
|
2808
|
+
"additionalProperties": false,
|
|
2809
|
+
"properties": {
|
|
2810
|
+
"isSmoothed": {
|
|
2811
|
+
"description": "Represents whether smoother curves are required or not",
|
|
2812
|
+
"type": "boolean",
|
|
2813
|
+
"default": false
|
|
2814
|
+
},
|
|
2815
|
+
"markerSize": {
|
|
2816
|
+
"description": "Represents the size of the markers in scatter plots",
|
|
2817
|
+
"type": "integer"
|
|
2818
|
+
},
|
|
2819
|
+
"dataLabel": {
|
|
2820
|
+
"type": "object",
|
|
2821
|
+
"description": "dataLabel is a parent property that defines other properties for type",
|
|
2822
|
+
"additionalProperties": false,
|
|
2823
|
+
"properties": {
|
|
2824
|
+
"type": {
|
|
2825
|
+
"description": "Defines whether to display percentage values or actual counts in the donut chart",
|
|
2826
|
+
"type": "string",
|
|
2827
|
+
"enum": [
|
|
2828
|
+
"value",
|
|
2829
|
+
"percentage"
|
|
2830
|
+
],
|
|
2831
|
+
"default": "value"
|
|
2832
|
+
}
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
}
|
|
2836
|
+
},
|
|
2837
|
+
"objectStreamCardsSettingsDef": {
|
|
2838
|
+
"description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards",
|
|
2839
|
+
"type": "object",
|
|
2840
|
+
"additionalProperties": true,
|
|
2841
|
+
"properties": {
|
|
2842
|
+
"showFirstActionInFooter": {
|
|
2843
|
+
"description": "Represents the flag to show first action in footer of the Quickview cards",
|
|
2844
|
+
"type": "boolean",
|
|
2845
|
+
"default": false
|
|
2846
|
+
},
|
|
2847
|
+
"customActions": {
|
|
2848
|
+
"description": "Represents the custom actions in the Quick View Cards",
|
|
2849
|
+
"type": "array",
|
|
2850
|
+
"minItems": 1,
|
|
2851
|
+
"items": {
|
|
2852
|
+
"$ref": "#/definitions/customActionsSetting"
|
|
2853
|
+
}
|
|
2854
|
+
}
|
|
2855
|
+
}
|
|
2856
|
+
},
|
|
2857
|
+
"defaultSpanDef": {
|
|
2858
|
+
"description": "Represents the card default grid size in columns and rows",
|
|
2859
|
+
"oneOf": [
|
|
2860
|
+
{
|
|
2861
|
+
"type": "object",
|
|
2862
|
+
"additionalProperties": false,
|
|
2863
|
+
"required": [
|
|
2864
|
+
"cols",
|
|
2865
|
+
"rows"
|
|
2866
|
+
],
|
|
2867
|
+
"properties": {
|
|
2868
|
+
"cols": {
|
|
2869
|
+
"description": "Represents the number of the number of grid columns",
|
|
2870
|
+
"type": "integer"
|
|
2871
|
+
},
|
|
2872
|
+
"rows": {
|
|
2873
|
+
"description": "Represents the number of the number of grid rows",
|
|
2874
|
+
"type": "integer"
|
|
2875
|
+
},
|
|
2876
|
+
"showOnlyHeader": {
|
|
2877
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
2878
|
+
"type": "boolean",
|
|
2879
|
+
"default": false
|
|
2880
|
+
},
|
|
2881
|
+
"minimumTitleRow": {
|
|
2882
|
+
"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)",
|
|
2883
|
+
"type": "integer",
|
|
2884
|
+
"default": 1,
|
|
2885
|
+
"pattern": "^[1-3]$"
|
|
2886
|
+
},
|
|
2887
|
+
"minimumSubTitleRow": {
|
|
2888
|
+
"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)",
|
|
2889
|
+
"type": "integer",
|
|
2890
|
+
"default": 1,
|
|
2891
|
+
"pattern": "^[12]$"
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
"type": "string",
|
|
2897
|
+
"enum": [
|
|
2898
|
+
"auto"
|
|
2899
|
+
]
|
|
2900
|
+
}
|
|
2901
|
+
]
|
|
2902
|
+
},
|
|
2903
|
+
"tab_setting": {
|
|
2904
|
+
"description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
|
|
2905
|
+
"type": "object",
|
|
2906
|
+
"additionalProperties": true,
|
|
2907
|
+
"properties": {
|
|
2908
|
+
"annotationPath": {
|
|
2909
|
+
"description": "Represents the annotation path",
|
|
2910
|
+
"type": "string",
|
|
2911
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2912
|
+
},
|
|
2913
|
+
"selectionAnnotationPath": {
|
|
2914
|
+
"description": "Represents the selection annotation path",
|
|
2915
|
+
"type": "string",
|
|
2916
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2917
|
+
},
|
|
2918
|
+
"chartAnnotationPath": {
|
|
2919
|
+
"description": "Represents the chart annotation path",
|
|
2920
|
+
"type": "string",
|
|
2921
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2922
|
+
},
|
|
2923
|
+
"presentationAnnotationPath": {
|
|
2924
|
+
"description": "Represents the presentation annotation path",
|
|
2925
|
+
"type": "string",
|
|
2926
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2927
|
+
},
|
|
2928
|
+
"dataPointAnnotationPath": {
|
|
2929
|
+
"description": "Represents the data point annotation path",
|
|
2930
|
+
"type": "string",
|
|
2931
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2932
|
+
},
|
|
2933
|
+
"identificationAnnotationPath": {
|
|
2934
|
+
"description": "Represents the identification annotation path",
|
|
2935
|
+
"type": "string",
|
|
2936
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2937
|
+
},
|
|
2938
|
+
"dynamicSubtitleAnnotationPath": {
|
|
2939
|
+
"description": "Represents the dynamic subtitle annotation path",
|
|
2940
|
+
"type": "string",
|
|
2941
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
2942
|
+
},
|
|
2943
|
+
"value": {
|
|
2944
|
+
"description": "Represents the drop down value to be shown",
|
|
2945
|
+
"type": "string"
|
|
2946
|
+
},
|
|
2947
|
+
"chartProperties": {
|
|
2948
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
2949
|
+
"type": "object",
|
|
2950
|
+
"additionalProperties": false,
|
|
2951
|
+
"properties": {
|
|
2952
|
+
"plotArea": {
|
|
2953
|
+
"$ref": "#/definitions/plotAreaDef"
|
|
2954
|
+
},
|
|
2955
|
+
"timeAxis": {
|
|
2956
|
+
"$ref": "#/definitions/timeAxisDef"
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
},
|
|
2960
|
+
"colorPalette": {
|
|
2961
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
2962
|
+
"oneOf": [
|
|
2963
|
+
{
|
|
2964
|
+
"type": "array",
|
|
2965
|
+
"items": {
|
|
2966
|
+
"type": "object"
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"type": "object"
|
|
2971
|
+
}
|
|
2972
|
+
]
|
|
2973
|
+
}
|
|
2974
|
+
}
|
|
2975
|
+
},
|
|
2976
|
+
"card_setting": {
|
|
2977
|
+
"description": "Represents the card specific properties - properties that are passed to the card",
|
|
2978
|
+
"type": "object",
|
|
2979
|
+
"required": [
|
|
2980
|
+
"title"
|
|
2981
|
+
],
|
|
2982
|
+
"additionalProperties": true,
|
|
2983
|
+
"properties": {
|
|
2984
|
+
"category": {
|
|
2985
|
+
"description": "Represents the category of the card- used in the card header",
|
|
2986
|
+
"type": "string",
|
|
2987
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
2988
|
+
},
|
|
2989
|
+
"itemText": {
|
|
2990
|
+
"description": "Represents the user defined string in placeholder card",
|
|
2991
|
+
"type": "string",
|
|
2992
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
2993
|
+
},
|
|
2994
|
+
"title": {
|
|
2995
|
+
"description": "Represents language-dependent title of the card - used in the card header",
|
|
2996
|
+
"type": "string",
|
|
2997
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
2998
|
+
},
|
|
2999
|
+
"subTitle": {
|
|
3000
|
+
"description": "Represents language-dependent subtitle of the card - used in the card header",
|
|
3001
|
+
"type": "string",
|
|
3002
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
3003
|
+
},
|
|
3004
|
+
"valueSelectionInfo": {
|
|
3005
|
+
"description": "Represents things like people, number of items",
|
|
3006
|
+
"type": "string",
|
|
3007
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
3008
|
+
},
|
|
3009
|
+
"entitySet": {
|
|
3010
|
+
"description": "Represents the entity set that will be displayed in this card",
|
|
3011
|
+
"type": "string",
|
|
3012
|
+
"pattern": "^[a-zA-Z0-9\\_]+$"
|
|
3013
|
+
},
|
|
3014
|
+
"staticContent": {
|
|
3015
|
+
"description": "Represents the static content that will be displayed in this card",
|
|
3016
|
+
"type": "array",
|
|
3017
|
+
"items": {
|
|
3018
|
+
"type": "object"
|
|
3019
|
+
}
|
|
3020
|
+
},
|
|
3021
|
+
"listFlavor": {
|
|
3022
|
+
"description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard",
|
|
3023
|
+
"type": "string",
|
|
3024
|
+
"enum": [
|
|
3025
|
+
"standard",
|
|
3026
|
+
"bar",
|
|
3027
|
+
"carousel"
|
|
3028
|
+
]
|
|
3029
|
+
},
|
|
3030
|
+
"listType": {
|
|
3031
|
+
"description": "Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card",
|
|
3032
|
+
"type": "string",
|
|
3033
|
+
"enum": [
|
|
3034
|
+
"extended",
|
|
3035
|
+
"condensed"
|
|
3036
|
+
]
|
|
3037
|
+
},
|
|
3038
|
+
"sortBy": {
|
|
3039
|
+
"description": "Represents the sort key for the entity set",
|
|
3040
|
+
"type": "string"
|
|
3041
|
+
},
|
|
3042
|
+
"sortOrder": {
|
|
3043
|
+
"description": "Represents the sort order for the entity set",
|
|
3044
|
+
"type": "string",
|
|
3045
|
+
"enum": [
|
|
3046
|
+
"ascending",
|
|
3047
|
+
"descending"
|
|
3048
|
+
]
|
|
3049
|
+
},
|
|
3050
|
+
"annotationPath": {
|
|
3051
|
+
"description": "Represents the annotation path",
|
|
3052
|
+
"type": "string",
|
|
3053
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3054
|
+
},
|
|
3055
|
+
"selectionAnnotationPath": {
|
|
3056
|
+
"description": "Represents the selection annotation path",
|
|
3057
|
+
"type": "string",
|
|
3058
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3059
|
+
},
|
|
3060
|
+
"chartAnnotationPath": {
|
|
3061
|
+
"description": "Represents the chart annotation path",
|
|
3062
|
+
"type": "string",
|
|
3063
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3064
|
+
},
|
|
3065
|
+
"presentationAnnotationPath": {
|
|
3066
|
+
"description": "Represents the presentation annotation path",
|
|
3067
|
+
"type": "string",
|
|
3068
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3069
|
+
},
|
|
3070
|
+
"dataPointAnnotationPath": {
|
|
3071
|
+
"description": "Represents the data point annotation path",
|
|
3072
|
+
"type": "string",
|
|
3073
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3074
|
+
},
|
|
3075
|
+
"identificationAnnotationPath": {
|
|
3076
|
+
"description": "Represents the identification annotation path",
|
|
3077
|
+
"type": "string",
|
|
3078
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#\\,]*$"
|
|
3079
|
+
},
|
|
3080
|
+
"kpiAnnotationPath": {
|
|
3081
|
+
"description": "Represents the KPI annotation path",
|
|
3082
|
+
"type": "string",
|
|
3083
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3084
|
+
},
|
|
3085
|
+
"selectionPresentationAnnotationPath": {
|
|
3086
|
+
"description": "Represents the selection presentation annotation path",
|
|
3087
|
+
"type": "string",
|
|
3088
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3089
|
+
},
|
|
3090
|
+
"dynamicSubtitleAnnotationPath": {
|
|
3091
|
+
"description": "Represents the dynamic subtitle annotation path",
|
|
3092
|
+
"type": "string",
|
|
3093
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3094
|
+
},
|
|
3095
|
+
"ignoreSapText": {
|
|
3096
|
+
"description": "Represents the flag to indicate priority of number formatting over sap text",
|
|
3097
|
+
"type": "boolean",
|
|
3098
|
+
"default": false
|
|
3099
|
+
},
|
|
3100
|
+
"defaultSpan": {
|
|
3101
|
+
"$ref": "#/definitions/defaultSpanDef"
|
|
3102
|
+
},
|
|
3103
|
+
"requireAppAuthorization": {
|
|
3104
|
+
"description": "Represents the cards for which authorization is required",
|
|
3105
|
+
"type": "string"
|
|
3106
|
+
},
|
|
3107
|
+
"objectStreamCardsSettings": {
|
|
3108
|
+
"$ref": "#/definitions/objectStreamCardsSettingsDef"
|
|
3109
|
+
},
|
|
3110
|
+
"enableLocaleCurrencyFormatting": {
|
|
3111
|
+
"description": "Represents the flag to indicate the use of object number/smart field",
|
|
3112
|
+
"type": "boolean",
|
|
3113
|
+
"default": false
|
|
3114
|
+
},
|
|
3115
|
+
"navigation": {
|
|
3116
|
+
"description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards",
|
|
3117
|
+
"type": "string",
|
|
3118
|
+
"enum": [
|
|
3119
|
+
"dataPointNav",
|
|
3120
|
+
"chartNav",
|
|
3121
|
+
"headerNav",
|
|
3122
|
+
"noHeaderNav"
|
|
3123
|
+
]
|
|
3124
|
+
},
|
|
3125
|
+
"showFilterInHeader": {
|
|
3126
|
+
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application",
|
|
3127
|
+
"type": "boolean",
|
|
3128
|
+
"default": false
|
|
3129
|
+
},
|
|
3130
|
+
"showSortingInHeader": {
|
|
3131
|
+
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application",
|
|
3132
|
+
"type": "boolean",
|
|
3133
|
+
"default": false
|
|
3134
|
+
},
|
|
3135
|
+
"imageSupported": {
|
|
3136
|
+
"description": "Flag for enabling images in a condensed list card",
|
|
3137
|
+
"type": "boolean",
|
|
3138
|
+
"default": false
|
|
3139
|
+
},
|
|
3140
|
+
"showLineItemDetail": {
|
|
3141
|
+
"description": "Flag for show line item detail in list and table card",
|
|
3142
|
+
"type": "boolean",
|
|
3143
|
+
"default": false
|
|
3144
|
+
},
|
|
3145
|
+
"showLabelText": {
|
|
3146
|
+
"description": "This property is responsible for showing and hiding text labels on the geo spots",
|
|
3147
|
+
"type": "boolean",
|
|
3148
|
+
"default": false
|
|
3149
|
+
},
|
|
3150
|
+
"customParams": {
|
|
3151
|
+
"description": "This property is responsible for passing custom parameters present in the entity set to the navigating application",
|
|
3152
|
+
"type": "string",
|
|
3153
|
+
"pattern": "^[^\\W\\.\\-][\\w\\.\\-]*$"
|
|
3154
|
+
},
|
|
3155
|
+
"chartProperties": {
|
|
3156
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
3157
|
+
"type": "object",
|
|
3158
|
+
"additionalProperties": false,
|
|
3159
|
+
"properties": {
|
|
3160
|
+
"plotArea": {
|
|
3161
|
+
"$ref": "#/definitions/plotAreaDef"
|
|
3162
|
+
},
|
|
3163
|
+
"timeAxis": {
|
|
3164
|
+
"$ref": "#/definitions/timeAxisDef"
|
|
3165
|
+
}
|
|
3166
|
+
}
|
|
3167
|
+
},
|
|
3168
|
+
"colorPalette": {
|
|
3169
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
3170
|
+
"oneOf": [
|
|
3171
|
+
{
|
|
3172
|
+
"type": "array",
|
|
3173
|
+
"items": {
|
|
3174
|
+
"type": "object"
|
|
3175
|
+
}
|
|
3176
|
+
},
|
|
3177
|
+
{
|
|
3178
|
+
"type": "object"
|
|
3179
|
+
}
|
|
3180
|
+
]
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
},
|
|
3184
|
+
"resizableLayoutVariant": {
|
|
3185
|
+
"description": "Represents the resizable layout variant",
|
|
3186
|
+
"type": "object",
|
|
3187
|
+
"additionalProperties": false,
|
|
3188
|
+
"patternProperties": {
|
|
3189
|
+
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
3190
|
+
"$ref": "#/definitions/resizableLayoutVariantCardProperties"
|
|
3191
|
+
}
|
|
3192
|
+
}
|
|
3193
|
+
},
|
|
3194
|
+
"card": {
|
|
3195
|
+
"description": "Represents the card attributes",
|
|
3196
|
+
"type": "object",
|
|
3197
|
+
"required": [
|
|
3198
|
+
"template"
|
|
3199
|
+
],
|
|
3200
|
+
"additionalProperties": false,
|
|
3201
|
+
"properties": {
|
|
3202
|
+
"sequencePos": {
|
|
3203
|
+
"description": "Represents the position of the card in the sequence",
|
|
3204
|
+
"type": "integer"
|
|
3205
|
+
},
|
|
3206
|
+
"model": {
|
|
3207
|
+
"description": "Represents the model for the card",
|
|
3208
|
+
"type": "string",
|
|
3209
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
3210
|
+
},
|
|
3211
|
+
"template": {
|
|
3212
|
+
"description": "Represents the card component path to use for this card",
|
|
3213
|
+
"type": "string",
|
|
3214
|
+
"pattern": "^[a-zA-Z0-9\\.]+$"
|
|
3215
|
+
},
|
|
3216
|
+
"settings": {
|
|
3217
|
+
"$ref": "#/definitions/card_setting"
|
|
3218
|
+
},
|
|
3219
|
+
"tabs": {
|
|
3220
|
+
"description": "Represents the card with view switch control",
|
|
3221
|
+
"type": "array",
|
|
3222
|
+
"minItems": 1,
|
|
3223
|
+
"items": {
|
|
3224
|
+
"$ref": "#/definitions/tab_setting"
|
|
3225
|
+
}
|
|
3226
|
+
}
|
|
3227
|
+
}
|
|
3228
|
+
},
|
|
3229
|
+
"defaultLayoutType_def": {
|
|
3230
|
+
"type": "string"
|
|
3231
|
+
},
|
|
3232
|
+
"implementingComponent_def": {
|
|
3233
|
+
"type": "object",
|
|
3234
|
+
"additionalProperties": false,
|
|
3235
|
+
"required": [
|
|
3236
|
+
"componentName"
|
|
3237
|
+
],
|
|
3238
|
+
"properties": {
|
|
3239
|
+
"componentName": {
|
|
3240
|
+
"description": "Represents the name of the component to be loaded inside the canvas",
|
|
3241
|
+
"type": "string",
|
|
3242
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
3243
|
+
},
|
|
3244
|
+
"binding": {
|
|
3245
|
+
"description": " Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute ",
|
|
3246
|
+
"type": "string"
|
|
3247
|
+
},
|
|
3248
|
+
"settings": {
|
|
3249
|
+
"$ref": "#/definitions/component_setting_def"
|
|
3250
|
+
},
|
|
3251
|
+
"pages": {
|
|
3252
|
+
"type": "object",
|
|
3253
|
+
"additionalProperties": false,
|
|
3254
|
+
"patternProperties": {
|
|
3255
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
3256
|
+
"$ref": "#/definitions/pages_map"
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
}
|
|
3261
|
+
},
|
|
3262
|
+
"routingSpec_def": {
|
|
3263
|
+
"type": "object",
|
|
3264
|
+
"additionalProperties": false,
|
|
3265
|
+
"required": [
|
|
3266
|
+
"routeName"
|
|
3267
|
+
],
|
|
3268
|
+
"properties": {
|
|
3269
|
+
"routeName": {
|
|
3270
|
+
"description": "Represents the name of the route",
|
|
3271
|
+
"type": "string"
|
|
3272
|
+
},
|
|
3273
|
+
"noOData": {
|
|
3274
|
+
"description": "Represents the switch to indicate, that this route is not related to the OData service",
|
|
3275
|
+
"type": "boolean"
|
|
3276
|
+
},
|
|
3277
|
+
"binding": {
|
|
3278
|
+
"description": "Represents the binding string to indicate, how the page should be bound relative to the predecessor page or absolute",
|
|
3279
|
+
"type": "string"
|
|
3280
|
+
},
|
|
3281
|
+
"headerTitle": {
|
|
3282
|
+
"description": "Represents the the title to be shown on the page",
|
|
3283
|
+
"type": "string"
|
|
3284
|
+
},
|
|
3285
|
+
"typeImageUrl": {
|
|
3286
|
+
"description": "Represents the URL pointing to an icon, that will be shown in the navigation menu additional to the title to represent the page",
|
|
3287
|
+
"type": "string"
|
|
3288
|
+
},
|
|
3289
|
+
"noKey": {
|
|
3290
|
+
"description": "Represents the switch to indicate, whether this route is reached via a 1:1 navigation or a 1:n navigation",
|
|
3291
|
+
"type": "boolean"
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
"navigation_def": {
|
|
3296
|
+
"description": "Represents ...",
|
|
3297
|
+
"type": "object",
|
|
3298
|
+
"additionalProperties": false,
|
|
3299
|
+
"minProperties": 1,
|
|
3300
|
+
"properties": {
|
|
3301
|
+
"display": {
|
|
3302
|
+
"description": "Represents an action triggered by the user on UI: the navigation to display an object",
|
|
3303
|
+
"$ref": "#/definitions/action_prop_def"
|
|
3304
|
+
},
|
|
3305
|
+
"create": {
|
|
3306
|
+
"description": "Represents an action triggered by the user on UI: the navigation to create an object",
|
|
3307
|
+
"$ref": "#/definitions/action_prop_def"
|
|
3308
|
+
},
|
|
3309
|
+
"edit": {
|
|
3310
|
+
"description": "Represents an action triggered by the user on UI: the navigation to edit an object",
|
|
3311
|
+
"$ref": "#/definitions/action_prop_def"
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
},
|
|
3315
|
+
"component_def": {
|
|
3316
|
+
"type": "object",
|
|
3317
|
+
"additionalProperties": false,
|
|
3318
|
+
"required": [
|
|
3319
|
+
"name"
|
|
3320
|
+
],
|
|
3321
|
+
"properties": {
|
|
3322
|
+
"name": {
|
|
3323
|
+
"description": "The name of the component",
|
|
3324
|
+
"type": "string",
|
|
3325
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9]{0,39})(\\.[a-zA-Z][a-zA-Z0-9]{0,39})*$"
|
|
3326
|
+
},
|
|
3327
|
+
"list": {
|
|
3328
|
+
"description": "Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false",
|
|
3329
|
+
"type": "boolean"
|
|
3330
|
+
},
|
|
3331
|
+
"settings": {
|
|
3332
|
+
"$ref": "#/definitions/component_setting_def"
|
|
3333
|
+
}
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
"component_setting_def": {
|
|
3337
|
+
"description": "Represents the settings specific to one component",
|
|
3338
|
+
"type": "object"
|
|
3339
|
+
},
|
|
3340
|
+
"embeddedComponent": {
|
|
3341
|
+
"type": "object",
|
|
3342
|
+
"additionalProperties": false,
|
|
3343
|
+
"patternProperties": {
|
|
3344
|
+
"^[a-zA-Z0-9_\\.\\-\\:]+$": {
|
|
3345
|
+
"allOf": [
|
|
3346
|
+
{
|
|
3347
|
+
"type": "object",
|
|
3348
|
+
"required": [
|
|
3349
|
+
"id",
|
|
3350
|
+
"title"
|
|
3351
|
+
],
|
|
3352
|
+
"properties": {
|
|
3353
|
+
"id": {
|
|
3354
|
+
"description": "Represents an unique id for the instance of the reuse component inside of the object page",
|
|
3355
|
+
"type": "string",
|
|
3356
|
+
"pattern": "^([A-Za-z_][\\-A-Za-z0-9_\\.\\:]*)$"
|
|
3357
|
+
},
|
|
3358
|
+
"title": {
|
|
3359
|
+
"description": "Represents the title for the content of the reuse component",
|
|
3360
|
+
"type": "string",
|
|
3361
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
3362
|
+
},
|
|
3363
|
+
"binding": {
|
|
3364
|
+
"description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
|
|
3365
|
+
"type": "string"
|
|
3366
|
+
},
|
|
3367
|
+
"settings": {
|
|
3368
|
+
"description": "Represents a map to populate the API of the reuse component",
|
|
3369
|
+
"type": "object"
|
|
3370
|
+
},
|
|
3371
|
+
"hiddenByDefault": {
|
|
3372
|
+
"description": "Flag, whether the embedded component should be hidden by default",
|
|
3373
|
+
"type: ": "boolean"
|
|
3374
|
+
},
|
|
3375
|
+
"groupTitle": {
|
|
3376
|
+
"description": "Represents group title of reuse components",
|
|
3377
|
+
"type": "string"
|
|
3378
|
+
},
|
|
3379
|
+
"leadingSectionIdOrPath": {
|
|
3380
|
+
"description": "Represents a section that behaves a leading section for the group",
|
|
3381
|
+
"type": "string"
|
|
3382
|
+
}
|
|
3383
|
+
}
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"oneOf": [
|
|
3387
|
+
{
|
|
3388
|
+
"type": "object",
|
|
3389
|
+
"required": [
|
|
3390
|
+
"componentName"
|
|
3391
|
+
],
|
|
3392
|
+
"properties": {
|
|
3393
|
+
"componentName": {
|
|
3394
|
+
"description": "Represents the name of the reuse component ",
|
|
3395
|
+
"type": "string",
|
|
3396
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
3397
|
+
}
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
{
|
|
3401
|
+
"type": "object",
|
|
3402
|
+
"required": [
|
|
3403
|
+
"componentUsage"
|
|
3404
|
+
],
|
|
3405
|
+
"properties": {
|
|
3406
|
+
"componentUsage": {
|
|
3407
|
+
"description": "Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages",
|
|
3408
|
+
"type": "string"
|
|
3409
|
+
}
|
|
3410
|
+
}
|
|
3411
|
+
},
|
|
3412
|
+
{
|
|
3413
|
+
"type": "object",
|
|
3414
|
+
"required": [
|
|
3415
|
+
"embeddedComponents"
|
|
3416
|
+
],
|
|
3417
|
+
"properties": {
|
|
3418
|
+
"embeddedComponents": {
|
|
3419
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
3420
|
+
}
|
|
3421
|
+
}
|
|
3422
|
+
}
|
|
3423
|
+
]
|
|
3424
|
+
}
|
|
3425
|
+
]
|
|
3426
|
+
}
|
|
3427
|
+
}
|
|
3428
|
+
},
|
|
3429
|
+
"action_prop_def": {
|
|
3430
|
+
"type": "object",
|
|
3431
|
+
"additionalProperties": false,
|
|
3432
|
+
"required": [
|
|
3433
|
+
"path",
|
|
3434
|
+
"target"
|
|
3435
|
+
],
|
|
3436
|
+
"properties": {
|
|
3437
|
+
"path": {
|
|
3438
|
+
"description": "Represents the path in the manifest to the target to which the navigation is bound",
|
|
3439
|
+
"type": "string"
|
|
3440
|
+
},
|
|
3441
|
+
"target": {
|
|
3442
|
+
"description": "Represents the pointer to a semantic object",
|
|
3443
|
+
"type": "string"
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3446
|
+
},
|
|
3447
|
+
"pages_map": {
|
|
3448
|
+
"type": "object",
|
|
3449
|
+
"additionalProperties": false,
|
|
3450
|
+
"required": [
|
|
3451
|
+
"component"
|
|
3452
|
+
],
|
|
3453
|
+
"properties": {
|
|
3454
|
+
"navigationProperty": {
|
|
3455
|
+
"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 ",
|
|
3456
|
+
"type": "string"
|
|
3457
|
+
},
|
|
3458
|
+
"entitySet": {
|
|
3459
|
+
"description": "Represents the entity set that defines either the aggregation or the root object of the component",
|
|
3460
|
+
"type": "string"
|
|
3461
|
+
},
|
|
3462
|
+
"component": {
|
|
3463
|
+
"description": "Represents the component and its settings that makes the page",
|
|
3464
|
+
"$ref": "#/definitions/component_def"
|
|
3465
|
+
},
|
|
3466
|
+
"navigation": {
|
|
3467
|
+
"description": "Represents the different navigation targets",
|
|
3468
|
+
"$ref": "#/definitions/navigation_def"
|
|
3469
|
+
},
|
|
3470
|
+
"embeddedComponents": {
|
|
3471
|
+
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
3472
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
3473
|
+
},
|
|
3474
|
+
"routingSpec": {
|
|
3475
|
+
"description": "Represents the routing specification",
|
|
3476
|
+
"$ref": "#/definitions/routingSpec_def"
|
|
3477
|
+
},
|
|
3478
|
+
"implementingComponent": {
|
|
3479
|
+
"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",
|
|
3480
|
+
"$ref": "#/definitions/implementingComponent_def"
|
|
3481
|
+
},
|
|
3482
|
+
"defaultLayoutType": {
|
|
3483
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
3484
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
3485
|
+
},
|
|
3486
|
+
"pages": {
|
|
3487
|
+
"type": "object",
|
|
3488
|
+
"additionalProperties": false,
|
|
3489
|
+
"patternProperties": {
|
|
3490
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
3491
|
+
"$ref": "#/definitions/pages_map"
|
|
3492
|
+
}
|
|
3493
|
+
}
|
|
3494
|
+
}
|
|
3495
|
+
}
|
|
3496
|
+
},
|
|
3497
|
+
"pages_array": {
|
|
3498
|
+
"type": "object",
|
|
3499
|
+
"additionalProperties": false,
|
|
3500
|
+
"required": [
|
|
3501
|
+
"component"
|
|
3502
|
+
],
|
|
3503
|
+
"properties": {
|
|
3504
|
+
"navigationProperty": {
|
|
3505
|
+
"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 ",
|
|
3506
|
+
"type": "string"
|
|
3507
|
+
},
|
|
3508
|
+
"entitySet": {
|
|
3509
|
+
"description": "Represents the entity set that defines either the aggregation or the root object of the component",
|
|
3510
|
+
"type": "string"
|
|
3511
|
+
},
|
|
3512
|
+
"component": {
|
|
3513
|
+
"description": "Represents the component and its settings that makes the page",
|
|
3514
|
+
"$ref": "#/definitions/component_def"
|
|
3515
|
+
},
|
|
3516
|
+
"navigation": {
|
|
3517
|
+
"description": "Represents the different navigation targets",
|
|
3518
|
+
"$ref": "#/definitions/navigation_def"
|
|
3519
|
+
},
|
|
3520
|
+
"embeddedComponents": {
|
|
3521
|
+
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
3522
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
3523
|
+
},
|
|
3524
|
+
"routingSpec": {
|
|
3525
|
+
"description": "Represents the routing specification",
|
|
3526
|
+
"$ref": "#/definitions/routingSpec_def"
|
|
3527
|
+
},
|
|
3528
|
+
"implementingComponent": {
|
|
3529
|
+
"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",
|
|
3530
|
+
"$ref": "#/definitions/implementingComponent_def"
|
|
3531
|
+
},
|
|
3532
|
+
"defaultLayoutType": {
|
|
3533
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
3534
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
3535
|
+
},
|
|
3536
|
+
"pages": {
|
|
3537
|
+
"type": "array",
|
|
3538
|
+
"items": {
|
|
3539
|
+
"$ref": "#/definitions/pages_array"
|
|
3540
|
+
}
|
|
3541
|
+
}
|
|
3542
|
+
}
|
|
3543
|
+
},
|
|
3544
|
+
"setting_def": {
|
|
3545
|
+
"description": "Represents global settings for the application controller",
|
|
3546
|
+
"type": "object"
|
|
3547
|
+
},
|
|
3548
|
+
"routeTargetObject": {
|
|
3549
|
+
"description": "Represents the definition of a target of a route as object.",
|
|
3550
|
+
"type": "object",
|
|
3551
|
+
"properties": {
|
|
3552
|
+
"name": {
|
|
3553
|
+
"description": "Represents the name of the routing target",
|
|
3554
|
+
"type": "string"
|
|
1095
3555
|
},
|
|
1096
|
-
"
|
|
1097
|
-
"description": "
|
|
3556
|
+
"prefix": {
|
|
3557
|
+
"description": "The prefix of the routing target",
|
|
1098
3558
|
"type": "string"
|
|
1099
3559
|
}
|
|
1100
3560
|
}
|
|
1101
3561
|
},
|
|
1102
|
-
"
|
|
1103
|
-
"description": "Represents the
|
|
3562
|
+
"routeWithoutName": {
|
|
3563
|
+
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
1104
3564
|
"type": "object",
|
|
1105
|
-
"additionalProperties": true,
|
|
1106
3565
|
"properties": {
|
|
1107
|
-
"
|
|
1108
|
-
"description": "Represents the
|
|
1109
|
-
"type": "string"
|
|
1110
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
3566
|
+
"pattern": {
|
|
3567
|
+
"description": "Represents the url pattern that the route is matched against",
|
|
3568
|
+
"type": "string"
|
|
1111
3569
|
},
|
|
1112
|
-
"
|
|
1113
|
-
"description": "
|
|
1114
|
-
"type": "
|
|
1115
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
3570
|
+
"greedy": {
|
|
3571
|
+
"description": "Whether the route should be matched when another route is already matched",
|
|
3572
|
+
"type": "boolean"
|
|
1116
3573
|
},
|
|
1117
|
-
"
|
|
1118
|
-
"description": "Represents
|
|
1119
|
-
"
|
|
1120
|
-
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
3574
|
+
"target": {
|
|
3575
|
+
"description": "Represents one or multiple names of targets which are displayed when the route is matched",
|
|
3576
|
+
"$ref": "#/definitions/routeTarget"
|
|
1121
3577
|
},
|
|
1122
|
-
"
|
|
1123
|
-
"description": "Represents the
|
|
1124
|
-
"type": "string"
|
|
1125
|
-
|
|
3578
|
+
"titleTarget": {
|
|
3579
|
+
"description": "Represents the name of the target where the 'title' information should be taken",
|
|
3580
|
+
"type": "string"
|
|
3581
|
+
}
|
|
3582
|
+
}
|
|
3583
|
+
},
|
|
3584
|
+
"route": {
|
|
3585
|
+
"description": "Represents the definition of each route",
|
|
3586
|
+
"allOf": [
|
|
3587
|
+
{
|
|
3588
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
1126
3589
|
},
|
|
1127
|
-
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1130
|
-
|
|
1131
|
-
|
|
3590
|
+
{
|
|
3591
|
+
"type": "object",
|
|
3592
|
+
"required": [
|
|
3593
|
+
"name"
|
|
3594
|
+
],
|
|
3595
|
+
"properties": {
|
|
3596
|
+
"name": {
|
|
3597
|
+
"description": "Represents the name of the route",
|
|
3598
|
+
"type": "string"
|
|
3599
|
+
}
|
|
1132
3600
|
}
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
},
|
|
1143
|
-
"listType": {
|
|
1144
|
-
"description": "Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card",
|
|
1145
|
-
"type": "string",
|
|
1146
|
-
"enum": [
|
|
1147
|
-
"extended",
|
|
1148
|
-
"condensed"
|
|
1149
|
-
]
|
|
1150
|
-
},
|
|
1151
|
-
"sortBy": {
|
|
1152
|
-
"description": "Represents the sort key for the entity set",
|
|
3601
|
+
}
|
|
3602
|
+
]
|
|
3603
|
+
},
|
|
3604
|
+
"target": {
|
|
3605
|
+
"description": "Represents the definition of each target",
|
|
3606
|
+
"type": "object",
|
|
3607
|
+
"properties": {
|
|
3608
|
+
"title": {
|
|
3609
|
+
"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.",
|
|
1153
3610
|
"type": "string"
|
|
1154
3611
|
},
|
|
1155
|
-
"
|
|
1156
|
-
"description": "Represents the
|
|
3612
|
+
"viewType": {
|
|
3613
|
+
"description": "Represents the type of view that is going to be created",
|
|
1157
3614
|
"type": "string",
|
|
1158
3615
|
"enum": [
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
3616
|
+
"XML",
|
|
3617
|
+
"JSON",
|
|
3618
|
+
"JS",
|
|
3619
|
+
"HTML",
|
|
3620
|
+
"Template"
|
|
1161
3621
|
]
|
|
1162
3622
|
},
|
|
1163
|
-
"
|
|
1164
|
-
"description": "Represents the
|
|
1165
|
-
"type": "string"
|
|
1166
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1167
|
-
},
|
|
1168
|
-
"selectionAnnotationPath": {
|
|
1169
|
-
"description": "Represents the selection annotation path",
|
|
1170
|
-
"type": "string",
|
|
1171
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3623
|
+
"targetParent": {
|
|
3624
|
+
"description": "Represents the id of the view that contains the control specified by the 'controlId'",
|
|
3625
|
+
"type": "string"
|
|
1172
3626
|
},
|
|
1173
|
-
"
|
|
1174
|
-
"description": "Represents the
|
|
1175
|
-
"type": "string"
|
|
1176
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3627
|
+
"controlId": {
|
|
3628
|
+
"description": "Represents the id of the control where you want to place the view created by the target",
|
|
3629
|
+
"type": "string"
|
|
1177
3630
|
},
|
|
1178
|
-
"
|
|
1179
|
-
"description": "Represents the
|
|
1180
|
-
"type": "string"
|
|
1181
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3631
|
+
"controlAggregation": {
|
|
3632
|
+
"description": "Represents the name of an aggregation of the controlId that contains the views",
|
|
3633
|
+
"type": "string"
|
|
1182
3634
|
},
|
|
1183
|
-
"
|
|
1184
|
-
"description": "
|
|
1185
|
-
"type": "
|
|
1186
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3635
|
+
"clearControlAggregation": {
|
|
3636
|
+
"description": "Whether the aggregation of the control should be cleared before adding the view",
|
|
3637
|
+
"type": "boolean"
|
|
1187
3638
|
},
|
|
1188
|
-
"
|
|
1189
|
-
"description": "Represents the
|
|
1190
|
-
"type": "string"
|
|
1191
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3639
|
+
"parent": {
|
|
3640
|
+
"description": "Represents the name of another target which will also be displayed once this target is displayed",
|
|
3641
|
+
"type": "string"
|
|
1192
3642
|
},
|
|
1193
|
-
"
|
|
1194
|
-
"description": "Represents the
|
|
1195
|
-
"type": "
|
|
1196
|
-
"
|
|
3643
|
+
"viewLevel": {
|
|
3644
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
3645
|
+
"type": "number",
|
|
3646
|
+
"multipleOf": 1
|
|
1197
3647
|
},
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
3648
|
+
"transition": {
|
|
3649
|
+
"description": "Represents the type of transition when navigating from previous view to this view",
|
|
3650
|
+
"anyOf": [
|
|
3651
|
+
{
|
|
3652
|
+
"type": "string",
|
|
3653
|
+
"default": "slide"
|
|
3654
|
+
},
|
|
3655
|
+
{
|
|
3656
|
+
"type": "string",
|
|
3657
|
+
"enum": [
|
|
3658
|
+
"slide",
|
|
3659
|
+
"flip",
|
|
3660
|
+
"fade",
|
|
3661
|
+
"show"
|
|
3662
|
+
]
|
|
3663
|
+
}
|
|
3664
|
+
]
|
|
1200
3665
|
},
|
|
1201
|
-
"
|
|
1202
|
-
"description": "Represents the
|
|
1203
|
-
"type": "
|
|
1204
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
3666
|
+
"transitionParameters": {
|
|
3667
|
+
"description": "Represents the transition parameters that are passed to the event handlers",
|
|
3668
|
+
"type": "object"
|
|
1205
3669
|
}
|
|
1206
3670
|
}
|
|
1207
3671
|
},
|
|
1208
|
-
"
|
|
1209
|
-
"description": "Represents the
|
|
1210
|
-
"
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
3672
|
+
"routeTarget": {
|
|
3673
|
+
"description": "Represents the definition of a target of a route.",
|
|
3674
|
+
"oneOf": [
|
|
3675
|
+
{
|
|
3676
|
+
"type": "array",
|
|
3677
|
+
"items": [
|
|
3678
|
+
{
|
|
3679
|
+
"oneOf": [
|
|
3680
|
+
{
|
|
3681
|
+
"type": "string"
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
"$ref": "#/definitions/routeTargetObject"
|
|
3685
|
+
}
|
|
3686
|
+
]
|
|
3687
|
+
}
|
|
3688
|
+
]
|
|
3689
|
+
},
|
|
3690
|
+
{
|
|
3691
|
+
"type": "string"
|
|
3692
|
+
},
|
|
3693
|
+
{
|
|
3694
|
+
"$ref": "#/definitions/routeTargetObject"
|
|
1215
3695
|
}
|
|
1216
|
-
|
|
3696
|
+
]
|
|
1217
3697
|
},
|
|
1218
|
-
"
|
|
1219
|
-
"description": "Represents the card attributes",
|
|
3698
|
+
"ui5setting": {
|
|
1220
3699
|
"type": "object",
|
|
1221
|
-
"
|
|
1222
|
-
"template"
|
|
1223
|
-
],
|
|
1224
|
-
"additionalProperties": false,
|
|
3700
|
+
"additionalProperties": true,
|
|
1225
3701
|
"properties": {
|
|
1226
|
-
"
|
|
1227
|
-
"description": "Represents
|
|
1228
|
-
"type": "integer"
|
|
1229
|
-
},
|
|
1230
|
-
"model": {
|
|
1231
|
-
"description": "Represents the model for the card",
|
|
1232
|
-
"type": "string",
|
|
1233
|
-
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
1234
|
-
},
|
|
1235
|
-
"template": {
|
|
1236
|
-
"description": "Represents the card component path to use for this card",
|
|
3702
|
+
"defaultBindingMode": {
|
|
3703
|
+
"description": "Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay",
|
|
1237
3704
|
"type": "string",
|
|
1238
|
-
"
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
3705
|
+
"default": "Default",
|
|
3706
|
+
"enum": [
|
|
3707
|
+
"Default",
|
|
3708
|
+
"OneTime",
|
|
3709
|
+
"OneWay",
|
|
3710
|
+
"TwoWay"
|
|
3711
|
+
]
|
|
1242
3712
|
},
|
|
1243
|
-
"
|
|
1244
|
-
"description": "Represents
|
|
3713
|
+
"enhanceWith": {
|
|
3714
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
1245
3715
|
"type": "array",
|
|
1246
|
-
"minItems": 1,
|
|
1247
3716
|
"items": {
|
|
1248
|
-
"
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
3717
|
+
"type": "object",
|
|
3718
|
+
"oneOf": [
|
|
3719
|
+
{
|
|
3720
|
+
"additionalProperties": false,
|
|
3721
|
+
"required": [
|
|
3722
|
+
"bundleUrl"
|
|
3723
|
+
],
|
|
3724
|
+
"properties": {
|
|
3725
|
+
"bundleUrl": {
|
|
3726
|
+
"description": "Represents property url for model enhancement",
|
|
3727
|
+
"type": "string"
|
|
3728
|
+
},
|
|
3729
|
+
"bundleUrlRelativeTo": {
|
|
3730
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
3731
|
+
"type": "string",
|
|
3732
|
+
"default": "component",
|
|
3733
|
+
"enum": [
|
|
3734
|
+
"manifest",
|
|
3735
|
+
"component"
|
|
3736
|
+
]
|
|
3737
|
+
}
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
"required": [
|
|
3742
|
+
"bundleName"
|
|
3743
|
+
],
|
|
3744
|
+
"additionalProperties": false,
|
|
3745
|
+
"properties": {
|
|
3746
|
+
"bundleName": {
|
|
3747
|
+
"description": "Represents the alternative for bundleUrl",
|
|
3748
|
+
"type": "string"
|
|
3749
|
+
}
|
|
3750
|
+
}
|
|
3751
|
+
}
|
|
3752
|
+
]
|
|
3753
|
+
}
|
|
1274
3754
|
}
|
|
1275
3755
|
}
|
|
1276
3756
|
},
|
|
1277
|
-
"
|
|
1278
|
-
"
|
|
1279
|
-
"
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
],
|
|
1283
|
-
"properties": {
|
|
1284
|
-
"name": {
|
|
1285
|
-
"description": "The name of the component",
|
|
1286
|
-
"type": "string",
|
|
1287
|
-
"pattern": "^([a-zA-Z][a-zA-Z0-9]{0,39})(\\.[a-zA-Z][a-zA-Z0-9]{0,39})*$"
|
|
1288
|
-
},
|
|
1289
|
-
"list": {
|
|
1290
|
-
"description": "Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false",
|
|
1291
|
-
"type": "boolean"
|
|
3757
|
+
"rootView_def": {
|
|
3758
|
+
"description": "Represents the root view definition being either the name of the view or the view definition object",
|
|
3759
|
+
"oneOf": [
|
|
3760
|
+
{
|
|
3761
|
+
"type": "string"
|
|
1292
3762
|
},
|
|
1293
|
-
|
|
1294
|
-
"
|
|
3763
|
+
{
|
|
3764
|
+
"type": "object",
|
|
3765
|
+
"required": [
|
|
3766
|
+
"viewName"
|
|
3767
|
+
],
|
|
3768
|
+
"additionalProperties": true,
|
|
3769
|
+
"properties": {
|
|
3770
|
+
"viewName": {
|
|
3771
|
+
"description": "Represents the name of the view",
|
|
3772
|
+
"type": "string"
|
|
3773
|
+
},
|
|
3774
|
+
"type": {
|
|
3775
|
+
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
3776
|
+
"type": "string",
|
|
3777
|
+
"enum": [
|
|
3778
|
+
"XML",
|
|
3779
|
+
"JSON",
|
|
3780
|
+
"JS",
|
|
3781
|
+
"HTML",
|
|
3782
|
+
"Template"
|
|
3783
|
+
]
|
|
3784
|
+
},
|
|
3785
|
+
"id": {
|
|
3786
|
+
"description": "Represents the id of the view",
|
|
3787
|
+
"type": "string"
|
|
3788
|
+
}
|
|
3789
|
+
}
|
|
1295
3790
|
}
|
|
1296
|
-
|
|
3791
|
+
]
|
|
1297
3792
|
},
|
|
1298
|
-
"
|
|
3793
|
+
"routing": {
|
|
3794
|
+
"description": "Represents the configuration of routing",
|
|
1299
3795
|
"type": "object",
|
|
1300
|
-
"
|
|
1301
|
-
|
|
1302
|
-
|
|
3796
|
+
"properties": {
|
|
3797
|
+
"config": {
|
|
3798
|
+
"description": "Represents the default properties defined for route and target",
|
|
1303
3799
|
"allOf": [
|
|
1304
3800
|
{
|
|
1305
3801
|
"type": "object",
|
|
1306
|
-
"required": [
|
|
1307
|
-
"id",
|
|
1308
|
-
"title"
|
|
1309
|
-
],
|
|
1310
3802
|
"properties": {
|
|
1311
|
-
"
|
|
1312
|
-
"description": "Represents
|
|
1313
|
-
"type": "string"
|
|
1314
|
-
"pattern": "^([A-Za-z_][\\-A-Za-z0-9_\\.\\:]*)$"
|
|
3803
|
+
"routerClass": {
|
|
3804
|
+
"description": "Represents the router class",
|
|
3805
|
+
"type": "string"
|
|
1315
3806
|
},
|
|
1316
|
-
"
|
|
1317
|
-
"description": "
|
|
1318
|
-
"type": "
|
|
1319
|
-
"
|
|
3807
|
+
"async": {
|
|
3808
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
3809
|
+
"type": "boolean",
|
|
3810
|
+
"default": false
|
|
1320
3811
|
},
|
|
1321
|
-
"
|
|
1322
|
-
"description": "Represents
|
|
1323
|
-
"type": "
|
|
3812
|
+
"bypassed": {
|
|
3813
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
3814
|
+
"type": "object",
|
|
3815
|
+
"additionalProperties": false,
|
|
3816
|
+
"required": [
|
|
3817
|
+
"target"
|
|
3818
|
+
],
|
|
3819
|
+
"properties": {
|
|
3820
|
+
"target": {
|
|
3821
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
3822
|
+
"$ref": "#/definitions/routeTarget"
|
|
3823
|
+
}
|
|
3824
|
+
}
|
|
1324
3825
|
},
|
|
1325
|
-
"
|
|
1326
|
-
"description": "Represents a
|
|
1327
|
-
"type": "
|
|
3826
|
+
"viewPath": {
|
|
3827
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
3828
|
+
"type": "string"
|
|
1328
3829
|
}
|
|
1329
3830
|
}
|
|
1330
3831
|
},
|
|
1331
3832
|
{
|
|
3833
|
+
"$ref": "#/definitions/target"
|
|
3834
|
+
}
|
|
3835
|
+
]
|
|
3836
|
+
},
|
|
3837
|
+
"routes": {
|
|
3838
|
+
"oneOf": [
|
|
3839
|
+
{
|
|
3840
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
3841
|
+
"type": "array",
|
|
3842
|
+
"items": {
|
|
3843
|
+
"$ref": "#/definitions/route"
|
|
3844
|
+
}
|
|
3845
|
+
},
|
|
3846
|
+
{
|
|
3847
|
+
"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",
|
|
3848
|
+
"type": "object",
|
|
3849
|
+
"patternProperties": {
|
|
3850
|
+
"[\\s\\S]*": {
|
|
3851
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
}
|
|
3855
|
+
]
|
|
3856
|
+
},
|
|
3857
|
+
"targets": {
|
|
3858
|
+
"description": "Represents the definition of targets",
|
|
3859
|
+
"type": "object",
|
|
3860
|
+
"patternProperties": {
|
|
3861
|
+
"[\\s\\S]*": {
|
|
1332
3862
|
"oneOf": [
|
|
1333
3863
|
{
|
|
1334
|
-
"
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
"
|
|
1341
|
-
|
|
1342
|
-
|
|
3864
|
+
"allOf": [
|
|
3865
|
+
{
|
|
3866
|
+
"$ref": "#/definitions/target"
|
|
3867
|
+
},
|
|
3868
|
+
{
|
|
3869
|
+
"type": "object",
|
|
3870
|
+
"required": [
|
|
3871
|
+
"viewName"
|
|
3872
|
+
],
|
|
3873
|
+
"properties": {
|
|
3874
|
+
"viewName": {
|
|
3875
|
+
"description": "Represents the name of a view that will be created",
|
|
3876
|
+
"type": "string"
|
|
3877
|
+
},
|
|
3878
|
+
"viewId": {
|
|
3879
|
+
"description": "Represents the id of the created view",
|
|
3880
|
+
"type": "string"
|
|
3881
|
+
},
|
|
3882
|
+
"viewPath": {
|
|
3883
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
3884
|
+
"type": "string"
|
|
3885
|
+
}
|
|
3886
|
+
}
|
|
1343
3887
|
}
|
|
1344
|
-
|
|
3888
|
+
]
|
|
1345
3889
|
},
|
|
1346
3890
|
{
|
|
1347
|
-
"
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
3891
|
+
"allOf": [
|
|
3892
|
+
{
|
|
3893
|
+
"$ref": "#/definitions/target"
|
|
3894
|
+
},
|
|
3895
|
+
{
|
|
3896
|
+
"oneOf": [
|
|
3897
|
+
{
|
|
3898
|
+
"type": "object",
|
|
3899
|
+
"required": [
|
|
3900
|
+
"name"
|
|
3901
|
+
],
|
|
3902
|
+
"properties": {
|
|
3903
|
+
"name": {
|
|
3904
|
+
"description": "Represents the name of a view or component that will be created",
|
|
3905
|
+
"type": "string"
|
|
3906
|
+
},
|
|
3907
|
+
"id": {
|
|
3908
|
+
"description": "Represents the id of the created view or component",
|
|
3909
|
+
"type": "string"
|
|
3910
|
+
},
|
|
3911
|
+
"path": {
|
|
3912
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
3913
|
+
"type": "string"
|
|
3914
|
+
},
|
|
3915
|
+
"type": {
|
|
3916
|
+
"description": "Represents the type of the type View or Component",
|
|
3917
|
+
"type": "string",
|
|
3918
|
+
"enum": [
|
|
3919
|
+
"View",
|
|
3920
|
+
"Component"
|
|
3921
|
+
]
|
|
3922
|
+
}
|
|
3923
|
+
}
|
|
3924
|
+
},
|
|
3925
|
+
{
|
|
3926
|
+
"type": "object",
|
|
3927
|
+
"required": [
|
|
3928
|
+
"usage",
|
|
3929
|
+
"type"
|
|
3930
|
+
],
|
|
3931
|
+
"properties": {
|
|
3932
|
+
"usage": {
|
|
3933
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
3934
|
+
"type": "string"
|
|
3935
|
+
},
|
|
3936
|
+
"id": {
|
|
3937
|
+
"description": "Represents the id of the created view or component",
|
|
3938
|
+
"type": "string"
|
|
3939
|
+
},
|
|
3940
|
+
"type": {
|
|
3941
|
+
"description": "Represents the type of the type Component",
|
|
3942
|
+
"type": "string",
|
|
3943
|
+
"enum": [
|
|
3944
|
+
"Component"
|
|
3945
|
+
]
|
|
3946
|
+
}
|
|
3947
|
+
}
|
|
3948
|
+
}
|
|
3949
|
+
]
|
|
1354
3950
|
}
|
|
1355
|
-
|
|
3951
|
+
]
|
|
1356
3952
|
}
|
|
1357
3953
|
]
|
|
1358
3954
|
}
|
|
1359
|
-
|
|
3955
|
+
}
|
|
1360
3956
|
}
|
|
1361
3957
|
}
|
|
1362
3958
|
},
|
|
1363
|
-
"
|
|
3959
|
+
"rootView_def_flexEnabled": {
|
|
3960
|
+
"description": "Represents the root view definition when flex is enabled (requires a view id)",
|
|
1364
3961
|
"type": "object",
|
|
1365
|
-
"additionalProperties": false,
|
|
1366
3962
|
"required": [
|
|
1367
|
-
"
|
|
1368
|
-
"
|
|
3963
|
+
"id",
|
|
3964
|
+
"viewName"
|
|
1369
3965
|
],
|
|
3966
|
+
"additionalProperties": true,
|
|
1370
3967
|
"properties": {
|
|
1371
|
-
"
|
|
1372
|
-
"description": "Represents the
|
|
3968
|
+
"viewName": {
|
|
3969
|
+
"description": "Represents the name of the view",
|
|
1373
3970
|
"type": "string"
|
|
1374
3971
|
},
|
|
1375
|
-
"
|
|
1376
|
-
"description": "Represents the
|
|
3972
|
+
"type": {
|
|
3973
|
+
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
3974
|
+
"type": "string",
|
|
3975
|
+
"enum": [
|
|
3976
|
+
"XML",
|
|
3977
|
+
"JSON",
|
|
3978
|
+
"JS",
|
|
3979
|
+
"HTML",
|
|
3980
|
+
"Template"
|
|
3981
|
+
]
|
|
3982
|
+
},
|
|
3983
|
+
"id": {
|
|
3984
|
+
"description": "Represents the id of the view",
|
|
1377
3985
|
"type": "string"
|
|
1378
3986
|
}
|
|
1379
3987
|
}
|
|
1380
3988
|
},
|
|
1381
|
-
"
|
|
3989
|
+
"routing_flexEnabled": {
|
|
3990
|
+
"description": "Represents the configuration of routing",
|
|
1382
3991
|
"type": "object",
|
|
1383
|
-
"additionalProperties": false,
|
|
1384
|
-
"required": [
|
|
1385
|
-
"entitySet",
|
|
1386
|
-
"component"
|
|
1387
|
-
],
|
|
1388
3992
|
"properties": {
|
|
1389
|
-
"
|
|
1390
|
-
"description": "Represents the
|
|
1391
|
-
"
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
3993
|
+
"config": {
|
|
3994
|
+
"description": "Represents the default properties defined for route and target",
|
|
3995
|
+
"allOf": [
|
|
3996
|
+
{
|
|
3997
|
+
"type": "object",
|
|
3998
|
+
"properties": {
|
|
3999
|
+
"routerClass": {
|
|
4000
|
+
"description": "Represents the router class",
|
|
4001
|
+
"type": "string"
|
|
4002
|
+
},
|
|
4003
|
+
"async": {
|
|
4004
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
4005
|
+
"type": "boolean",
|
|
4006
|
+
"default": false
|
|
4007
|
+
},
|
|
4008
|
+
"bypassed": {
|
|
4009
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
4010
|
+
"type": "object",
|
|
4011
|
+
"additionalProperties": false,
|
|
4012
|
+
"required": [
|
|
4013
|
+
"target"
|
|
4014
|
+
],
|
|
4015
|
+
"properties": {
|
|
4016
|
+
"target": {
|
|
4017
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
4018
|
+
"$ref": "#/definitions/routeTarget"
|
|
4019
|
+
}
|
|
4020
|
+
}
|
|
4021
|
+
},
|
|
4022
|
+
"viewPath": {
|
|
4023
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
4024
|
+
"type": "string"
|
|
4025
|
+
}
|
|
4026
|
+
}
|
|
4027
|
+
},
|
|
4028
|
+
{
|
|
4029
|
+
"$ref": "#/definitions/target"
|
|
4030
|
+
}
|
|
4031
|
+
]
|
|
1404
4032
|
},
|
|
1405
|
-
"
|
|
1406
|
-
"
|
|
1407
|
-
|
|
4033
|
+
"routes": {
|
|
4034
|
+
"oneOf": [
|
|
4035
|
+
{
|
|
4036
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
4037
|
+
"type": "array",
|
|
4038
|
+
"items": {
|
|
4039
|
+
"$ref": "#/definitions/route"
|
|
4040
|
+
}
|
|
4041
|
+
},
|
|
4042
|
+
{
|
|
4043
|
+
"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",
|
|
4044
|
+
"type": "object",
|
|
4045
|
+
"patternProperties": {
|
|
4046
|
+
"[\\s\\S]*": {
|
|
4047
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
4048
|
+
}
|
|
4049
|
+
}
|
|
4050
|
+
}
|
|
4051
|
+
]
|
|
1408
4052
|
},
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
"
|
|
1412
|
-
|
|
4053
|
+
"targets": {
|
|
4054
|
+
"description": "Represents the definition of targets",
|
|
4055
|
+
"type": "object",
|
|
4056
|
+
"patternProperties": {
|
|
4057
|
+
"[\\s\\S]*": {
|
|
4058
|
+
"oneOf": [
|
|
4059
|
+
{
|
|
4060
|
+
"allOf": [
|
|
4061
|
+
{
|
|
4062
|
+
"$ref": "#/definitions/target"
|
|
4063
|
+
},
|
|
4064
|
+
{
|
|
4065
|
+
"type": "object",
|
|
4066
|
+
"required": [
|
|
4067
|
+
"viewName",
|
|
4068
|
+
"viewId"
|
|
4069
|
+
],
|
|
4070
|
+
"properties": {
|
|
4071
|
+
"viewName": {
|
|
4072
|
+
"description": "Represents the name of a view that will be created",
|
|
4073
|
+
"type": "string"
|
|
4074
|
+
},
|
|
4075
|
+
"viewId": {
|
|
4076
|
+
"description": "Represents the id of the created view",
|
|
4077
|
+
"type": "string"
|
|
4078
|
+
},
|
|
4079
|
+
"viewPath": {
|
|
4080
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
4081
|
+
"type": "string"
|
|
4082
|
+
}
|
|
4083
|
+
}
|
|
4084
|
+
}
|
|
4085
|
+
]
|
|
4086
|
+
},
|
|
4087
|
+
{
|
|
4088
|
+
"allOf": [
|
|
4089
|
+
{
|
|
4090
|
+
"$ref": "#/definitions/target"
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
"oneOf": [
|
|
4094
|
+
{
|
|
4095
|
+
"type": "object",
|
|
4096
|
+
"required": [
|
|
4097
|
+
"name",
|
|
4098
|
+
"id"
|
|
4099
|
+
],
|
|
4100
|
+
"properties": {
|
|
4101
|
+
"name": {
|
|
4102
|
+
"description": "Represents the name of a view or component that will be created",
|
|
4103
|
+
"type": "string"
|
|
4104
|
+
},
|
|
4105
|
+
"id": {
|
|
4106
|
+
"description": "Represents the id of the created view or component",
|
|
4107
|
+
"type": "string"
|
|
4108
|
+
},
|
|
4109
|
+
"path": {
|
|
4110
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
4111
|
+
"type": "string"
|
|
4112
|
+
},
|
|
4113
|
+
"type": {
|
|
4114
|
+
"description": "Represents the type of the type View or Component",
|
|
4115
|
+
"type": "string",
|
|
4116
|
+
"enum": [
|
|
4117
|
+
"View",
|
|
4118
|
+
"Component"
|
|
4119
|
+
]
|
|
4120
|
+
}
|
|
4121
|
+
}
|
|
4122
|
+
},
|
|
4123
|
+
{
|
|
4124
|
+
"type": "object",
|
|
4125
|
+
"required": [
|
|
4126
|
+
"usage",
|
|
4127
|
+
"id",
|
|
4128
|
+
"type"
|
|
4129
|
+
],
|
|
4130
|
+
"properties": {
|
|
4131
|
+
"usage": {
|
|
4132
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
4133
|
+
"type": "string"
|
|
4134
|
+
},
|
|
4135
|
+
"id": {
|
|
4136
|
+
"description": "Represents the id of the created view or component",
|
|
4137
|
+
"type": "string"
|
|
4138
|
+
},
|
|
4139
|
+
"type": {
|
|
4140
|
+
"description": "Represents the type of the type Component",
|
|
4141
|
+
"type": "string",
|
|
4142
|
+
"enum": [
|
|
4143
|
+
"Component"
|
|
4144
|
+
]
|
|
4145
|
+
}
|
|
4146
|
+
}
|
|
4147
|
+
}
|
|
4148
|
+
]
|
|
4149
|
+
}
|
|
4150
|
+
]
|
|
4151
|
+
}
|
|
4152
|
+
]
|
|
4153
|
+
}
|
|
1413
4154
|
}
|
|
1414
4155
|
}
|
|
1415
4156
|
}
|
|
1416
4157
|
},
|
|
1417
|
-
"
|
|
1418
|
-
"description": "Represents
|
|
1419
|
-
"
|
|
1420
|
-
},
|
|
1421
|
-
"ui5setting": {
|
|
4158
|
+
"command": {
|
|
4159
|
+
"description": "Represents a UI5 shortcut command.",
|
|
4160
|
+
"additionalProperties": false,
|
|
1422
4161
|
"type": "object",
|
|
1423
|
-
"additionalProperties": true,
|
|
1424
4162
|
"properties": {
|
|
1425
|
-
"
|
|
1426
|
-
"description": "
|
|
4163
|
+
"shortcut": {
|
|
4164
|
+
"description": "A string describing a shortcut key combination that, when used by the user, will trigger the command.",
|
|
1427
4165
|
"type": "string",
|
|
1428
|
-
"
|
|
1429
|
-
"
|
|
1430
|
-
|
|
1431
|
-
"OneTime",
|
|
1432
|
-
"OneWay",
|
|
1433
|
-
"TwoWay"
|
|
1434
|
-
]
|
|
4166
|
+
"patternTransformCode": "''.split('').map(function(char) { console.log(char); if (/[a-z]/i.test(char)) { return `[${char.toUpperCase()}${char.toLowerCase()}]`; } else { return char; } } ).join('')",
|
|
4167
|
+
"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])$",
|
|
4168
|
+
"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])$"
|
|
1435
4169
|
}
|
|
1436
4170
|
}
|
|
1437
4171
|
},
|
|
4172
|
+
"booleanOrString": {
|
|
4173
|
+
"oneOf": [
|
|
4174
|
+
{
|
|
4175
|
+
"type": "boolean"
|
|
4176
|
+
},
|
|
4177
|
+
{
|
|
4178
|
+
"type": "string"
|
|
4179
|
+
}
|
|
4180
|
+
]
|
|
4181
|
+
},
|
|
1438
4182
|
"service": {
|
|
1439
4183
|
"description": "Represents the definition of each service",
|
|
1440
4184
|
"type": "object",
|
|
@@ -1458,125 +4202,6 @@
|
|
|
1458
4202
|
"id_def_0": {
|
|
1459
4203
|
"type": "string"
|
|
1460
4204
|
},
|
|
1461
|
-
"routeWithoutName": {
|
|
1462
|
-
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
1463
|
-
"type": "object",
|
|
1464
|
-
"properties": {
|
|
1465
|
-
"pattern": {
|
|
1466
|
-
"description": "Represents the url pattern that the route is matched against",
|
|
1467
|
-
"type": "string"
|
|
1468
|
-
},
|
|
1469
|
-
"greedy": {
|
|
1470
|
-
"description": "Whether the route should be matched when another route is already matched",
|
|
1471
|
-
"type": "boolean"
|
|
1472
|
-
},
|
|
1473
|
-
"target": {
|
|
1474
|
-
"description": "Represents one or multiple names of targets which are displayed when the route is matched",
|
|
1475
|
-
"$ref": "#/definitions/arrayOrString"
|
|
1476
|
-
}
|
|
1477
|
-
}
|
|
1478
|
-
},
|
|
1479
|
-
"route": {
|
|
1480
|
-
"description": "Represents the definition of each route",
|
|
1481
|
-
"allOf": [
|
|
1482
|
-
{
|
|
1483
|
-
"$ref": "#/definitions/routeWithoutName"
|
|
1484
|
-
},
|
|
1485
|
-
{
|
|
1486
|
-
"type": "object",
|
|
1487
|
-
"required": [
|
|
1488
|
-
"name"
|
|
1489
|
-
],
|
|
1490
|
-
"properties": {
|
|
1491
|
-
"name": {
|
|
1492
|
-
"description": "Represents the name of the route",
|
|
1493
|
-
"type": "string"
|
|
1494
|
-
}
|
|
1495
|
-
}
|
|
1496
|
-
}
|
|
1497
|
-
]
|
|
1498
|
-
},
|
|
1499
|
-
"target": {
|
|
1500
|
-
"description": "Represents the definition of each target",
|
|
1501
|
-
"type": "object",
|
|
1502
|
-
"properties": {
|
|
1503
|
-
"viewType": {
|
|
1504
|
-
"description": "Represents the type of view that is going to be created",
|
|
1505
|
-
"type": "string",
|
|
1506
|
-
"enum": [
|
|
1507
|
-
"XML",
|
|
1508
|
-
"JSON",
|
|
1509
|
-
"JS",
|
|
1510
|
-
"HTML",
|
|
1511
|
-
"Template"
|
|
1512
|
-
]
|
|
1513
|
-
},
|
|
1514
|
-
"viewPath": {
|
|
1515
|
-
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
1516
|
-
"type": "string"
|
|
1517
|
-
},
|
|
1518
|
-
"targetParent": {
|
|
1519
|
-
"description": "Represents the id of the view that contains the control specified by the 'controlId'",
|
|
1520
|
-
"type": "string"
|
|
1521
|
-
},
|
|
1522
|
-
"controlId": {
|
|
1523
|
-
"description": "Represents the id of the control where you want to place the view created by the target",
|
|
1524
|
-
"type": "string"
|
|
1525
|
-
},
|
|
1526
|
-
"controlAggregation": {
|
|
1527
|
-
"description": "Represents the name of an aggregation of the controlId that contains the views",
|
|
1528
|
-
"type": "string"
|
|
1529
|
-
},
|
|
1530
|
-
"clearControlAggregation": {
|
|
1531
|
-
"description": "Whether the aggregation of the control should be cleared before adding the view",
|
|
1532
|
-
"type": "boolean"
|
|
1533
|
-
},
|
|
1534
|
-
"parent": {
|
|
1535
|
-
"description": "Represents the name of another target which will also be displayed once this target is displayed",
|
|
1536
|
-
"type": "string"
|
|
1537
|
-
},
|
|
1538
|
-
"viewLevel": {
|
|
1539
|
-
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
1540
|
-
"type": "number",
|
|
1541
|
-
"multipleOf": 1
|
|
1542
|
-
},
|
|
1543
|
-
"transition": {
|
|
1544
|
-
"description": "Represents the type of transition when navigating from previous view to this view",
|
|
1545
|
-
"anyOf": [
|
|
1546
|
-
{
|
|
1547
|
-
"type": "string",
|
|
1548
|
-
"default": "slide"
|
|
1549
|
-
},
|
|
1550
|
-
{
|
|
1551
|
-
"type": "string",
|
|
1552
|
-
"enum": [
|
|
1553
|
-
"slide",
|
|
1554
|
-
"flip",
|
|
1555
|
-
"fade",
|
|
1556
|
-
"show"
|
|
1557
|
-
]
|
|
1558
|
-
}
|
|
1559
|
-
]
|
|
1560
|
-
},
|
|
1561
|
-
"transitionParameters": {
|
|
1562
|
-
"description": "Represents the transition parameters that are passed to the event handlers",
|
|
1563
|
-
"type": "object"
|
|
1564
|
-
}
|
|
1565
|
-
}
|
|
1566
|
-
},
|
|
1567
|
-
"arrayOrString": {
|
|
1568
|
-
"oneOf": [
|
|
1569
|
-
{
|
|
1570
|
-
"type": "array",
|
|
1571
|
-
"items": {
|
|
1572
|
-
"type": "string"
|
|
1573
|
-
}
|
|
1574
|
-
},
|
|
1575
|
-
{
|
|
1576
|
-
"type": "string"
|
|
1577
|
-
}
|
|
1578
|
-
]
|
|
1579
|
-
},
|
|
1580
4205
|
"config": {
|
|
1581
4206
|
"oneOf": [
|
|
1582
4207
|
{
|
|
@@ -1599,37 +4224,6 @@
|
|
|
1599
4224
|
}
|
|
1600
4225
|
]
|
|
1601
4226
|
},
|
|
1602
|
-
"rootView_def": {
|
|
1603
|
-
"oneOf": [
|
|
1604
|
-
{
|
|
1605
|
-
"type": "string"
|
|
1606
|
-
},
|
|
1607
|
-
{
|
|
1608
|
-
"type": "object",
|
|
1609
|
-
"required": [
|
|
1610
|
-
"viewName"
|
|
1611
|
-
],
|
|
1612
|
-
"additionalProperties": true,
|
|
1613
|
-
"properties": {
|
|
1614
|
-
"viewName": {
|
|
1615
|
-
"description": "Represents the name of the view",
|
|
1616
|
-
"type": "string"
|
|
1617
|
-
},
|
|
1618
|
-
"type": {
|
|
1619
|
-
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
1620
|
-
"type": "string",
|
|
1621
|
-
"enum": [
|
|
1622
|
-
"XML",
|
|
1623
|
-
"JSON",
|
|
1624
|
-
"JS",
|
|
1625
|
-
"HTML",
|
|
1626
|
-
"Template"
|
|
1627
|
-
]
|
|
1628
|
-
}
|
|
1629
|
-
}
|
|
1630
|
-
}
|
|
1631
|
-
]
|
|
1632
|
-
},
|
|
1633
4227
|
"resourceRoot": {
|
|
1634
4228
|
"type": "string",
|
|
1635
4229
|
"pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
|
|
@@ -1670,7 +4264,7 @@
|
|
|
1670
4264
|
"$ref": "#/definitions/version"
|
|
1671
4265
|
},
|
|
1672
4266
|
"lazy": {
|
|
1673
|
-
"description": "Represents
|
|
4267
|
+
"description": "Represents Indicator to lazy loading component",
|
|
1674
4268
|
"type": "boolean",
|
|
1675
4269
|
"default": false
|
|
1676
4270
|
}
|
|
@@ -1685,7 +4279,7 @@
|
|
|
1685
4279
|
"$ref": "#/definitions/version"
|
|
1686
4280
|
},
|
|
1687
4281
|
"lazy": {
|
|
1688
|
-
"description": "Represents
|
|
4282
|
+
"description": "Represents Indicator to lazy loading lib",
|
|
1689
4283
|
"type": "boolean",
|
|
1690
4284
|
"default": false
|
|
1691
4285
|
}
|
|
@@ -1694,6 +4288,34 @@
|
|
|
1694
4288
|
"version": {
|
|
1695
4289
|
"type": "string"
|
|
1696
4290
|
},
|
|
4291
|
+
"componentUsages": {
|
|
4292
|
+
"description": "Represents component name for usage",
|
|
4293
|
+
"type": "object",
|
|
4294
|
+
"required": [
|
|
4295
|
+
"name"
|
|
4296
|
+
],
|
|
4297
|
+
"additionalProperties": false,
|
|
4298
|
+
"properties": {
|
|
4299
|
+
"name": {
|
|
4300
|
+
"description": "Represents name of reuse component",
|
|
4301
|
+
"type": "string",
|
|
4302
|
+
"pattern": "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
4303
|
+
},
|
|
4304
|
+
"componentData": {
|
|
4305
|
+
"description": "Represents component data for the Component",
|
|
4306
|
+
"$ref": "#/definitions/config"
|
|
4307
|
+
},
|
|
4308
|
+
"settings": {
|
|
4309
|
+
"description": "Represents settings for the Component",
|
|
4310
|
+
"$ref": "#/definitions/config"
|
|
4311
|
+
},
|
|
4312
|
+
"lazy": {
|
|
4313
|
+
"description": "Represents Indicator to lazy loading component usage, default true",
|
|
4314
|
+
"type": "boolean",
|
|
4315
|
+
"default": true
|
|
4316
|
+
}
|
|
4317
|
+
}
|
|
4318
|
+
},
|
|
1697
4319
|
"resource": {
|
|
1698
4320
|
"type": "object",
|
|
1699
4321
|
"properties": {
|
|
@@ -1762,7 +4384,7 @@
|
|
|
1762
4384
|
"type": "object",
|
|
1763
4385
|
"additionalProperties": false,
|
|
1764
4386
|
"patternProperties": {
|
|
1765
|
-
"^[\\w
|
|
4387
|
+
"^[\\w\\.\\-\\/]+$": {
|
|
1766
4388
|
"type": "object",
|
|
1767
4389
|
"additionalProperties": false,
|
|
1768
4390
|
"properties": {
|
|
@@ -1811,6 +4433,40 @@
|
|
|
1811
4433
|
}
|
|
1812
4434
|
}
|
|
1813
4435
|
},
|
|
4436
|
+
"launcherValue": {
|
|
4437
|
+
"type": "object",
|
|
4438
|
+
"description": " Represents a value to be used when creating a tile intent for this inbound",
|
|
4439
|
+
"additionalProperties": false,
|
|
4440
|
+
"properties": {
|
|
4441
|
+
"value": {
|
|
4442
|
+
"oneOf": [
|
|
4443
|
+
{
|
|
4444
|
+
"description": "Represents the definition of a single-value tile intent parameter; format property must be 'plain' in this case",
|
|
4445
|
+
"type": "string"
|
|
4446
|
+
},
|
|
4447
|
+
{
|
|
4448
|
+
"description": "Represents the definition of a multi-value tile intent parameter; format property must be 'array' in this case",
|
|
4449
|
+
"type": "array",
|
|
4450
|
+
"items": {
|
|
4451
|
+
"type": "string"
|
|
4452
|
+
}
|
|
4453
|
+
}
|
|
4454
|
+
]
|
|
4455
|
+
},
|
|
4456
|
+
"format": {
|
|
4457
|
+
"description": "Indicates how 'value' is to be interpreted: 'plain': the 'value' is taken as a literal string value | 'array': the 'value' is an array of strings",
|
|
4458
|
+
"type": "string",
|
|
4459
|
+
"enum": [
|
|
4460
|
+
"plain",
|
|
4461
|
+
"array"
|
|
4462
|
+
]
|
|
4463
|
+
},
|
|
4464
|
+
"prompt": {
|
|
4465
|
+
"description": "DEPRECATED - Indicates the administrator should be prompted to supply a value when creating a tile",
|
|
4466
|
+
"type": "boolean"
|
|
4467
|
+
}
|
|
4468
|
+
}
|
|
4469
|
+
},
|
|
1814
4470
|
"required": {
|
|
1815
4471
|
"type": "boolean"
|
|
1816
4472
|
},
|
|
@@ -1885,13 +4541,46 @@
|
|
|
1885
4541
|
"type": "string",
|
|
1886
4542
|
"pattern": "^[\\w\\*]{0,60}$"
|
|
1887
4543
|
},
|
|
4544
|
+
"additionalParameters": {
|
|
4545
|
+
"description": "Indicates whether additional context parameters are to be used: ('ignored': parameters are not used | 'allowed': parameters are passed on to application)",
|
|
4546
|
+
"type": "string",
|
|
4547
|
+
"enum": [
|
|
4548
|
+
"ignored",
|
|
4549
|
+
"allowed"
|
|
4550
|
+
]
|
|
4551
|
+
},
|
|
1888
4552
|
"parameters": {
|
|
1889
4553
|
"description": "Represents parameters for outbound targets",
|
|
1890
4554
|
"type": "object",
|
|
1891
4555
|
"additionalProperties": false,
|
|
1892
4556
|
"patternProperties": {
|
|
1893
|
-
"^[\\w
|
|
1894
|
-
"type": "object"
|
|
4557
|
+
"^[\\w\\.\\-\\/]+$": {
|
|
4558
|
+
"type": "object",
|
|
4559
|
+
"additionalProperties": false,
|
|
4560
|
+
"properties": {
|
|
4561
|
+
"value": {
|
|
4562
|
+
"type": "object",
|
|
4563
|
+
"description": " Represents a value to use in the outbound",
|
|
4564
|
+
"additionalProperties": false,
|
|
4565
|
+
"properties": {
|
|
4566
|
+
"value": {
|
|
4567
|
+
"description": "Represents a verbatim value (format : plain or not supplied) or a binding reference(format : binding)",
|
|
4568
|
+
"type": "string"
|
|
4569
|
+
},
|
|
4570
|
+
"format": {
|
|
4571
|
+
"description": "Indicates how 'value' is to be interpreted: ('plain': the 'value' is taken as a literal string value| 'reference': the 'value' is a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is used)",
|
|
4572
|
+
"type": "string",
|
|
4573
|
+
"enum": [
|
|
4574
|
+
"plain",
|
|
4575
|
+
"binding"
|
|
4576
|
+
]
|
|
4577
|
+
}
|
|
4578
|
+
}
|
|
4579
|
+
},
|
|
4580
|
+
"required": {
|
|
4581
|
+
"type": "boolean"
|
|
4582
|
+
}
|
|
4583
|
+
}
|
|
1895
4584
|
}
|
|
1896
4585
|
}
|
|
1897
4586
|
}
|
|
@@ -1921,6 +4610,10 @@
|
|
|
1921
4610
|
"type": "string",
|
|
1922
4611
|
"pattern": "^[\\w\\*]{0,60}$"
|
|
1923
4612
|
},
|
|
4613
|
+
"hideLauncher": {
|
|
4614
|
+
"description": "Indicates to not expose this inbound as a tile or link",
|
|
4615
|
+
"type": "boolean"
|
|
4616
|
+
},
|
|
1924
4617
|
"icon": {
|
|
1925
4618
|
"description": "Represents icon",
|
|
1926
4619
|
"type": "string"
|
|
@@ -1949,10 +4642,31 @@
|
|
|
1949
4642
|
}
|
|
1950
4643
|
]
|
|
1951
4644
|
},
|
|
4645
|
+
"shortTitle": {
|
|
4646
|
+
"description": "Represents shorter version of the title (language-dependent ) ",
|
|
4647
|
+
"oneOf": [
|
|
4648
|
+
{
|
|
4649
|
+
"$ref": "#/definitions/i18n_key"
|
|
4650
|
+
},
|
|
4651
|
+
{
|
|
4652
|
+
"type": "string",
|
|
4653
|
+
"pattern": "^[^\\W][\\w\\.\\-]*$"
|
|
4654
|
+
}
|
|
4655
|
+
]
|
|
4656
|
+
},
|
|
1952
4657
|
"info": {
|
|
1953
4658
|
"description": "Represents language-dependent additional information to the title",
|
|
1954
4659
|
"$ref": "#/definitions/i18n_key"
|
|
1955
4660
|
},
|
|
4661
|
+
"displayMode": {
|
|
4662
|
+
"description": "Represents the display mode of the tile",
|
|
4663
|
+
"type": "string",
|
|
4664
|
+
"enum": [
|
|
4665
|
+
"ContentMode",
|
|
4666
|
+
"HeaderMode"
|
|
4667
|
+
],
|
|
4668
|
+
"default": "ContentMode"
|
|
4669
|
+
},
|
|
1956
4670
|
"indicatorDataSource": {
|
|
1957
4671
|
"description": "Represents data source",
|
|
1958
4672
|
"type": "object",
|
|
@@ -2042,7 +4756,7 @@
|
|
|
2042
4756
|
},
|
|
2043
4757
|
"i18n_key": {
|
|
2044
4758
|
"type": "string",
|
|
2045
|
-
"pattern": "^\\{\\{[
|
|
4759
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
2046
4760
|
},
|
|
2047
4761
|
"id_def": {
|
|
2048
4762
|
"type": "string",
|