@ui5/manifest 1.67.1 → 1.67.2
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 +5 -1
- package/README.md +8 -4
- package/mapping.json +10 -2
- package/package.json +1 -1
- package/schema.json +489 -466
- package/schema_cil.json +121 -120
- package/types/manifest.d.ts +4 -4
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "SAP JSON schema for Web Application Manifest File",
|
|
3
|
-
"$schema": "
|
|
3
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"required": [
|
|
6
6
|
"_version",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"1.64.0",
|
|
85
85
|
"1.65.0",
|
|
86
86
|
"1.66.0",
|
|
87
|
-
"1.67.
|
|
87
|
+
"1.67.2"
|
|
88
88
|
]
|
|
89
89
|
},
|
|
90
90
|
"start_url": {
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
},
|
|
155
155
|
"id": {
|
|
156
156
|
"description": "Represents mandatory unique app identifier which must correspond to component 'id/namespace'",
|
|
157
|
-
"$ref": "
|
|
157
|
+
"$ref": "#/$defs/id_def"
|
|
158
158
|
},
|
|
159
159
|
"type": {
|
|
160
160
|
"description": "Represents type of an application and can be application or component or library or card",
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"additionalProperties": false,
|
|
200
200
|
"patternProperties": {
|
|
201
201
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
202
|
-
"$ref": "
|
|
202
|
+
"$ref": "#/$defs/terminologySetting"
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
},
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
"type": "array",
|
|
209
209
|
"items": {
|
|
210
210
|
"type": "object",
|
|
211
|
-
"$ref": "
|
|
211
|
+
"$ref": "#/$defs/enhanceWithSetting"
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
}
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"additionalProperties": false,
|
|
248
248
|
"patternProperties": {
|
|
249
249
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
250
|
-
"$ref": "
|
|
250
|
+
"$ref": "#/$defs/terminologySetting"
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
},
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"type": "array",
|
|
257
257
|
"items": {
|
|
258
258
|
"type": "object",
|
|
259
|
-
"$ref": "
|
|
259
|
+
"$ref": "#/$defs/enhanceWithSetting"
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
}
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
],
|
|
272
272
|
"properties": {
|
|
273
273
|
"version": {
|
|
274
|
-
"$ref": "
|
|
274
|
+
"$ref": "#/$defs/version"
|
|
275
275
|
}
|
|
276
276
|
}
|
|
277
277
|
},
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
},
|
|
289
289
|
"title": {
|
|
290
290
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
291
|
-
"$ref": "
|
|
291
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
292
292
|
"i18n": {
|
|
293
293
|
"type": "XTIT",
|
|
294
294
|
"comment": "Application title"
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
},
|
|
297
297
|
"subTitle": {
|
|
298
298
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
299
|
-
"$ref": "
|
|
299
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
300
300
|
"i18n": {
|
|
301
301
|
"type": "XTIT",
|
|
302
302
|
"comment": "Application subtitle"
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
},
|
|
305
305
|
"shortTitle": {
|
|
306
306
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
307
|
-
"$ref": "
|
|
307
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
308
308
|
"i18n": {
|
|
309
309
|
"type": "XTIT",
|
|
310
310
|
"comment": "Shorter version of the application title"
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
},
|
|
313
313
|
"info": {
|
|
314
314
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
315
|
-
"$ref": "
|
|
315
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
316
316
|
"i18n": {
|
|
317
317
|
"type": "YINF",
|
|
318
318
|
"comment": "Additional information to the application title"
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
},
|
|
321
321
|
"description": {
|
|
322
322
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
323
|
-
"$ref": "
|
|
323
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
324
324
|
"i18n": {
|
|
325
325
|
"type": "YDES",
|
|
326
326
|
"comment": "Application description"
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
],
|
|
336
336
|
"properties": {
|
|
337
337
|
"keywords": {
|
|
338
|
-
"$ref": "
|
|
338
|
+
"$ref": "#/$defs/tag"
|
|
339
339
|
},
|
|
340
340
|
"technicalAttributes": {
|
|
341
341
|
"type": "array",
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
"additionalProperties": false,
|
|
358
358
|
"patternProperties": {
|
|
359
359
|
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
360
|
-
"$ref": "
|
|
360
|
+
"$ref": "#/$defs/dataSource"
|
|
361
361
|
}
|
|
362
362
|
}
|
|
363
363
|
},
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
"description": "Represents a collection of directly used open source libs (not when used via UI5 capsulation)",
|
|
394
394
|
"type": "array",
|
|
395
395
|
"items": {
|
|
396
|
-
"$ref": "
|
|
396
|
+
"$ref": "#/$defs/openSource"
|
|
397
397
|
}
|
|
398
398
|
},
|
|
399
399
|
"provider": {
|
|
@@ -436,16 +436,16 @@
|
|
|
436
436
|
},
|
|
437
437
|
"inbounds": {
|
|
438
438
|
"description": "Represents cross navigation for inbound target",
|
|
439
|
-
"$ref": "
|
|
439
|
+
"$ref": "#/$defs/inbound"
|
|
440
440
|
},
|
|
441
441
|
"outbounds": {
|
|
442
442
|
"description": "Describes intents that can be triggered from the application to navigate",
|
|
443
|
-
"$ref": "
|
|
443
|
+
"$ref": "#/$defs/outbound"
|
|
444
444
|
}
|
|
445
445
|
}
|
|
446
446
|
}
|
|
447
447
|
},
|
|
448
|
-
"
|
|
448
|
+
"$defs": {
|
|
449
449
|
"parameter": {
|
|
450
450
|
"type": "object",
|
|
451
451
|
"properties": {
|
|
@@ -524,7 +524,7 @@
|
|
|
524
524
|
"description": "Represents device types on which application is running. Supported device types are desktop, tablet and phone",
|
|
525
525
|
"allOf": [
|
|
526
526
|
{
|
|
527
|
-
"$ref": "
|
|
527
|
+
"$ref": "#/$defs/deviceType"
|
|
528
528
|
},
|
|
529
529
|
{
|
|
530
530
|
"required": [
|
|
@@ -536,7 +536,8 @@
|
|
|
536
536
|
]
|
|
537
537
|
},
|
|
538
538
|
"supportedThemes": {
|
|
539
|
-
"description": "
|
|
539
|
+
"description": "[Deprecated] Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
540
|
+
"deprecated": true,
|
|
540
541
|
"type": "array",
|
|
541
542
|
"items": {
|
|
542
543
|
"type": "string"
|
|
@@ -585,7 +586,7 @@
|
|
|
585
586
|
},
|
|
586
587
|
"resources": {
|
|
587
588
|
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
588
|
-
"$ref": "
|
|
589
|
+
"$ref": "#/$defs/resource"
|
|
589
590
|
},
|
|
590
591
|
"componentUsages": {
|
|
591
592
|
"description": "Represents the explicit usage declaration for UI5 reuse components",
|
|
@@ -593,7 +594,7 @@
|
|
|
593
594
|
"additionalProperties": false,
|
|
594
595
|
"patternProperties": {
|
|
595
596
|
"^[a-zA-Z0-9_\\.]*$": {
|
|
596
|
-
"$ref": "
|
|
597
|
+
"$ref": "#/$defs/componentUsages"
|
|
597
598
|
}
|
|
598
599
|
}
|
|
599
600
|
},
|
|
@@ -607,7 +608,7 @@
|
|
|
607
608
|
"properties": {
|
|
608
609
|
"minUI5Version": {
|
|
609
610
|
"description": "Represents the minimum version of SAP UI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.",
|
|
610
|
-
"$ref": "
|
|
611
|
+
"$ref": "#/$defs/minUI5Version"
|
|
611
612
|
},
|
|
612
613
|
"libs": {
|
|
613
614
|
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
@@ -615,7 +616,7 @@
|
|
|
615
616
|
"additionalProperties": false,
|
|
616
617
|
"patternProperties": {
|
|
617
618
|
"^([a-z][a-z0-9]{0,39})(\\.[a-z][a-z0-9]{0,39})*$": {
|
|
618
|
-
"$ref": "
|
|
619
|
+
"$ref": "#/$defs/lib"
|
|
619
620
|
}
|
|
620
621
|
}
|
|
621
622
|
},
|
|
@@ -625,7 +626,7 @@
|
|
|
625
626
|
"additionalProperties": false,
|
|
626
627
|
"patternProperties": {
|
|
627
628
|
"^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$": {
|
|
628
|
-
"$ref": "
|
|
629
|
+
"$ref": "#/$defs/component"
|
|
629
630
|
}
|
|
630
631
|
}
|
|
631
632
|
}
|
|
@@ -637,7 +638,7 @@
|
|
|
637
638
|
"additionalProperties": false,
|
|
638
639
|
"patternProperties": {
|
|
639
640
|
"^[a-zA-Z0-9_\\.\\-\\|@]*$": {
|
|
640
|
-
"$ref": "
|
|
641
|
+
"$ref": "#/$defs/model"
|
|
641
642
|
}
|
|
642
643
|
}
|
|
643
644
|
},
|
|
@@ -647,7 +648,7 @@
|
|
|
647
648
|
"additionalProperties": false,
|
|
648
649
|
"patternProperties": {
|
|
649
650
|
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
650
|
-
"$ref": "
|
|
651
|
+
"$ref": "#/$defs/resourceRoot"
|
|
651
652
|
}
|
|
652
653
|
}
|
|
653
654
|
},
|
|
@@ -662,7 +663,7 @@
|
|
|
662
663
|
"additionalProperties": false,
|
|
663
664
|
"patternProperties": {
|
|
664
665
|
"[\\s\\S]*": {
|
|
665
|
-
"$ref": "
|
|
666
|
+
"$ref": "#/$defs/config"
|
|
666
667
|
}
|
|
667
668
|
}
|
|
668
669
|
},
|
|
@@ -673,11 +674,11 @@
|
|
|
673
674
|
"properties": {
|
|
674
675
|
"component": {
|
|
675
676
|
"description": "Represents the component name",
|
|
676
|
-
"$ref": "
|
|
677
|
+
"$ref": "#/$defs/id_def"
|
|
677
678
|
},
|
|
678
679
|
"minVersion": {
|
|
679
680
|
"description": "Represents minimal version of the component",
|
|
680
|
-
"$ref": "
|
|
681
|
+
"$ref": "#/$defs/version"
|
|
681
682
|
},
|
|
682
683
|
"extensions": {
|
|
683
684
|
"description": "Represents extensions of the component",
|
|
@@ -750,7 +751,7 @@
|
|
|
750
751
|
"additionalProperties": false,
|
|
751
752
|
"patternProperties": {
|
|
752
753
|
"[\\s\\S]*": {
|
|
753
|
-
"$ref": "
|
|
754
|
+
"$ref": "#/$defs/service"
|
|
754
755
|
}
|
|
755
756
|
}
|
|
756
757
|
},
|
|
@@ -795,7 +796,7 @@
|
|
|
795
796
|
"additionalProperties": false,
|
|
796
797
|
"patternProperties": {
|
|
797
798
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
798
|
-
"$ref": "
|
|
799
|
+
"$ref": "#/$defs/terminologySetting"
|
|
799
800
|
}
|
|
800
801
|
}
|
|
801
802
|
},
|
|
@@ -804,7 +805,7 @@
|
|
|
804
805
|
"type": "array",
|
|
805
806
|
"items": {
|
|
806
807
|
"type": "object",
|
|
807
|
-
"$ref": "
|
|
808
|
+
"$ref": "#/$defs/enhanceWithSetting"
|
|
808
809
|
}
|
|
809
810
|
}
|
|
810
811
|
}
|
|
@@ -834,7 +835,7 @@
|
|
|
834
835
|
"additionalProperties": false,
|
|
835
836
|
"patternProperties": {
|
|
836
837
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
837
|
-
"$ref": "
|
|
838
|
+
"$ref": "#/$defs/terminologySetting"
|
|
838
839
|
}
|
|
839
840
|
}
|
|
840
841
|
},
|
|
@@ -843,7 +844,7 @@
|
|
|
843
844
|
"type": "array",
|
|
844
845
|
"items": {
|
|
845
846
|
"type": "object",
|
|
846
|
-
"$ref": "
|
|
847
|
+
"$ref": "#/$defs/enhanceWithSetting"
|
|
847
848
|
}
|
|
848
849
|
}
|
|
849
850
|
}
|
|
@@ -852,7 +853,7 @@
|
|
|
852
853
|
},
|
|
853
854
|
"css": {
|
|
854
855
|
"description": "Flag whether the library contains a CSS file or not.",
|
|
855
|
-
"$ref": "
|
|
856
|
+
"$ref": "#/$defs/booleanOrString"
|
|
856
857
|
},
|
|
857
858
|
"content": {
|
|
858
859
|
"description": "Represents the content of a library. Content are controls, elements, types and interfaces.",
|
|
@@ -866,7 +867,7 @@
|
|
|
866
867
|
"additionalProperties": false,
|
|
867
868
|
"patternProperties": {
|
|
868
869
|
"^[A-Za-z_][A-Za-z0-9_\\-\\|@]+$": {
|
|
869
|
-
"$ref": "
|
|
870
|
+
"$ref": "#/$defs/command"
|
|
870
871
|
}
|
|
871
872
|
}
|
|
872
873
|
},
|
|
@@ -898,10 +899,10 @@
|
|
|
898
899
|
]
|
|
899
900
|
},
|
|
900
901
|
"routing": {
|
|
901
|
-
"$ref": "
|
|
902
|
+
"$ref": "#/$defs/routing_flexEnabled"
|
|
902
903
|
},
|
|
903
904
|
"rootView": {
|
|
904
|
-
"$ref": "
|
|
905
|
+
"$ref": "#/$defs/rootView_def_flexEnabled"
|
|
905
906
|
}
|
|
906
907
|
}
|
|
907
908
|
},
|
|
@@ -916,17 +917,17 @@
|
|
|
916
917
|
]
|
|
917
918
|
},
|
|
918
919
|
"routing": {
|
|
919
|
-
"$ref": "
|
|
920
|
+
"$ref": "#/$defs/routing"
|
|
920
921
|
},
|
|
921
922
|
"rootView": {
|
|
922
|
-
"$ref": "
|
|
923
|
+
"$ref": "#/$defs/rootView_def"
|
|
923
924
|
}
|
|
924
925
|
}
|
|
925
926
|
}
|
|
926
927
|
]
|
|
927
928
|
}
|
|
928
929
|
],
|
|
929
|
-
"
|
|
930
|
+
"$defs": {
|
|
930
931
|
"deviceType": {
|
|
931
932
|
"type": "object",
|
|
932
933
|
"description": "Represents device types on which the app is running",
|
|
@@ -1149,7 +1150,7 @@
|
|
|
1149
1150
|
},
|
|
1150
1151
|
"settings": {
|
|
1151
1152
|
"description": "Represents global settings for the application controller",
|
|
1152
|
-
"$ref": "
|
|
1153
|
+
"$ref": "#/$defs/setting_def"
|
|
1153
1154
|
},
|
|
1154
1155
|
"pages": {
|
|
1155
1156
|
"description": "Represents one ore more pages of an application. UI5 routing is created from the definitions in this section",
|
|
@@ -1157,7 +1158,7 @@
|
|
|
1157
1158
|
{
|
|
1158
1159
|
"type": "array",
|
|
1159
1160
|
"items": {
|
|
1160
|
-
"$ref": "
|
|
1161
|
+
"$ref": "#/$defs/pages_array"
|
|
1161
1162
|
}
|
|
1162
1163
|
},
|
|
1163
1164
|
{
|
|
@@ -1165,7 +1166,7 @@
|
|
|
1165
1166
|
"additionalProperties": false,
|
|
1166
1167
|
"patternProperties": {
|
|
1167
1168
|
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
1168
|
-
"$ref": "
|
|
1169
|
+
"$ref": "#/$defs/pages_map"
|
|
1169
1170
|
}
|
|
1170
1171
|
}
|
|
1171
1172
|
}
|
|
@@ -1248,7 +1249,7 @@
|
|
|
1248
1249
|
"required": [
|
|
1249
1250
|
"cards"
|
|
1250
1251
|
],
|
|
1251
|
-
"
|
|
1252
|
+
"dependentRequired": {
|
|
1252
1253
|
"globalFilterEntityType": [
|
|
1253
1254
|
"globalFilterModel"
|
|
1254
1255
|
]
|
|
@@ -1347,7 +1348,7 @@
|
|
|
1347
1348
|
},
|
|
1348
1349
|
"refreshStrategyOnAppRestore": {
|
|
1349
1350
|
"description": "Represents the refresh strategies configured for OVP while coming back to the source app",
|
|
1350
|
-
"$ref": "
|
|
1351
|
+
"$ref": "#/$defs/refreshStrategies_prop_def"
|
|
1351
1352
|
},
|
|
1352
1353
|
"considerAnalyticalParameters": {
|
|
1353
1354
|
"description": "Flag to enable/disable analytical parameter support for Smart filter bar",
|
|
@@ -1402,7 +1403,7 @@
|
|
|
1402
1403
|
"type": "object",
|
|
1403
1404
|
"patternProperties": {
|
|
1404
1405
|
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1405
|
-
"$ref": "
|
|
1406
|
+
"$ref": "#/$defs/filterFieldName"
|
|
1406
1407
|
}
|
|
1407
1408
|
}
|
|
1408
1409
|
}
|
|
@@ -1431,7 +1432,7 @@
|
|
|
1431
1432
|
"additionalProperties": false,
|
|
1432
1433
|
"patternProperties": {
|
|
1433
1434
|
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
1434
|
-
"$ref": "
|
|
1435
|
+
"$ref": "#/$defs/card"
|
|
1435
1436
|
}
|
|
1436
1437
|
}
|
|
1437
1438
|
},
|
|
@@ -1440,7 +1441,7 @@
|
|
|
1440
1441
|
"additionalProperties": false,
|
|
1441
1442
|
"patternProperties": {
|
|
1442
1443
|
"^cols_[0-9]+$": {
|
|
1443
|
-
"$ref": "
|
|
1444
|
+
"$ref": "#/$defs/resizableLayoutVariant"
|
|
1444
1445
|
}
|
|
1445
1446
|
}
|
|
1446
1447
|
}
|
|
@@ -1503,7 +1504,8 @@
|
|
|
1503
1504
|
"default": true
|
|
1504
1505
|
},
|
|
1505
1506
|
"rank": {
|
|
1506
|
-
"description": "Deprecated
|
|
1507
|
+
"description": "[Deprecated] Represents the display order of Insights card",
|
|
1508
|
+
"deprecated": true,
|
|
1507
1509
|
"type": "integer"
|
|
1508
1510
|
},
|
|
1509
1511
|
"versions": {
|
|
@@ -1777,7 +1779,7 @@
|
|
|
1777
1779
|
"additionalProperties": false,
|
|
1778
1780
|
"patternProperties": {
|
|
1779
1781
|
"^[a-zA-Z0-9_\\.\\-]*": {
|
|
1780
|
-
"$ref": "
|
|
1782
|
+
"$ref": "#/$defs/definingRequest"
|
|
1781
1783
|
}
|
|
1782
1784
|
}
|
|
1783
1785
|
}
|
|
@@ -2002,7 +2004,8 @@
|
|
|
2002
2004
|
},
|
|
2003
2005
|
"designtime": {
|
|
2004
2006
|
"description": "[Deprecated] The path to the design time folder with assets files",
|
|
2005
|
-
"type": "string"
|
|
2007
|
+
"type": "string",
|
|
2008
|
+
"deprecated": true
|
|
2006
2009
|
},
|
|
2007
2010
|
"configuration": {
|
|
2008
2011
|
"description": "General configuration of the card. Allows to define parameters, destinations, filters and more",
|
|
@@ -2028,7 +2031,7 @@
|
|
|
2028
2031
|
"type": "number"
|
|
2029
2032
|
},
|
|
2030
2033
|
{
|
|
2031
|
-
"$ref": "
|
|
2034
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2032
2035
|
}
|
|
2033
2036
|
],
|
|
2034
2037
|
"default": 1000
|
|
@@ -2037,7 +2040,7 @@
|
|
|
2037
2040
|
"description": "Map of parameters",
|
|
2038
2041
|
"type": "object",
|
|
2039
2042
|
"additionalProperties": {
|
|
2040
|
-
"$ref": "
|
|
2043
|
+
"$ref": "#/$defs/Configuration.Parameter"
|
|
2041
2044
|
}
|
|
2042
2045
|
},
|
|
2043
2046
|
"filters": {
|
|
@@ -2045,16 +2048,16 @@
|
|
|
2045
2048
|
"additionalProperties": {
|
|
2046
2049
|
"oneOf": [
|
|
2047
2050
|
{
|
|
2048
|
-
"$ref": "
|
|
2051
|
+
"$ref": "#/$defs/Configuration.FilterType.Select"
|
|
2049
2052
|
},
|
|
2050
2053
|
{
|
|
2051
|
-
"$ref": "
|
|
2054
|
+
"$ref": "#/$defs/Configuration.FilterType.DateRange"
|
|
2052
2055
|
},
|
|
2053
2056
|
{
|
|
2054
|
-
"$ref": "
|
|
2057
|
+
"$ref": "#/$defs/Configuration.FilterType.Search"
|
|
2055
2058
|
},
|
|
2056
2059
|
{
|
|
2057
|
-
"$ref": "
|
|
2060
|
+
"$ref": "#/$defs/Configuration.FilterType.ComboBox"
|
|
2058
2061
|
}
|
|
2059
2062
|
]
|
|
2060
2063
|
}
|
|
@@ -2063,14 +2066,14 @@
|
|
|
2063
2066
|
"description": "Describes what destinations are used by the card",
|
|
2064
2067
|
"type": "object",
|
|
2065
2068
|
"additionalProperties": {
|
|
2066
|
-
"$ref": "
|
|
2069
|
+
"$ref": "#/$defs/Configuration.Destinations"
|
|
2067
2070
|
}
|
|
2068
2071
|
},
|
|
2069
2072
|
"csrfTokens": {
|
|
2070
2073
|
"description": "Describes the CSRF tokens used by the card",
|
|
2071
2074
|
"type": "object",
|
|
2072
2075
|
"additionalProperties": {
|
|
2073
|
-
"$ref": "
|
|
2076
|
+
"$ref": "#/$defs/Configuration.CSRFToken"
|
|
2074
2077
|
}
|
|
2075
2078
|
},
|
|
2076
2079
|
"actionHandlers": {
|
|
@@ -2088,7 +2091,7 @@
|
|
|
2088
2091
|
"description": "Describes the messages for the card",
|
|
2089
2092
|
"type": "object",
|
|
2090
2093
|
"additionalProperties": {
|
|
2091
|
-
"$ref": "
|
|
2094
|
+
"$ref": "#/$defs/Configuration.NoData"
|
|
2092
2095
|
}
|
|
2093
2096
|
},
|
|
2094
2097
|
"componentData": {
|
|
@@ -2114,7 +2117,7 @@
|
|
|
2114
2117
|
]
|
|
2115
2118
|
},
|
|
2116
2119
|
"data": {
|
|
2117
|
-
"$ref": "
|
|
2120
|
+
"$ref": "#/$defs/data"
|
|
2118
2121
|
},
|
|
2119
2122
|
"headerPosition": {
|
|
2120
2123
|
"description": "Represents card header position - under or over the content",
|
|
@@ -2128,13 +2131,13 @@
|
|
|
2128
2131
|
"default": "Top"
|
|
2129
2132
|
},
|
|
2130
2133
|
{
|
|
2131
|
-
"$ref": "
|
|
2134
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2132
2135
|
}
|
|
2133
2136
|
]
|
|
2134
2137
|
},
|
|
2135
2138
|
"header": {
|
|
2136
2139
|
"description": "Represents card header attributes",
|
|
2137
|
-
"$ref": "
|
|
2140
|
+
"$ref": "#/$defs/HeaderType"
|
|
2138
2141
|
},
|
|
2139
2142
|
"content": {
|
|
2140
2143
|
"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"
|
|
@@ -2154,11 +2157,11 @@
|
|
|
2154
2157
|
{
|
|
2155
2158
|
"type": "array",
|
|
2156
2159
|
"items": {
|
|
2157
|
-
"$ref": "
|
|
2160
|
+
"$ref": "#/$defs/actionsStripItem"
|
|
2158
2161
|
}
|
|
2159
2162
|
},
|
|
2160
2163
|
{
|
|
2161
|
-
"$ref": "
|
|
2164
|
+
"$ref": "#/$defs/actionsStrip"
|
|
2162
2165
|
}
|
|
2163
2166
|
]
|
|
2164
2167
|
},
|
|
@@ -2174,7 +2177,7 @@
|
|
|
2174
2177
|
"type": "number"
|
|
2175
2178
|
},
|
|
2176
2179
|
{
|
|
2177
|
-
"$ref": "
|
|
2180
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2178
2181
|
}
|
|
2179
2182
|
]
|
|
2180
2183
|
},
|
|
@@ -2185,7 +2188,7 @@
|
|
|
2185
2188
|
"type": "number"
|
|
2186
2189
|
},
|
|
2187
2190
|
{
|
|
2188
|
-
"$ref": "
|
|
2191
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2189
2192
|
}
|
|
2190
2193
|
]
|
|
2191
2194
|
}
|
|
@@ -2193,7 +2196,7 @@
|
|
|
2193
2196
|
},
|
|
2194
2197
|
"visible": {
|
|
2195
2198
|
"description": "[Experimental] Visibility of the footer",
|
|
2196
|
-
"$ref": "
|
|
2199
|
+
"$ref": "#/$defs/visibility"
|
|
2197
2200
|
}
|
|
2198
2201
|
}
|
|
2199
2202
|
},
|
|
@@ -2218,7 +2221,7 @@
|
|
|
2218
2221
|
"then": {
|
|
2219
2222
|
"properties": {
|
|
2220
2223
|
"content": {
|
|
2221
|
-
"$ref": "
|
|
2224
|
+
"$ref": "#/$defs/ContentType.List"
|
|
2222
2225
|
}
|
|
2223
2226
|
}
|
|
2224
2227
|
}
|
|
@@ -2234,7 +2237,7 @@
|
|
|
2234
2237
|
"then": {
|
|
2235
2238
|
"properties": {
|
|
2236
2239
|
"content": {
|
|
2237
|
-
"$ref": "
|
|
2240
|
+
"$ref": "#/$defs/ContentType.Analytical"
|
|
2238
2241
|
}
|
|
2239
2242
|
}
|
|
2240
2243
|
}
|
|
@@ -2250,7 +2253,7 @@
|
|
|
2250
2253
|
"then": {
|
|
2251
2254
|
"properties": {
|
|
2252
2255
|
"content": {
|
|
2253
|
-
"$ref": "
|
|
2256
|
+
"$ref": "#/$defs/ContentType.AnalyticsCloud"
|
|
2254
2257
|
}
|
|
2255
2258
|
}
|
|
2256
2259
|
}
|
|
@@ -2266,7 +2269,7 @@
|
|
|
2266
2269
|
"then": {
|
|
2267
2270
|
"properties": {
|
|
2268
2271
|
"content": {
|
|
2269
|
-
"$ref": "
|
|
2272
|
+
"$ref": "#/$defs/ContentType.Timeline"
|
|
2270
2273
|
}
|
|
2271
2274
|
}
|
|
2272
2275
|
}
|
|
@@ -2282,7 +2285,7 @@
|
|
|
2282
2285
|
"then": {
|
|
2283
2286
|
"properties": {
|
|
2284
2287
|
"content": {
|
|
2285
|
-
"$ref": "
|
|
2288
|
+
"$ref": "#/$defs/ContentType.Table"
|
|
2286
2289
|
}
|
|
2287
2290
|
}
|
|
2288
2291
|
}
|
|
@@ -2298,7 +2301,7 @@
|
|
|
2298
2301
|
"then": {
|
|
2299
2302
|
"properties": {
|
|
2300
2303
|
"content": {
|
|
2301
|
-
"$ref": "
|
|
2304
|
+
"$ref": "#/$defs/ContentType.Object"
|
|
2302
2305
|
}
|
|
2303
2306
|
}
|
|
2304
2307
|
}
|
|
@@ -2314,7 +2317,7 @@
|
|
|
2314
2317
|
"then": {
|
|
2315
2318
|
"properties": {
|
|
2316
2319
|
"content": {
|
|
2317
|
-
"$ref": "
|
|
2320
|
+
"$ref": "#/$defs/ContentType.Component"
|
|
2318
2321
|
}
|
|
2319
2322
|
}
|
|
2320
2323
|
}
|
|
@@ -2330,7 +2333,7 @@
|
|
|
2330
2333
|
"then": {
|
|
2331
2334
|
"properties": {
|
|
2332
2335
|
"content": {
|
|
2333
|
-
"$ref": "
|
|
2336
|
+
"$ref": "#/$defs/ContentType.Calendar"
|
|
2334
2337
|
}
|
|
2335
2338
|
}
|
|
2336
2339
|
}
|
|
@@ -2346,7 +2349,7 @@
|
|
|
2346
2349
|
"then": {
|
|
2347
2350
|
"properties": {
|
|
2348
2351
|
"content": {
|
|
2349
|
-
"$ref": "
|
|
2352
|
+
"$ref": "#/$defs/ContentType.AdaptiveCard"
|
|
2350
2353
|
}
|
|
2351
2354
|
}
|
|
2352
2355
|
}
|
|
@@ -2362,7 +2365,7 @@
|
|
|
2362
2365
|
"then": {
|
|
2363
2366
|
"properties": {
|
|
2364
2367
|
"content": {
|
|
2365
|
-
"$ref": "
|
|
2368
|
+
"$ref": "#/$defs/ContentType.WebPage"
|
|
2366
2369
|
}
|
|
2367
2370
|
}
|
|
2368
2371
|
}
|
|
@@ -2394,7 +2397,7 @@
|
|
|
2394
2397
|
},
|
|
2395
2398
|
"id": {
|
|
2396
2399
|
"description": "Represents mandatory unique package identifier",
|
|
2397
|
-
"$ref": "
|
|
2400
|
+
"$ref": "#/$defs/iddef"
|
|
2398
2401
|
},
|
|
2399
2402
|
"i18n": {
|
|
2400
2403
|
"default": "i18n/i18n.properties",
|
|
@@ -2415,7 +2418,7 @@
|
|
|
2415
2418
|
"properties": {
|
|
2416
2419
|
"version": {
|
|
2417
2420
|
"description": "Represents mandatory semantic version of the package",
|
|
2418
|
-
"$ref": "
|
|
2421
|
+
"$ref": "#/$defs/semanticversion"
|
|
2419
2422
|
},
|
|
2420
2423
|
"upgradeNotification": {
|
|
2421
2424
|
"description": "Represents optional upgrade notification once the package is available. none - no notification, package will be installed automatically for any version. major - notification before a new major version is installed. major.minor - notification before a major and minor version is installed. all - notification before any new version is installed, including patches",
|
|
@@ -2441,7 +2444,7 @@
|
|
|
2441
2444
|
},
|
|
2442
2445
|
"title": {
|
|
2443
2446
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2444
|
-
"$ref": "
|
|
2447
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2445
2448
|
"i18n": {
|
|
2446
2449
|
"type": "XTIT",
|
|
2447
2450
|
"comment": "Package title"
|
|
@@ -2449,7 +2452,7 @@
|
|
|
2449
2452
|
},
|
|
2450
2453
|
"subTitle": {
|
|
2451
2454
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2452
|
-
"$ref": "
|
|
2455
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2453
2456
|
"i18n": {
|
|
2454
2457
|
"type": "XTIT",
|
|
2455
2458
|
"comment": "Package subtitle"
|
|
@@ -2457,7 +2460,7 @@
|
|
|
2457
2460
|
},
|
|
2458
2461
|
"shortTitle": {
|
|
2459
2462
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2460
|
-
"$ref": "
|
|
2463
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2461
2464
|
"i18n": {
|
|
2462
2465
|
"type": "XTIT",
|
|
2463
2466
|
"comment": "Shorter version of the package title"
|
|
@@ -2465,7 +2468,7 @@
|
|
|
2465
2468
|
},
|
|
2466
2469
|
"info": {
|
|
2467
2470
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2468
|
-
"$ref": "
|
|
2471
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2469
2472
|
"i18n": {
|
|
2470
2473
|
"type": "YINF",
|
|
2471
2474
|
"comment": "Additional information to the package title"
|
|
@@ -2473,7 +2476,7 @@
|
|
|
2473
2476
|
},
|
|
2474
2477
|
"description": {
|
|
2475
2478
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2476
|
-
"$ref": "
|
|
2479
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2477
2480
|
"i18n": {
|
|
2478
2481
|
"type": "YDES",
|
|
2479
2482
|
"comment": "Package description"
|
|
@@ -2492,7 +2495,7 @@
|
|
|
2492
2495
|
],
|
|
2493
2496
|
"properties": {
|
|
2494
2497
|
"keywords": {
|
|
2495
|
-
"$ref": "
|
|
2498
|
+
"$ref": "#/$defs/tag"
|
|
2496
2499
|
},
|
|
2497
2500
|
"technicalAttributes": {
|
|
2498
2501
|
"type": "array",
|
|
@@ -2505,25 +2508,25 @@
|
|
|
2505
2508
|
},
|
|
2506
2509
|
"vendor": {
|
|
2507
2510
|
"description": "Represents the support information",
|
|
2508
|
-
"$ref": "
|
|
2511
|
+
"$ref": "#/$defs/vendor"
|
|
2509
2512
|
},
|
|
2510
2513
|
"homepage": {
|
|
2511
2514
|
"description": "Represents the homepage information",
|
|
2512
|
-
"$ref": "
|
|
2515
|
+
"$ref": "#/$defs/infolink"
|
|
2513
2516
|
},
|
|
2514
2517
|
"support": {
|
|
2515
2518
|
"description": "Represents the support information",
|
|
2516
|
-
"$ref": "
|
|
2519
|
+
"$ref": "#/$defs/infolink"
|
|
2517
2520
|
},
|
|
2518
2521
|
"documentation": {
|
|
2519
2522
|
"description": "Represents the documentation information",
|
|
2520
|
-
"$ref": "
|
|
2523
|
+
"$ref": "#/$defs/infolink"
|
|
2521
2524
|
},
|
|
2522
2525
|
"contents": {
|
|
2523
2526
|
"type": "array",
|
|
2524
2527
|
"items": {
|
|
2525
2528
|
"description": "Represents the artifacts contained in the package",
|
|
2526
|
-
"$ref": "
|
|
2529
|
+
"$ref": "#/$defs/contentitem"
|
|
2527
2530
|
}
|
|
2528
2531
|
},
|
|
2529
2532
|
"consumption": {
|
|
@@ -2580,7 +2583,7 @@
|
|
|
2580
2583
|
},
|
|
2581
2584
|
"id": {
|
|
2582
2585
|
"description": "Represents mandatory unique artifact identifier",
|
|
2583
|
-
"$ref": "
|
|
2586
|
+
"$ref": "#/$defs/iddef"
|
|
2584
2587
|
},
|
|
2585
2588
|
"i18n": {
|
|
2586
2589
|
"default": "i18n/i18n.properties",
|
|
@@ -2600,7 +2603,7 @@
|
|
|
2600
2603
|
],
|
|
2601
2604
|
"properties": {
|
|
2602
2605
|
"version": {
|
|
2603
|
-
"$ref": "
|
|
2606
|
+
"$ref": "#/$defs/semanticversion"
|
|
2604
2607
|
}
|
|
2605
2608
|
}
|
|
2606
2609
|
},
|
|
@@ -2615,7 +2618,7 @@
|
|
|
2615
2618
|
},
|
|
2616
2619
|
"title": {
|
|
2617
2620
|
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2618
|
-
"$ref": "
|
|
2621
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2619
2622
|
"i18n": {
|
|
2620
2623
|
"type": "XTIT",
|
|
2621
2624
|
"comment": "Artifact title"
|
|
@@ -2623,7 +2626,7 @@
|
|
|
2623
2626
|
},
|
|
2624
2627
|
"subTitle": {
|
|
2625
2628
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2626
|
-
"$ref": "
|
|
2629
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2627
2630
|
"i18n": {
|
|
2628
2631
|
"type": "XTIT",
|
|
2629
2632
|
"comment": "Artifact subtitle"
|
|
@@ -2631,7 +2634,7 @@
|
|
|
2631
2634
|
},
|
|
2632
2635
|
"shortTitle": {
|
|
2633
2636
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2634
|
-
"$ref": "
|
|
2637
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2635
2638
|
"i18n": {
|
|
2636
2639
|
"type": "XTIT",
|
|
2637
2640
|
"comment": "Shorter version of the artifact title"
|
|
@@ -2639,7 +2642,7 @@
|
|
|
2639
2642
|
},
|
|
2640
2643
|
"info": {
|
|
2641
2644
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2642
|
-
"$ref": "
|
|
2645
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2643
2646
|
"i18n": {
|
|
2644
2647
|
"type": "YINF",
|
|
2645
2648
|
"comment": "Additional information to the artifact title"
|
|
@@ -2647,7 +2650,7 @@
|
|
|
2647
2650
|
},
|
|
2648
2651
|
"description": {
|
|
2649
2652
|
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2650
|
-
"$ref": "
|
|
2653
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2651
2654
|
"i18n": {
|
|
2652
2655
|
"type": "YDES",
|
|
2653
2656
|
"comment": "Artifact description"
|
|
@@ -2666,7 +2669,7 @@
|
|
|
2666
2669
|
],
|
|
2667
2670
|
"properties": {
|
|
2668
2671
|
"keywords": {
|
|
2669
|
-
"$ref": "
|
|
2672
|
+
"$ref": "#/$defs/tag"
|
|
2670
2673
|
},
|
|
2671
2674
|
"technicalAttributes": {
|
|
2672
2675
|
"type": "array",
|
|
@@ -2788,14 +2791,14 @@
|
|
|
2788
2791
|
"description": "Represents an object with reference to the generated cards",
|
|
2789
2792
|
"properties": {
|
|
2790
2793
|
"ObjectPage": {
|
|
2791
|
-
"$ref": "
|
|
2794
|
+
"$ref": "#/$defs/embedsSettings"
|
|
2792
2795
|
}
|
|
2793
2796
|
}
|
|
2794
2797
|
}
|
|
2795
2798
|
}
|
|
2796
2799
|
}
|
|
2797
2800
|
},
|
|
2798
|
-
"
|
|
2801
|
+
"$defs": {
|
|
2799
2802
|
"manifestSettings": {
|
|
2800
2803
|
"description": "Represents the manifest settings",
|
|
2801
2804
|
"type": "object",
|
|
@@ -2826,7 +2829,7 @@
|
|
|
2826
2829
|
"^[a-zA-Z0-9_]+$": {
|
|
2827
2830
|
"type": "array",
|
|
2828
2831
|
"items": {
|
|
2829
|
-
"$ref": "
|
|
2832
|
+
"$ref": "#/$defs/manifestSettings"
|
|
2830
2833
|
}
|
|
2831
2834
|
}
|
|
2832
2835
|
}
|
|
@@ -2837,7 +2840,7 @@
|
|
|
2837
2840
|
"type": "array",
|
|
2838
2841
|
"items": {
|
|
2839
2842
|
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
2840
|
-
"$ref": "
|
|
2843
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
2841
2844
|
"type": "string"
|
|
2842
2845
|
}
|
|
2843
2846
|
},
|
|
@@ -2935,7 +2938,7 @@
|
|
|
2935
2938
|
"additionalProperties": false,
|
|
2936
2939
|
"properties": {
|
|
2937
2940
|
"template": {
|
|
2938
|
-
"$ref": "
|
|
2941
|
+
"$ref": "#/$defs/actionsStripItem"
|
|
2939
2942
|
},
|
|
2940
2943
|
"path": {
|
|
2941
2944
|
"type": "string"
|
|
@@ -2953,7 +2956,7 @@
|
|
|
2953
2956
|
"type": "number"
|
|
2954
2957
|
},
|
|
2955
2958
|
{
|
|
2956
|
-
"$ref": "
|
|
2959
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2957
2960
|
}
|
|
2958
2961
|
]
|
|
2959
2962
|
},
|
|
@@ -2970,10 +2973,10 @@
|
|
|
2970
2973
|
"type": "string",
|
|
2971
2974
|
"oneOf": [
|
|
2972
2975
|
{
|
|
2973
|
-
"$ref": "
|
|
2976
|
+
"$ref": "#/$defs/Enums.ValueColor"
|
|
2974
2977
|
},
|
|
2975
2978
|
{
|
|
2976
|
-
"$ref": "
|
|
2979
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2977
2980
|
}
|
|
2978
2981
|
]
|
|
2979
2982
|
}
|
|
@@ -2990,7 +2993,7 @@
|
|
|
2990
2993
|
"type": "number"
|
|
2991
2994
|
},
|
|
2992
2995
|
{
|
|
2993
|
-
"$ref": "
|
|
2996
|
+
"$ref": "#/$defs/simpleBinding"
|
|
2994
2997
|
}
|
|
2995
2998
|
]
|
|
2996
2999
|
},
|
|
@@ -2999,10 +3002,10 @@
|
|
|
2999
3002
|
"type": "string",
|
|
3000
3003
|
"oneOf": [
|
|
3001
3004
|
{
|
|
3002
|
-
"$ref": "
|
|
3005
|
+
"$ref": "#/$defs/Enums.ValueColor"
|
|
3003
3006
|
},
|
|
3004
3007
|
{
|
|
3005
|
-
"$ref": "
|
|
3008
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3006
3009
|
}
|
|
3007
3010
|
]
|
|
3008
3011
|
}
|
|
@@ -3027,7 +3030,7 @@
|
|
|
3027
3030
|
"type": "number"
|
|
3028
3031
|
},
|
|
3029
3032
|
{
|
|
3030
|
-
"$ref": "
|
|
3033
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3031
3034
|
}
|
|
3032
3035
|
]
|
|
3033
3036
|
},
|
|
@@ -3043,7 +3046,7 @@
|
|
|
3043
3046
|
"default": true
|
|
3044
3047
|
},
|
|
3045
3048
|
{
|
|
3046
|
-
"$ref": "
|
|
3049
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3047
3050
|
}
|
|
3048
3051
|
]
|
|
3049
3052
|
},
|
|
@@ -3051,12 +3054,12 @@
|
|
|
3051
3054
|
"description": "The bars of the chart",
|
|
3052
3055
|
"type": "array",
|
|
3053
3056
|
"items": {
|
|
3054
|
-
"$ref": "
|
|
3057
|
+
"$ref": "#/$defs/MicroChart.StackedBar.Bar"
|
|
3055
3058
|
}
|
|
3056
3059
|
},
|
|
3057
3060
|
"visible": {
|
|
3058
3061
|
"description": "Represents the visibility of the chart bar",
|
|
3059
|
-
"$ref": "
|
|
3062
|
+
"$ref": "#/$defs/visibility"
|
|
3060
3063
|
}
|
|
3061
3064
|
}
|
|
3062
3065
|
},
|
|
@@ -3079,7 +3082,7 @@
|
|
|
3079
3082
|
"type": "number"
|
|
3080
3083
|
},
|
|
3081
3084
|
{
|
|
3082
|
-
"$ref": "
|
|
3085
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3083
3086
|
}
|
|
3084
3087
|
]
|
|
3085
3088
|
},
|
|
@@ -3090,7 +3093,7 @@
|
|
|
3090
3093
|
"type": "number"
|
|
3091
3094
|
},
|
|
3092
3095
|
{
|
|
3093
|
-
"$ref": "
|
|
3096
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3094
3097
|
}
|
|
3095
3098
|
]
|
|
3096
3099
|
},
|
|
@@ -3101,7 +3104,7 @@
|
|
|
3101
3104
|
"type": "number"
|
|
3102
3105
|
},
|
|
3103
3106
|
{
|
|
3104
|
-
"$ref": "
|
|
3107
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3105
3108
|
}
|
|
3106
3109
|
]
|
|
3107
3110
|
},
|
|
@@ -3116,7 +3119,7 @@
|
|
|
3116
3119
|
"type": "number"
|
|
3117
3120
|
},
|
|
3118
3121
|
{
|
|
3119
|
-
"$ref": "
|
|
3122
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3120
3123
|
}
|
|
3121
3124
|
]
|
|
3122
3125
|
},
|
|
@@ -3129,10 +3132,10 @@
|
|
|
3129
3132
|
"type": "string",
|
|
3130
3133
|
"oneOf": [
|
|
3131
3134
|
{
|
|
3132
|
-
"$ref": "
|
|
3135
|
+
"$ref": "#/$defs/Enums.ValueColor"
|
|
3133
3136
|
},
|
|
3134
3137
|
{
|
|
3135
|
-
"$ref": "
|
|
3138
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3136
3139
|
}
|
|
3137
3140
|
]
|
|
3138
3141
|
},
|
|
@@ -3140,12 +3143,12 @@
|
|
|
3140
3143
|
"description": "The thresholds indicators of the bar",
|
|
3141
3144
|
"type": "array",
|
|
3142
3145
|
"items": {
|
|
3143
|
-
"$ref": "
|
|
3146
|
+
"$ref": "#/$defs/MicroChart.Bullet.Threshold"
|
|
3144
3147
|
}
|
|
3145
3148
|
},
|
|
3146
3149
|
"visible": {
|
|
3147
3150
|
"description": "Represents the visibility of the chart",
|
|
3148
|
-
"$ref": "
|
|
3151
|
+
"$ref": "#/$defs/visibility"
|
|
3149
3152
|
}
|
|
3150
3153
|
}
|
|
3151
3154
|
},
|
|
@@ -3273,7 +3276,7 @@
|
|
|
3273
3276
|
"type": "boolean"
|
|
3274
3277
|
},
|
|
3275
3278
|
{
|
|
3276
|
-
"$ref": "
|
|
3279
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3277
3280
|
}
|
|
3278
3281
|
]
|
|
3279
3282
|
}
|
|
@@ -3294,7 +3297,7 @@
|
|
|
3294
3297
|
"properties": {
|
|
3295
3298
|
"ibnTarget": {
|
|
3296
3299
|
"description": "An application identifier consisting of semanticObject and action",
|
|
3297
|
-
"$ref": "
|
|
3300
|
+
"$ref": "#/$defs/ibnTarget"
|
|
3298
3301
|
},
|
|
3299
3302
|
"ibnParams": {
|
|
3300
3303
|
"description": "Key/value pairs for parameters of the target application",
|
|
@@ -3344,6 +3347,7 @@
|
|
|
3344
3347
|
},
|
|
3345
3348
|
"noStore": {
|
|
3346
3349
|
"description": "[Deprecated] Set to true to disable caching for this card",
|
|
3350
|
+
"deprecated": true,
|
|
3347
3351
|
"type": "boolean",
|
|
3348
3352
|
"default": false
|
|
3349
3353
|
},
|
|
@@ -3450,7 +3454,7 @@
|
|
|
3450
3454
|
"default": "cors"
|
|
3451
3455
|
},
|
|
3452
3456
|
{
|
|
3453
|
-
"$ref": "
|
|
3457
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3454
3458
|
}
|
|
3455
3459
|
]
|
|
3456
3460
|
},
|
|
@@ -3475,7 +3479,7 @@
|
|
|
3475
3479
|
"default": "GET"
|
|
3476
3480
|
},
|
|
3477
3481
|
{
|
|
3478
|
-
"$ref": "
|
|
3482
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3479
3483
|
}
|
|
3480
3484
|
]
|
|
3481
3485
|
},
|
|
@@ -3495,7 +3499,7 @@
|
|
|
3495
3499
|
"type": "number"
|
|
3496
3500
|
},
|
|
3497
3501
|
{
|
|
3498
|
-
"$ref": "
|
|
3502
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3499
3503
|
}
|
|
3500
3504
|
]
|
|
3501
3505
|
},
|
|
@@ -3507,7 +3511,7 @@
|
|
|
3507
3511
|
"default": 15000
|
|
3508
3512
|
},
|
|
3509
3513
|
{
|
|
3510
|
-
"$ref": "
|
|
3514
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3511
3515
|
}
|
|
3512
3516
|
]
|
|
3513
3517
|
},
|
|
@@ -3519,7 +3523,7 @@
|
|
|
3519
3523
|
"default": false
|
|
3520
3524
|
},
|
|
3521
3525
|
{
|
|
3522
|
-
"$ref": "
|
|
3526
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3523
3527
|
}
|
|
3524
3528
|
]
|
|
3525
3529
|
},
|
|
@@ -3527,12 +3531,12 @@
|
|
|
3527
3531
|
"description": "Map of requests to be batched",
|
|
3528
3532
|
"type": "object",
|
|
3529
3533
|
"additionalProperties": {
|
|
3530
|
-
"$ref": "
|
|
3534
|
+
"$ref": "#/$defs/batchRequest"
|
|
3531
3535
|
}
|
|
3532
3536
|
},
|
|
3533
3537
|
"cache": {
|
|
3534
3538
|
"description": "Cache control settings",
|
|
3535
|
-
"$ref": "
|
|
3539
|
+
"$ref": "#/$defs/cache"
|
|
3536
3540
|
}
|
|
3537
3541
|
}
|
|
3538
3542
|
},
|
|
@@ -3578,7 +3582,7 @@
|
|
|
3578
3582
|
"default": "Transparent"
|
|
3579
3583
|
},
|
|
3580
3584
|
{
|
|
3581
|
-
"$ref": "
|
|
3585
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3582
3586
|
}
|
|
3583
3587
|
]
|
|
3584
3588
|
},
|
|
@@ -3624,7 +3628,7 @@
|
|
|
3624
3628
|
"default": "Type01"
|
|
3625
3629
|
},
|
|
3626
3630
|
{
|
|
3627
|
-
"$ref": "
|
|
3631
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3628
3632
|
}
|
|
3629
3633
|
]
|
|
3630
3634
|
}
|
|
@@ -3672,7 +3676,7 @@
|
|
|
3672
3676
|
"default": "Type01"
|
|
3673
3677
|
},
|
|
3674
3678
|
{
|
|
3675
|
-
"$ref": "
|
|
3679
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3676
3680
|
}
|
|
3677
3681
|
]
|
|
3678
3682
|
}
|
|
@@ -3700,7 +3704,7 @@
|
|
|
3700
3704
|
"type": "string"
|
|
3701
3705
|
},
|
|
3702
3706
|
"icon": {
|
|
3703
|
-
"$ref": "
|
|
3707
|
+
"$ref": "#/$defs/simpleIcon"
|
|
3704
3708
|
},
|
|
3705
3709
|
"type": {
|
|
3706
3710
|
"description": "The type of the item - one of the types defined in the legend",
|
|
@@ -3731,7 +3735,7 @@
|
|
|
3731
3735
|
"default": "Type01"
|
|
3732
3736
|
},
|
|
3733
3737
|
{
|
|
3734
|
-
"$ref": "
|
|
3738
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3735
3739
|
}
|
|
3736
3740
|
]
|
|
3737
3741
|
},
|
|
@@ -3739,7 +3743,7 @@
|
|
|
3739
3743
|
"description": "Defines actions that can be applied on the item",
|
|
3740
3744
|
"type": "array",
|
|
3741
3745
|
"items": {
|
|
3742
|
-
"$ref": "
|
|
3746
|
+
"$ref": "#/$defs/action"
|
|
3743
3747
|
}
|
|
3744
3748
|
}
|
|
3745
3749
|
}
|
|
@@ -3750,7 +3754,7 @@
|
|
|
3750
3754
|
"additionalProperties": false,
|
|
3751
3755
|
"properties": {
|
|
3752
3756
|
"template": {
|
|
3753
|
-
"$ref": "
|
|
3757
|
+
"$ref": "#/$defs/ContentType.Calendar.SpecialDate.Template"
|
|
3754
3758
|
},
|
|
3755
3759
|
"path": {
|
|
3756
3760
|
"description": "Defines the path to the structure holding the data about the specialDates",
|
|
@@ -3764,7 +3768,7 @@
|
|
|
3764
3768
|
"additionalProperties": false,
|
|
3765
3769
|
"properties": {
|
|
3766
3770
|
"template": {
|
|
3767
|
-
"$ref": "
|
|
3771
|
+
"$ref": "#/$defs/ContentType.Calendar.LegendItem.Template"
|
|
3768
3772
|
},
|
|
3769
3773
|
"path": {
|
|
3770
3774
|
"description": "Defines the path to the structure holding the data about the legendItems",
|
|
@@ -3778,7 +3782,7 @@
|
|
|
3778
3782
|
"additionalProperties": false,
|
|
3779
3783
|
"properties": {
|
|
3780
3784
|
"template": {
|
|
3781
|
-
"$ref": "
|
|
3785
|
+
"$ref": "#/$defs/ContentType.Calendar.Item.Template"
|
|
3782
3786
|
},
|
|
3783
3787
|
"path": {
|
|
3784
3788
|
"description": "Defines the path to the structure holding the data about the items",
|
|
@@ -3795,10 +3799,10 @@
|
|
|
3795
3799
|
"description": "Represents state color",
|
|
3796
3800
|
"oneOf": [
|
|
3797
3801
|
{
|
|
3798
|
-
"$ref": "
|
|
3802
|
+
"$ref": "#/$defs/state"
|
|
3799
3803
|
},
|
|
3800
3804
|
{
|
|
3801
|
-
"$ref": "
|
|
3805
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3802
3806
|
}
|
|
3803
3807
|
]
|
|
3804
3808
|
},
|
|
@@ -3809,7 +3813,7 @@
|
|
|
3809
3813
|
"type": "number"
|
|
3810
3814
|
},
|
|
3811
3815
|
{
|
|
3812
|
-
"$ref": "
|
|
3816
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3813
3817
|
}
|
|
3814
3818
|
]
|
|
3815
3819
|
},
|
|
@@ -3830,12 +3834,13 @@
|
|
|
3830
3834
|
"type": "object",
|
|
3831
3835
|
"additionalProperties": false,
|
|
3832
3836
|
"description": "[Deprecated]",
|
|
3837
|
+
"deprecated": true,
|
|
3833
3838
|
"properties": {
|
|
3834
3839
|
"url": {
|
|
3835
3840
|
"type": "string"
|
|
3836
3841
|
},
|
|
3837
3842
|
"target": {
|
|
3838
|
-
"$ref": "
|
|
3843
|
+
"$ref": "#/$defs/target"
|
|
3839
3844
|
}
|
|
3840
3845
|
}
|
|
3841
3846
|
}
|
|
@@ -3861,7 +3866,7 @@
|
|
|
3861
3866
|
"properties": {
|
|
3862
3867
|
"title": {
|
|
3863
3868
|
"description": "Represents a title of the column; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
3864
|
-
"$ref": "
|
|
3869
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
3865
3870
|
"i18n": {
|
|
3866
3871
|
"type": "XCOL",
|
|
3867
3872
|
"comment": "Column title"
|
|
@@ -3875,10 +3880,10 @@
|
|
|
3875
3880
|
"description": "Defines the horizontal alignment of the column content",
|
|
3876
3881
|
"oneOf": [
|
|
3877
3882
|
{
|
|
3878
|
-
"$ref": "
|
|
3883
|
+
"$ref": "#/$defs/textAlign"
|
|
3879
3884
|
},
|
|
3880
3885
|
{
|
|
3881
|
-
"$ref": "
|
|
3886
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3882
3887
|
}
|
|
3883
3888
|
]
|
|
3884
3889
|
},
|
|
@@ -3892,58 +3897,60 @@
|
|
|
3892
3897
|
},
|
|
3893
3898
|
"icon": {
|
|
3894
3899
|
"description": "Represents column with icon",
|
|
3895
|
-
"$ref": "
|
|
3900
|
+
"$ref": "#/$defs/icon"
|
|
3896
3901
|
},
|
|
3897
3902
|
"state": {
|
|
3898
3903
|
"description": "Defines the state of the column",
|
|
3899
3904
|
"oneOf": [
|
|
3900
3905
|
{
|
|
3901
|
-
"$ref": "
|
|
3906
|
+
"$ref": "#/$defs/state"
|
|
3902
3907
|
},
|
|
3903
3908
|
{
|
|
3904
|
-
"$ref": "
|
|
3909
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3905
3910
|
}
|
|
3906
3911
|
]
|
|
3907
3912
|
},
|
|
3908
3913
|
"url": {
|
|
3909
3914
|
"description": "[Deprecated] Defines the URL string",
|
|
3915
|
+
"deprecated": true,
|
|
3910
3916
|
"type": "string"
|
|
3911
3917
|
},
|
|
3912
3918
|
"target": {
|
|
3913
3919
|
"description": "[Deprecated] Specifies where to open the 'url', if it is provided",
|
|
3920
|
+
"deprecated": true,
|
|
3914
3921
|
"type": "string",
|
|
3915
3922
|
"oneOf": [
|
|
3916
3923
|
{
|
|
3917
|
-
"$ref": "
|
|
3924
|
+
"$ref": "#/$defs/target"
|
|
3918
3925
|
},
|
|
3919
3926
|
{
|
|
3920
|
-
"$ref": "
|
|
3927
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3921
3928
|
}
|
|
3922
3929
|
]
|
|
3923
3930
|
},
|
|
3924
3931
|
"identifier": {
|
|
3925
3932
|
"oneOf": [
|
|
3926
3933
|
{
|
|
3927
|
-
"$ref": "
|
|
3934
|
+
"$ref": "#/$defs/identifier"
|
|
3928
3935
|
},
|
|
3929
3936
|
{
|
|
3930
|
-
"$ref": "
|
|
3937
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3931
3938
|
}
|
|
3932
3939
|
]
|
|
3933
3940
|
},
|
|
3934
3941
|
"progressIndicator": {
|
|
3935
3942
|
"description": "Represents progress indicator attributes",
|
|
3936
|
-
"$ref": "
|
|
3943
|
+
"$ref": "#/$defs/progressIndicator"
|
|
3937
3944
|
},
|
|
3938
3945
|
"visible": {
|
|
3939
3946
|
"description": "Represents the visibility state of the column",
|
|
3940
|
-
"$ref": "
|
|
3947
|
+
"$ref": "#/$defs/visibility"
|
|
3941
3948
|
},
|
|
3942
3949
|
"actions": {
|
|
3943
3950
|
"description": "Defines actions that can be applied on the group item",
|
|
3944
3951
|
"type": "array",
|
|
3945
3952
|
"items": {
|
|
3946
|
-
"$ref": "
|
|
3953
|
+
"$ref": "#/$defs/action"
|
|
3947
3954
|
}
|
|
3948
3955
|
},
|
|
3949
3956
|
"showStateIcon": {
|
|
@@ -3953,7 +3960,7 @@
|
|
|
3953
3960
|
"type": "boolean"
|
|
3954
3961
|
},
|
|
3955
3962
|
{
|
|
3956
|
-
"$ref": "
|
|
3963
|
+
"$ref": "#/$defs/simpleBinding"
|
|
3957
3964
|
}
|
|
3958
3965
|
]
|
|
3959
3966
|
},
|
|
@@ -3974,7 +3981,8 @@
|
|
|
3974
3981
|
},
|
|
3975
3982
|
"text": {
|
|
3976
3983
|
"type": "string",
|
|
3977
|
-
"description": "[Deprecated] Represents text that will be displayed in the icon"
|
|
3984
|
+
"description": "[Deprecated] Represents text that will be displayed in the icon",
|
|
3985
|
+
"deprecated": true
|
|
3978
3986
|
},
|
|
3979
3987
|
"initials": {
|
|
3980
3988
|
"type": "string",
|
|
@@ -4007,7 +4015,7 @@
|
|
|
4007
4015
|
"default": "Error"
|
|
4008
4016
|
},
|
|
4009
4017
|
{
|
|
4010
|
-
"$ref": "
|
|
4018
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4011
4019
|
}
|
|
4012
4020
|
]
|
|
4013
4021
|
},
|
|
@@ -4019,7 +4027,7 @@
|
|
|
4019
4027
|
"default": false
|
|
4020
4028
|
},
|
|
4021
4029
|
{
|
|
4022
|
-
"$ref": "
|
|
4030
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4023
4031
|
}
|
|
4024
4032
|
]
|
|
4025
4033
|
},
|
|
@@ -4030,7 +4038,7 @@
|
|
|
4030
4038
|
"type": "number"
|
|
4031
4039
|
},
|
|
4032
4040
|
{
|
|
4033
|
-
"$ref": "
|
|
4041
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4034
4042
|
}
|
|
4035
4043
|
]
|
|
4036
4044
|
},
|
|
@@ -4041,7 +4049,7 @@
|
|
|
4041
4049
|
"type": "number"
|
|
4042
4050
|
},
|
|
4043
4051
|
{
|
|
4044
|
-
"$ref": "
|
|
4052
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4045
4053
|
}
|
|
4046
4054
|
]
|
|
4047
4055
|
},
|
|
@@ -4053,7 +4061,7 @@
|
|
|
4053
4061
|
"default": false
|
|
4054
4062
|
},
|
|
4055
4063
|
{
|
|
4056
|
-
"$ref": "
|
|
4064
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4057
4065
|
}
|
|
4058
4066
|
]
|
|
4059
4067
|
},
|
|
@@ -4091,13 +4099,13 @@
|
|
|
4091
4099
|
],
|
|
4092
4100
|
"properties": {
|
|
4093
4101
|
"icon": {
|
|
4094
|
-
"$ref": "
|
|
4102
|
+
"$ref": "#/$defs/ContentType.Object.Item.IconGroupIcon"
|
|
4095
4103
|
},
|
|
4096
4104
|
"actions": {
|
|
4097
4105
|
"description": "Defines actions that can be applied on the icon",
|
|
4098
4106
|
"type": "array",
|
|
4099
4107
|
"items": {
|
|
4100
|
-
"$ref": "
|
|
4108
|
+
"$ref": "#/$defs/action"
|
|
4101
4109
|
}
|
|
4102
4110
|
}
|
|
4103
4111
|
}
|
|
@@ -4128,7 +4136,7 @@
|
|
|
4128
4136
|
"default": "None"
|
|
4129
4137
|
},
|
|
4130
4138
|
{
|
|
4131
|
-
"$ref": "
|
|
4139
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4132
4140
|
}
|
|
4133
4141
|
]
|
|
4134
4142
|
},
|
|
@@ -4138,10 +4146,10 @@
|
|
|
4138
4146
|
"oneOf": [
|
|
4139
4147
|
{
|
|
4140
4148
|
"description": "The state color of the main indicator",
|
|
4141
|
-
"$ref": "
|
|
4149
|
+
"$ref": "#/$defs/Enums.ValueColor"
|
|
4142
4150
|
},
|
|
4143
4151
|
{
|
|
4144
|
-
"$ref": "
|
|
4152
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4145
4153
|
}
|
|
4146
4154
|
]
|
|
4147
4155
|
},
|
|
@@ -4155,7 +4163,7 @@
|
|
|
4155
4163
|
"default": "Default"
|
|
4156
4164
|
},
|
|
4157
4165
|
{
|
|
4158
|
-
"$ref": "
|
|
4166
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4159
4167
|
}
|
|
4160
4168
|
]
|
|
4161
4169
|
}
|
|
@@ -4177,7 +4185,7 @@
|
|
|
4177
4185
|
"properties": {
|
|
4178
4186
|
"icon": {
|
|
4179
4187
|
"description": "Defines the icon of the item",
|
|
4180
|
-
"$ref": "
|
|
4188
|
+
"$ref": "#/$defs/icon"
|
|
4181
4189
|
},
|
|
4182
4190
|
"label": {
|
|
4183
4191
|
"description": "Defines the label of the item",
|
|
@@ -4190,7 +4198,7 @@
|
|
|
4190
4198
|
"type": "boolean"
|
|
4191
4199
|
},
|
|
4192
4200
|
{
|
|
4193
|
-
"$ref": "
|
|
4201
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4194
4202
|
}
|
|
4195
4203
|
]
|
|
4196
4204
|
},
|
|
@@ -4247,50 +4255,53 @@
|
|
|
4247
4255
|
"default": "Default"
|
|
4248
4256
|
},
|
|
4249
4257
|
{
|
|
4250
|
-
"$ref": "
|
|
4258
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4251
4259
|
}
|
|
4252
4260
|
]
|
|
4253
4261
|
},
|
|
4254
4262
|
"url": {
|
|
4255
4263
|
"description": "[Deprecated] Defines the URL string. Works only with items of type 'link'",
|
|
4264
|
+
"deprecated": true,
|
|
4256
4265
|
"type": "string"
|
|
4257
4266
|
},
|
|
4258
4267
|
"target": {
|
|
4259
4268
|
"description": "[Deprecated] Specifies the target of the link - it works like the target property of the HTML 'a' tag. Works only with items of type 'link'",
|
|
4269
|
+
"deprecated": true,
|
|
4260
4270
|
"oneOf": [
|
|
4261
4271
|
{
|
|
4262
|
-
"$ref": "
|
|
4272
|
+
"$ref": "#/$defs/target"
|
|
4263
4273
|
},
|
|
4264
4274
|
{
|
|
4265
|
-
"$ref": "
|
|
4275
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4266
4276
|
}
|
|
4267
4277
|
]
|
|
4268
4278
|
},
|
|
4269
4279
|
"emailSubject": {
|
|
4270
4280
|
"description": "[Deprecated] Represents the subject of the email. Works only with item of type 'email'",
|
|
4281
|
+
"deprecated": true,
|
|
4271
4282
|
"type": "string"
|
|
4272
4283
|
},
|
|
4273
4284
|
"actions": {
|
|
4274
4285
|
"description": "Defines actions that can be applied on the group item",
|
|
4275
4286
|
"type": "array",
|
|
4276
4287
|
"items": {
|
|
4277
|
-
"$ref": "
|
|
4288
|
+
"$ref": "#/$defs/action"
|
|
4278
4289
|
}
|
|
4279
4290
|
},
|
|
4280
4291
|
"visible": {
|
|
4281
4292
|
"description": "Represents the visibility state of the item",
|
|
4282
|
-
"$ref": "
|
|
4293
|
+
"$ref": "#/$defs/visibility"
|
|
4283
4294
|
},
|
|
4284
4295
|
"mainIndicator": {
|
|
4285
4296
|
"description": "[Experimental]",
|
|
4286
|
-
"$ref": "
|
|
4297
|
+
"$ref": "#/$defs/ContentType.Object.Item.MainIndicator"
|
|
4287
4298
|
},
|
|
4288
4299
|
"sideIndicators": {
|
|
4289
4300
|
"description": "[Experimental] Multiple side indicators that relate to the main numeric indicator",
|
|
4290
4301
|
"type": "array",
|
|
4291
4302
|
"maxItems": 2,
|
|
4292
4303
|
"items": {
|
|
4293
|
-
"$ref": "
|
|
4304
|
+
"$ref": "#/$defs/HeaderType.Numeric.SideIndicator"
|
|
4294
4305
|
}
|
|
4295
4306
|
},
|
|
4296
4307
|
"sideIndicatorsAlignment": {
|
|
@@ -4305,13 +4316,13 @@
|
|
|
4305
4316
|
"default": "Begin"
|
|
4306
4317
|
},
|
|
4307
4318
|
{
|
|
4308
|
-
"$ref": "
|
|
4319
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4309
4320
|
}
|
|
4310
4321
|
]
|
|
4311
4322
|
},
|
|
4312
4323
|
"template": {
|
|
4313
4324
|
"description": "[Experimental] Template definition for the icons in the group",
|
|
4314
|
-
"$ref": "
|
|
4325
|
+
"$ref": "#/$defs/ContentType.Object.Item.IconGroupTemplate"
|
|
4315
4326
|
},
|
|
4316
4327
|
"path": {
|
|
4317
4328
|
"description": "[Experimental] Binding path to the icon data",
|
|
@@ -4329,7 +4340,7 @@
|
|
|
4329
4340
|
"default": "XS"
|
|
4330
4341
|
},
|
|
4331
4342
|
{
|
|
4332
|
-
"$ref": "
|
|
4343
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4333
4344
|
}
|
|
4334
4345
|
]
|
|
4335
4346
|
},
|
|
@@ -4340,7 +4351,7 @@
|
|
|
4340
4351
|
"type": "number"
|
|
4341
4352
|
},
|
|
4342
4353
|
{
|
|
4343
|
-
"$ref": "
|
|
4354
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4344
4355
|
}
|
|
4345
4356
|
]
|
|
4346
4357
|
},
|
|
@@ -4350,7 +4361,7 @@
|
|
|
4350
4361
|
},
|
|
4351
4362
|
"state": {
|
|
4352
4363
|
"description": "The state color of the item",
|
|
4353
|
-
"$ref": "
|
|
4364
|
+
"$ref": "#/$defs/state"
|
|
4354
4365
|
},
|
|
4355
4366
|
"showStateIcon": {
|
|
4356
4367
|
"description": "Defines if a default state icon is shown",
|
|
@@ -4359,7 +4370,7 @@
|
|
|
4359
4370
|
"type": "boolean"
|
|
4360
4371
|
},
|
|
4361
4372
|
{
|
|
4362
|
-
"$ref": "
|
|
4373
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4363
4374
|
}
|
|
4364
4375
|
]
|
|
4365
4376
|
},
|
|
@@ -4392,7 +4403,7 @@
|
|
|
4392
4403
|
"additionalProperties": false,
|
|
4393
4404
|
"properties": {
|
|
4394
4405
|
"template": {
|
|
4395
|
-
"$ref": "
|
|
4406
|
+
"$ref": "#/$defs/ContentType.Object.Item.ComboBoxItemTemplate"
|
|
4396
4407
|
},
|
|
4397
4408
|
"path": {
|
|
4398
4409
|
"description": "Defines the path to the structure holding the data about the items",
|
|
@@ -4405,7 +4416,7 @@
|
|
|
4405
4416
|
"validations": {
|
|
4406
4417
|
"type": "array",
|
|
4407
4418
|
"items": {
|
|
4408
|
-
"$ref": "
|
|
4419
|
+
"$ref": "#/$defs/ContentType.Object.Item.Validation"
|
|
4409
4420
|
}
|
|
4410
4421
|
},
|
|
4411
4422
|
"maxValue": {
|
|
@@ -4416,7 +4427,7 @@
|
|
|
4416
4427
|
"default": 5
|
|
4417
4428
|
},
|
|
4418
4429
|
{
|
|
4419
|
-
"$ref": "
|
|
4430
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4420
4431
|
}
|
|
4421
4432
|
]
|
|
4422
4433
|
},
|
|
@@ -4431,7 +4442,7 @@
|
|
|
4431
4442
|
"default": "Half"
|
|
4432
4443
|
},
|
|
4433
4444
|
{
|
|
4434
|
-
"$ref": "
|
|
4445
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4435
4446
|
}
|
|
4436
4447
|
]
|
|
4437
4448
|
},
|
|
@@ -4455,7 +4466,7 @@
|
|
|
4455
4466
|
"default": false
|
|
4456
4467
|
},
|
|
4457
4468
|
{
|
|
4458
|
-
"$ref": "
|
|
4469
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4459
4470
|
}
|
|
4460
4471
|
]
|
|
4461
4472
|
},
|
|
@@ -4529,7 +4540,7 @@
|
|
|
4529
4540
|
"properties": {
|
|
4530
4541
|
"title": {
|
|
4531
4542
|
"description": "Represents a title of the object group; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4532
|
-
"$ref": "
|
|
4543
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
4533
4544
|
"i18n": {
|
|
4534
4545
|
"type": "XGRP",
|
|
4535
4546
|
"comment": "Object group title"
|
|
@@ -4542,7 +4553,7 @@
|
|
|
4542
4553
|
"type": "number"
|
|
4543
4554
|
},
|
|
4544
4555
|
{
|
|
4545
|
-
"$ref": "
|
|
4556
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4546
4557
|
}
|
|
4547
4558
|
],
|
|
4548
4559
|
"default": 1
|
|
@@ -4554,7 +4565,7 @@
|
|
|
4554
4565
|
"type": "boolean"
|
|
4555
4566
|
},
|
|
4556
4567
|
{
|
|
4557
|
-
"$ref": "
|
|
4568
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4558
4569
|
}
|
|
4559
4570
|
],
|
|
4560
4571
|
"default": false
|
|
@@ -4563,12 +4574,12 @@
|
|
|
4563
4574
|
"description": "Represents items of information",
|
|
4564
4575
|
"type": "array",
|
|
4565
4576
|
"items": {
|
|
4566
|
-
"$ref": "
|
|
4577
|
+
"$ref": "#/$defs/ContentType.Object.Item"
|
|
4567
4578
|
}
|
|
4568
4579
|
},
|
|
4569
4580
|
"visible": {
|
|
4570
4581
|
"description": "Represents the visibility state of the group",
|
|
4571
|
-
"$ref": "
|
|
4582
|
+
"$ref": "#/$defs/visibility"
|
|
4572
4583
|
},
|
|
4573
4584
|
"alignment": {
|
|
4574
4585
|
"description": "[Experimental] Alignment of the group",
|
|
@@ -4591,7 +4602,7 @@
|
|
|
4591
4602
|
},
|
|
4592
4603
|
"visible": {
|
|
4593
4604
|
"description": "Represents the visibility state of the icon",
|
|
4594
|
-
"$ref": "
|
|
4605
|
+
"$ref": "#/$defs/visibility"
|
|
4595
4606
|
}
|
|
4596
4607
|
}
|
|
4597
4608
|
},
|
|
@@ -4602,19 +4613,19 @@
|
|
|
4602
4613
|
"properties": {
|
|
4603
4614
|
"title": {
|
|
4604
4615
|
"description": "The title of the timeline item",
|
|
4605
|
-
"$ref": "
|
|
4616
|
+
"$ref": "#/$defs/field"
|
|
4606
4617
|
},
|
|
4607
4618
|
"description": {
|
|
4608
4619
|
"description": "The description of the timeline item",
|
|
4609
|
-
"$ref": "
|
|
4620
|
+
"$ref": "#/$defs/field"
|
|
4610
4621
|
},
|
|
4611
4622
|
"dateTime": {
|
|
4612
4623
|
"description": "The dateTime value of the timeline item",
|
|
4613
|
-
"$ref": "
|
|
4624
|
+
"$ref": "#/$defs/field"
|
|
4614
4625
|
},
|
|
4615
4626
|
"owner": {
|
|
4616
4627
|
"description": "The owner of the timeline item",
|
|
4617
|
-
"$ref": "
|
|
4628
|
+
"$ref": "#/$defs/field"
|
|
4618
4629
|
},
|
|
4619
4630
|
"ownerImage": {
|
|
4620
4631
|
"description": "The owner image of the timeline item",
|
|
@@ -4626,13 +4637,13 @@
|
|
|
4626
4637
|
},
|
|
4627
4638
|
"icon": {
|
|
4628
4639
|
"description": "The icon of the timeline item",
|
|
4629
|
-
"$ref": "
|
|
4640
|
+
"$ref": "#/$defs/simpleIcon"
|
|
4630
4641
|
},
|
|
4631
4642
|
"actions": {
|
|
4632
4643
|
"description": "Defines actions that can be applied on the item level",
|
|
4633
4644
|
"type": "array",
|
|
4634
4645
|
"items": {
|
|
4635
|
-
"$ref": "
|
|
4646
|
+
"$ref": "#/$defs/action"
|
|
4636
4647
|
}
|
|
4637
4648
|
}
|
|
4638
4649
|
}
|
|
@@ -4651,7 +4662,7 @@
|
|
|
4651
4662
|
]
|
|
4652
4663
|
},
|
|
4653
4664
|
{
|
|
4654
|
-
"$ref": "
|
|
4665
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4655
4666
|
}
|
|
4656
4667
|
]
|
|
4657
4668
|
},
|
|
@@ -4679,6 +4690,7 @@
|
|
|
4679
4690
|
},
|
|
4680
4691
|
"label": {
|
|
4681
4692
|
"description": "[Deprecated] Label for the measure",
|
|
4693
|
+
"deprecated": true,
|
|
4682
4694
|
"type": "string"
|
|
4683
4695
|
},
|
|
4684
4696
|
"value": {
|
|
@@ -4698,6 +4710,7 @@
|
|
|
4698
4710
|
},
|
|
4699
4711
|
"label": {
|
|
4700
4712
|
"description": "[Deprecated] Label for the dimension",
|
|
4713
|
+
"deprecated": true,
|
|
4701
4714
|
"type": "string"
|
|
4702
4715
|
},
|
|
4703
4716
|
"value": {
|
|
@@ -4721,7 +4734,7 @@
|
|
|
4721
4734
|
"default": "string"
|
|
4722
4735
|
},
|
|
4723
4736
|
{
|
|
4724
|
-
"$ref": "
|
|
4737
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4725
4738
|
}
|
|
4726
4739
|
]
|
|
4727
4740
|
}
|
|
@@ -4734,7 +4747,7 @@
|
|
|
4734
4747
|
"properties": {
|
|
4735
4748
|
"visible": {
|
|
4736
4749
|
"description": "Represents the visibility state of the descriptive axis text",
|
|
4737
|
-
"$ref": "
|
|
4750
|
+
"$ref": "#/$defs/visibility"
|
|
4738
4751
|
}
|
|
4739
4752
|
}
|
|
4740
4753
|
},
|
|
@@ -4745,22 +4758,23 @@
|
|
|
4745
4758
|
"properties": {
|
|
4746
4759
|
"visible": {
|
|
4747
4760
|
"description": "Visibility of the data labels",
|
|
4748
|
-
"$ref": "
|
|
4761
|
+
"$ref": "#/$defs/visibility"
|
|
4749
4762
|
},
|
|
4750
4763
|
"showTotal": {
|
|
4751
4764
|
"description": "Visibility of data label for total value in some charts",
|
|
4752
|
-
"$ref": "
|
|
4765
|
+
"$ref": "#/$defs/visibility"
|
|
4753
4766
|
}
|
|
4754
4767
|
}
|
|
4755
4768
|
},
|
|
4756
4769
|
"ContentType.Analytical.Legend": {
|
|
4757
4770
|
"description": "[Deprecated] Represents chart legend attributes",
|
|
4771
|
+
"deprecated": true,
|
|
4758
4772
|
"type": "object",
|
|
4759
4773
|
"additionalProperties": false,
|
|
4760
4774
|
"properties": {
|
|
4761
4775
|
"visible": {
|
|
4762
4776
|
"description": "Defines whether the legend will be visible",
|
|
4763
|
-
"$ref": "
|
|
4777
|
+
"$ref": "#/$defs/visibility"
|
|
4764
4778
|
},
|
|
4765
4779
|
"position": {
|
|
4766
4780
|
"description": "Defines where the legend will be positioned",
|
|
@@ -4776,7 +4790,7 @@
|
|
|
4776
4790
|
"default": "Right"
|
|
4777
4791
|
},
|
|
4778
4792
|
{
|
|
4779
|
-
"$ref": "
|
|
4793
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4780
4794
|
}
|
|
4781
4795
|
]
|
|
4782
4796
|
},
|
|
@@ -4792,7 +4806,7 @@
|
|
|
4792
4806
|
"default": "TopLeft"
|
|
4793
4807
|
},
|
|
4794
4808
|
{
|
|
4795
|
-
"$ref": "
|
|
4809
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4796
4810
|
}
|
|
4797
4811
|
]
|
|
4798
4812
|
}
|
|
@@ -4823,12 +4837,13 @@
|
|
|
4823
4837
|
"default": "Circle"
|
|
4824
4838
|
},
|
|
4825
4839
|
{
|
|
4826
|
-
"$ref": "
|
|
4840
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4827
4841
|
}
|
|
4828
4842
|
]
|
|
4829
4843
|
},
|
|
4830
4844
|
"text": {
|
|
4831
4845
|
"description": "[Deprecated] Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown",
|
|
4846
|
+
"deprecated": true,
|
|
4832
4847
|
"type": "string"
|
|
4833
4848
|
},
|
|
4834
4849
|
"initials": {
|
|
@@ -4846,7 +4861,7 @@
|
|
|
4846
4861
|
]
|
|
4847
4862
|
},
|
|
4848
4863
|
{
|
|
4849
|
-
"$ref": "
|
|
4864
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4850
4865
|
}
|
|
4851
4866
|
]
|
|
4852
4867
|
},
|
|
@@ -4861,16 +4876,16 @@
|
|
|
4861
4876
|
"default": "Cover"
|
|
4862
4877
|
},
|
|
4863
4878
|
{
|
|
4864
|
-
"$ref": "
|
|
4879
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4865
4880
|
}
|
|
4866
4881
|
]
|
|
4867
4882
|
},
|
|
4868
4883
|
"backgroundColor": {
|
|
4869
|
-
"$ref": "
|
|
4884
|
+
"$ref": "#/$defs/iconBackgroundColor"
|
|
4870
4885
|
},
|
|
4871
4886
|
"visible": {
|
|
4872
4887
|
"description": "Represents the visibility state of the icon",
|
|
4873
|
-
"$ref": "
|
|
4888
|
+
"$ref": "#/$defs/visibility"
|
|
4874
4889
|
}
|
|
4875
4890
|
}
|
|
4876
4891
|
},
|
|
@@ -4899,10 +4914,10 @@
|
|
|
4899
4914
|
"description": "The state of the field",
|
|
4900
4915
|
"oneOf": [
|
|
4901
4916
|
{
|
|
4902
|
-
"$ref": "
|
|
4917
|
+
"$ref": "#/$defs/state"
|
|
4903
4918
|
},
|
|
4904
4919
|
{
|
|
4905
|
-
"$ref": "
|
|
4920
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4906
4921
|
}
|
|
4907
4922
|
]
|
|
4908
4923
|
},
|
|
@@ -4913,7 +4928,7 @@
|
|
|
4913
4928
|
"type": "boolean"
|
|
4914
4929
|
},
|
|
4915
4930
|
{
|
|
4916
|
-
"$ref": "
|
|
4931
|
+
"$ref": "#/$defs/simpleBinding"
|
|
4917
4932
|
}
|
|
4918
4933
|
]
|
|
4919
4934
|
},
|
|
@@ -4923,7 +4938,7 @@
|
|
|
4923
4938
|
},
|
|
4924
4939
|
"visible": {
|
|
4925
4940
|
"description": "Visibility of the item",
|
|
4926
|
-
"$ref": "
|
|
4941
|
+
"$ref": "#/$defs/visibility"
|
|
4927
4942
|
},
|
|
4928
4943
|
"title": {
|
|
4929
4944
|
"description": "Title of the data point. This is just a placeholder to store the title, title will not be rendered on the screen. This is needed to prevent the loss of columnn names while transforming table card to list card.",
|
|
@@ -4937,7 +4952,7 @@
|
|
|
4937
4952
|
"properties": {
|
|
4938
4953
|
"label": {
|
|
4939
4954
|
"description": "Represents a label of the field; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
4940
|
-
"$ref": "
|
|
4955
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
4941
4956
|
"i18n": {
|
|
4942
4957
|
"type": "XFLD",
|
|
4943
4958
|
"comment": "Field label"
|
|
@@ -4949,7 +4964,7 @@
|
|
|
4949
4964
|
},
|
|
4950
4965
|
"visible": {
|
|
4951
4966
|
"description": "Represents the visibility of the field",
|
|
4952
|
-
"$ref": "
|
|
4967
|
+
"$ref": "#/$defs/visibility"
|
|
4953
4968
|
}
|
|
4954
4969
|
}
|
|
4955
4970
|
},
|
|
@@ -4996,7 +5011,7 @@
|
|
|
4996
5011
|
"description": "The title of the item",
|
|
4997
5012
|
"oneOf": [
|
|
4998
5013
|
{
|
|
4999
|
-
"$ref": "
|
|
5014
|
+
"$ref": "#/$defs/field"
|
|
5000
5015
|
},
|
|
5001
5016
|
{
|
|
5002
5017
|
"type": "string"
|
|
@@ -5007,7 +5022,7 @@
|
|
|
5007
5022
|
"description": "The description of the item",
|
|
5008
5023
|
"oneOf": [
|
|
5009
5024
|
{
|
|
5010
|
-
"$ref": "
|
|
5025
|
+
"$ref": "#/$defs/field"
|
|
5011
5026
|
},
|
|
5012
5027
|
{
|
|
5013
5028
|
"type": "string"
|
|
@@ -5016,17 +5031,17 @@
|
|
|
5016
5031
|
},
|
|
5017
5032
|
"info": {
|
|
5018
5033
|
"description": "Defines an additional information text",
|
|
5019
|
-
"$ref": "
|
|
5034
|
+
"$ref": "#/$defs/ContentType.List.Item.ValueStateItem"
|
|
5020
5035
|
},
|
|
5021
5036
|
"highlight": {
|
|
5022
5037
|
"type": "string",
|
|
5023
5038
|
"description": "The highlight state of the item",
|
|
5024
5039
|
"oneOf": [
|
|
5025
5040
|
{
|
|
5026
|
-
"$ref": "
|
|
5041
|
+
"$ref": "#/$defs/state"
|
|
5027
5042
|
},
|
|
5028
5043
|
{
|
|
5029
|
-
"$ref": "
|
|
5044
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5030
5045
|
}
|
|
5031
5046
|
]
|
|
5032
5047
|
},
|
|
@@ -5035,7 +5050,7 @@
|
|
|
5035
5050
|
"description": "Defines the semantics of the 'highlight' property. It is used for accessibility purposes."
|
|
5036
5051
|
},
|
|
5037
5052
|
"icon": {
|
|
5038
|
-
"$ref": "
|
|
5053
|
+
"$ref": "#/$defs/icon"
|
|
5039
5054
|
},
|
|
5040
5055
|
"attributesLayoutType": {
|
|
5041
5056
|
"description": "Defines the layout type of the attributes",
|
|
@@ -5048,7 +5063,7 @@
|
|
|
5048
5063
|
"default": "TwoColumns"
|
|
5049
5064
|
},
|
|
5050
5065
|
{
|
|
5051
|
-
"$ref": "
|
|
5066
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5052
5067
|
}
|
|
5053
5068
|
]
|
|
5054
5069
|
},
|
|
@@ -5056,18 +5071,18 @@
|
|
|
5056
5071
|
"description": "Defines the attributes",
|
|
5057
5072
|
"type": "array",
|
|
5058
5073
|
"items": {
|
|
5059
|
-
"$ref": "
|
|
5074
|
+
"$ref": "#/$defs/ContentType.List.Item.ValueStateItem"
|
|
5060
5075
|
}
|
|
5061
5076
|
},
|
|
5062
5077
|
"actions": {
|
|
5063
5078
|
"description": "Defines actions that can be applied on the item",
|
|
5064
5079
|
"type": "array",
|
|
5065
5080
|
"items": {
|
|
5066
|
-
"$ref": "
|
|
5081
|
+
"$ref": "#/$defs/action"
|
|
5067
5082
|
}
|
|
5068
5083
|
},
|
|
5069
5084
|
"chart": {
|
|
5070
|
-
"$ref": "
|
|
5085
|
+
"$ref": "#/$defs/MicroChart"
|
|
5071
5086
|
},
|
|
5072
5087
|
"actionsStrip": {
|
|
5073
5088
|
"description": "Describes actions strip",
|
|
@@ -5075,11 +5090,11 @@
|
|
|
5075
5090
|
{
|
|
5076
5091
|
"type": "array",
|
|
5077
5092
|
"items": {
|
|
5078
|
-
"$ref": "
|
|
5093
|
+
"$ref": "#/$defs/actionsStripItem"
|
|
5079
5094
|
}
|
|
5080
5095
|
},
|
|
5081
5096
|
{
|
|
5082
|
-
"$ref": "
|
|
5097
|
+
"$ref": "#/$defs/actionsStrip"
|
|
5083
5098
|
}
|
|
5084
5099
|
]
|
|
5085
5100
|
}
|
|
@@ -5102,13 +5117,13 @@
|
|
|
5102
5117
|
"description": "[Experimental] Describes MicroChart attributes",
|
|
5103
5118
|
"oneOf": [
|
|
5104
5119
|
{
|
|
5105
|
-
"$ref": "
|
|
5120
|
+
"$ref": "#/$defs/MicroChart.Generic"
|
|
5106
5121
|
},
|
|
5107
5122
|
{
|
|
5108
|
-
"$ref": "
|
|
5123
|
+
"$ref": "#/$defs/MicroChart.Bullet"
|
|
5109
5124
|
},
|
|
5110
5125
|
{
|
|
5111
|
-
"$ref": "
|
|
5126
|
+
"$ref": "#/$defs/MicroChart.StackedBar"
|
|
5112
5127
|
}
|
|
5113
5128
|
]
|
|
5114
5129
|
},
|
|
@@ -5135,16 +5150,16 @@
|
|
|
5135
5150
|
"oneOf": [
|
|
5136
5151
|
{
|
|
5137
5152
|
"description": "The state color of the side indicator",
|
|
5138
|
-
"$ref": "
|
|
5153
|
+
"$ref": "#/$defs/Enums.ValueColor"
|
|
5139
5154
|
},
|
|
5140
5155
|
{
|
|
5141
|
-
"$ref": "
|
|
5156
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5142
5157
|
}
|
|
5143
5158
|
]
|
|
5144
5159
|
},
|
|
5145
5160
|
"visible": {
|
|
5146
5161
|
"description": "Visibility of the side indicator",
|
|
5147
|
-
"$ref": "
|
|
5162
|
+
"$ref": "#/$defs/visibility"
|
|
5148
5163
|
}
|
|
5149
5164
|
}
|
|
5150
5165
|
},
|
|
@@ -5174,7 +5189,7 @@
|
|
|
5174
5189
|
"default": "None"
|
|
5175
5190
|
},
|
|
5176
5191
|
{
|
|
5177
|
-
"$ref": "
|
|
5192
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5178
5193
|
}
|
|
5179
5194
|
]
|
|
5180
5195
|
},
|
|
@@ -5184,16 +5199,16 @@
|
|
|
5184
5199
|
"oneOf": [
|
|
5185
5200
|
{
|
|
5186
5201
|
"description": "The state color of the main indicator",
|
|
5187
|
-
"$ref": "
|
|
5202
|
+
"$ref": "#/$defs/Enums.ValueColor"
|
|
5188
5203
|
},
|
|
5189
5204
|
{
|
|
5190
|
-
"$ref": "
|
|
5205
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5191
5206
|
}
|
|
5192
5207
|
]
|
|
5193
5208
|
},
|
|
5194
5209
|
"visible": {
|
|
5195
5210
|
"description": "Visibility of the main indicator",
|
|
5196
|
-
"$ref": "
|
|
5211
|
+
"$ref": "#/$defs/visibility"
|
|
5197
5212
|
}
|
|
5198
5213
|
}
|
|
5199
5214
|
},
|
|
@@ -5209,7 +5224,7 @@
|
|
|
5209
5224
|
"default": "Normal"
|
|
5210
5225
|
},
|
|
5211
5226
|
{
|
|
5212
|
-
"$ref": "
|
|
5227
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5213
5228
|
}
|
|
5214
5229
|
]
|
|
5215
5230
|
},
|
|
@@ -5220,7 +5235,7 @@
|
|
|
5220
5235
|
"properties": {
|
|
5221
5236
|
"visible": {
|
|
5222
5237
|
"description": "[Experimental] Represents the visibility of the Close button",
|
|
5223
|
-
"$ref": "
|
|
5238
|
+
"$ref": "#/$defs/visibility"
|
|
5224
5239
|
}
|
|
5225
5240
|
}
|
|
5226
5241
|
},
|
|
@@ -5236,13 +5251,13 @@
|
|
|
5236
5251
|
"type": "string"
|
|
5237
5252
|
},
|
|
5238
5253
|
{
|
|
5239
|
-
"$ref": "
|
|
5254
|
+
"$ref": "#/$defs/statusTextFormatter"
|
|
5240
5255
|
}
|
|
5241
5256
|
]
|
|
5242
5257
|
},
|
|
5243
5258
|
"visible": {
|
|
5244
5259
|
"description": "Represents the visibility of the status text",
|
|
5245
|
-
"$ref": "
|
|
5260
|
+
"$ref": "#/$defs/visibility"
|
|
5246
5261
|
}
|
|
5247
5262
|
}
|
|
5248
5263
|
},
|
|
@@ -5271,12 +5286,13 @@
|
|
|
5271
5286
|
"default": "Circle"
|
|
5272
5287
|
},
|
|
5273
5288
|
{
|
|
5274
|
-
"$ref": "
|
|
5289
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5275
5290
|
}
|
|
5276
5291
|
]
|
|
5277
5292
|
},
|
|
5278
5293
|
"text": {
|
|
5279
5294
|
"description": "[Deprecated] Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown",
|
|
5295
|
+
"deprecated": true,
|
|
5280
5296
|
"type": "string"
|
|
5281
5297
|
},
|
|
5282
5298
|
"initials": {
|
|
@@ -5284,7 +5300,7 @@
|
|
|
5284
5300
|
"type": "string"
|
|
5285
5301
|
},
|
|
5286
5302
|
"backgroundColor": {
|
|
5287
|
-
"$ref": "
|
|
5303
|
+
"$ref": "#/$defs/iconBackgroundColor"
|
|
5288
5304
|
},
|
|
5289
5305
|
"fitType": {
|
|
5290
5306
|
"description": "Defines how the image fits in the icon area",
|
|
@@ -5297,13 +5313,13 @@
|
|
|
5297
5313
|
"default": "Cover"
|
|
5298
5314
|
},
|
|
5299
5315
|
{
|
|
5300
|
-
"$ref": "
|
|
5316
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5301
5317
|
}
|
|
5302
5318
|
]
|
|
5303
5319
|
},
|
|
5304
5320
|
"visible": {
|
|
5305
5321
|
"description": "Visibility of the icon",
|
|
5306
|
-
"$ref": "
|
|
5322
|
+
"$ref": "#/$defs/visibility"
|
|
5307
5323
|
}
|
|
5308
5324
|
}
|
|
5309
5325
|
},
|
|
@@ -5329,7 +5345,7 @@
|
|
|
5329
5345
|
]
|
|
5330
5346
|
},
|
|
5331
5347
|
{
|
|
5332
|
-
"$ref": "
|
|
5348
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5333
5349
|
}
|
|
5334
5350
|
]
|
|
5335
5351
|
},
|
|
@@ -5340,15 +5356,16 @@
|
|
|
5340
5356
|
"type": "boolean"
|
|
5341
5357
|
},
|
|
5342
5358
|
{
|
|
5343
|
-
"$ref": "
|
|
5359
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5344
5360
|
}
|
|
5345
5361
|
]
|
|
5346
5362
|
},
|
|
5347
5363
|
"service": {
|
|
5348
|
-
"$ref": "
|
|
5364
|
+
"$ref": "#/$defs/service"
|
|
5349
5365
|
},
|
|
5350
5366
|
"url": {
|
|
5351
5367
|
"description": "[Deprecated] Represents the URL that will be used as navigation target if no service is provided",
|
|
5368
|
+
"deprecated": true,
|
|
5352
5369
|
"type": "string"
|
|
5353
5370
|
},
|
|
5354
5371
|
"parameters": {
|
|
@@ -5356,13 +5373,14 @@
|
|
|
5356
5373
|
},
|
|
5357
5374
|
"target": {
|
|
5358
5375
|
"description": "[Deprecated] Specifies where to open the 'url', if it is provided",
|
|
5376
|
+
"deprecated": true,
|
|
5359
5377
|
"type": "string",
|
|
5360
5378
|
"oneOf": [
|
|
5361
5379
|
{
|
|
5362
|
-
"$ref": "
|
|
5380
|
+
"$ref": "#/$defs/target"
|
|
5363
5381
|
},
|
|
5364
5382
|
{
|
|
5365
|
-
"$ref": "
|
|
5383
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5366
5384
|
}
|
|
5367
5385
|
]
|
|
5368
5386
|
}
|
|
@@ -5379,7 +5397,7 @@
|
|
|
5379
5397
|
"then": {
|
|
5380
5398
|
"properties": {
|
|
5381
5399
|
"parameters": {
|
|
5382
|
-
"$ref": "
|
|
5400
|
+
"$ref": "#/$defs/customActionParameters"
|
|
5383
5401
|
}
|
|
5384
5402
|
}
|
|
5385
5403
|
}
|
|
@@ -5397,10 +5415,10 @@
|
|
|
5397
5415
|
"parameters": {
|
|
5398
5416
|
"oneOf": [
|
|
5399
5417
|
{
|
|
5400
|
-
"$ref": "
|
|
5418
|
+
"$ref": "#/$defs/navigationActionParameters"
|
|
5401
5419
|
},
|
|
5402
5420
|
{
|
|
5403
|
-
"$ref": "
|
|
5421
|
+
"$ref": "#/$defs/navigationActionIBParameters"
|
|
5404
5422
|
}
|
|
5405
5423
|
]
|
|
5406
5424
|
}
|
|
@@ -5418,7 +5436,7 @@
|
|
|
5418
5436
|
"then": {
|
|
5419
5437
|
"properties": {
|
|
5420
5438
|
"parameters": {
|
|
5421
|
-
"$ref": "
|
|
5439
|
+
"$ref": "#/$defs/submitActionParameters"
|
|
5422
5440
|
}
|
|
5423
5441
|
}
|
|
5424
5442
|
}
|
|
@@ -5434,7 +5452,7 @@
|
|
|
5434
5452
|
"then": {
|
|
5435
5453
|
"properties": {
|
|
5436
5454
|
"parameters": {
|
|
5437
|
-
"$ref": "
|
|
5455
|
+
"$ref": "#/$defs/showCardActionParameters"
|
|
5438
5456
|
}
|
|
5439
5457
|
}
|
|
5440
5458
|
}
|
|
@@ -5450,7 +5468,7 @@
|
|
|
5450
5468
|
"then": {
|
|
5451
5469
|
"properties": {
|
|
5452
5470
|
"parameters": {
|
|
5453
|
-
"$ref": "
|
|
5471
|
+
"$ref": "#/$defs/hideCardActionParameters"
|
|
5454
5472
|
}
|
|
5455
5473
|
}
|
|
5456
5474
|
}
|
|
@@ -5474,7 +5492,7 @@
|
|
|
5474
5492
|
},
|
|
5475
5493
|
"title": {
|
|
5476
5494
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5477
|
-
"$ref": "
|
|
5495
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5478
5496
|
"i18n": {
|
|
5479
5497
|
"type": "XTIT",
|
|
5480
5498
|
"comment": "Header title"
|
|
@@ -5487,14 +5505,14 @@
|
|
|
5487
5505
|
"type": "number"
|
|
5488
5506
|
},
|
|
5489
5507
|
{
|
|
5490
|
-
"$ref": "
|
|
5508
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5491
5509
|
}
|
|
5492
5510
|
],
|
|
5493
5511
|
"default": 3
|
|
5494
5512
|
},
|
|
5495
5513
|
"subTitle": {
|
|
5496
5514
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5497
|
-
"$ref": "
|
|
5515
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5498
5516
|
"i18n": {
|
|
5499
5517
|
"type": "XTIT",
|
|
5500
5518
|
"comment": "Header subtitle"
|
|
@@ -5507,7 +5525,7 @@
|
|
|
5507
5525
|
"type": "number"
|
|
5508
5526
|
},
|
|
5509
5527
|
{
|
|
5510
|
-
"$ref": "
|
|
5528
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5511
5529
|
}
|
|
5512
5530
|
],
|
|
5513
5531
|
"default": 2
|
|
@@ -5516,18 +5534,18 @@
|
|
|
5516
5534
|
"description": "Represents a description of the actions that can be applied on a part of a card",
|
|
5517
5535
|
"type": "array",
|
|
5518
5536
|
"items": {
|
|
5519
|
-
"$ref": "
|
|
5537
|
+
"$ref": "#/$defs/action"
|
|
5520
5538
|
}
|
|
5521
5539
|
},
|
|
5522
5540
|
"data": {
|
|
5523
|
-
"$ref": "
|
|
5541
|
+
"$ref": "#/$defs/data"
|
|
5524
5542
|
},
|
|
5525
5543
|
"unitOfMeasurement": {
|
|
5526
5544
|
"description": "Represents unit of measurement for the whole numeric header",
|
|
5527
5545
|
"type": "string"
|
|
5528
5546
|
},
|
|
5529
5547
|
"mainIndicator": {
|
|
5530
|
-
"$ref": "
|
|
5548
|
+
"$ref": "#/$defs/HeaderType.Numeric.MainIndicator"
|
|
5531
5549
|
},
|
|
5532
5550
|
"sideIndicatorsAlignment": {
|
|
5533
5551
|
"description": "The alignment of the side indicators",
|
|
@@ -5541,7 +5559,7 @@
|
|
|
5541
5559
|
"default": "Begin"
|
|
5542
5560
|
},
|
|
5543
5561
|
{
|
|
5544
|
-
"$ref": "
|
|
5562
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5545
5563
|
}
|
|
5546
5564
|
]
|
|
5547
5565
|
},
|
|
@@ -5556,7 +5574,7 @@
|
|
|
5556
5574
|
"type": "number"
|
|
5557
5575
|
},
|
|
5558
5576
|
{
|
|
5559
|
-
"$ref": "
|
|
5577
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5560
5578
|
}
|
|
5561
5579
|
],
|
|
5562
5580
|
"default": 1
|
|
@@ -5566,27 +5584,27 @@
|
|
|
5566
5584
|
"type": "array",
|
|
5567
5585
|
"maxItems": 2,
|
|
5568
5586
|
"items": {
|
|
5569
|
-
"$ref": "
|
|
5587
|
+
"$ref": "#/$defs/HeaderType.Numeric.SideIndicator"
|
|
5570
5588
|
}
|
|
5571
5589
|
},
|
|
5572
5590
|
"status": {
|
|
5573
5591
|
"description": "Represents the status of the card",
|
|
5574
|
-
"$ref": "
|
|
5592
|
+
"$ref": "#/$defs/status"
|
|
5575
5593
|
},
|
|
5576
5594
|
"closeButton": {
|
|
5577
5595
|
"description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
|
|
5578
|
-
"$ref": "
|
|
5596
|
+
"$ref": "#/$defs/closeButton"
|
|
5579
5597
|
},
|
|
5580
5598
|
"wrappingType": {
|
|
5581
5599
|
"description": "[Experimental] The wrapping type for texts inside the header.",
|
|
5582
|
-
"$ref": "
|
|
5600
|
+
"$ref": "#/$defs/wrappingType"
|
|
5583
5601
|
},
|
|
5584
5602
|
"visible": {
|
|
5585
5603
|
"description": "[Experimental] Visibility of the header",
|
|
5586
|
-
"$ref": "
|
|
5604
|
+
"$ref": "#/$defs/visibility"
|
|
5587
5605
|
},
|
|
5588
5606
|
"chart": {
|
|
5589
|
-
"$ref": "
|
|
5607
|
+
"$ref": "#/$defs/MicroChart"
|
|
5590
5608
|
}
|
|
5591
5609
|
}
|
|
5592
5610
|
},
|
|
@@ -5604,7 +5622,7 @@
|
|
|
5604
5622
|
},
|
|
5605
5623
|
"title": {
|
|
5606
5624
|
"description": "Represents a title of the header; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5607
|
-
"$ref": "
|
|
5625
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5608
5626
|
"i18n": {
|
|
5609
5627
|
"type": "XTIT",
|
|
5610
5628
|
"comment": "Header title"
|
|
@@ -5617,14 +5635,14 @@
|
|
|
5617
5635
|
"type": "number"
|
|
5618
5636
|
},
|
|
5619
5637
|
{
|
|
5620
|
-
"$ref": "
|
|
5638
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5621
5639
|
}
|
|
5622
5640
|
],
|
|
5623
5641
|
"default": 3
|
|
5624
5642
|
},
|
|
5625
5643
|
"subTitle": {
|
|
5626
5644
|
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
5627
|
-
"$ref": "
|
|
5645
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
5628
5646
|
"i18n": {
|
|
5629
5647
|
"type": "XTIT",
|
|
5630
5648
|
"comment": "Header subtitle"
|
|
@@ -5637,7 +5655,7 @@
|
|
|
5637
5655
|
"type": "number"
|
|
5638
5656
|
},
|
|
5639
5657
|
{
|
|
5640
|
-
"$ref": "
|
|
5658
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5641
5659
|
}
|
|
5642
5660
|
],
|
|
5643
5661
|
"default": 2
|
|
@@ -5646,31 +5664,31 @@
|
|
|
5646
5664
|
"description": "Represents a description of the actions that can be applied on a part of a card",
|
|
5647
5665
|
"type": "array",
|
|
5648
5666
|
"items": {
|
|
5649
|
-
"$ref": "
|
|
5667
|
+
"$ref": "#/$defs/action"
|
|
5650
5668
|
}
|
|
5651
5669
|
},
|
|
5652
5670
|
"data": {
|
|
5653
|
-
"$ref": "
|
|
5671
|
+
"$ref": "#/$defs/data"
|
|
5654
5672
|
},
|
|
5655
5673
|
"icon": {
|
|
5656
5674
|
"description": "Represents the icon of the card",
|
|
5657
|
-
"$ref": "
|
|
5675
|
+
"$ref": "#/$defs/iconWithoutSize"
|
|
5658
5676
|
},
|
|
5659
5677
|
"status": {
|
|
5660
5678
|
"description": "Represents the status of the card",
|
|
5661
|
-
"$ref": "
|
|
5679
|
+
"$ref": "#/$defs/status"
|
|
5662
5680
|
},
|
|
5663
5681
|
"closeButton": {
|
|
5664
5682
|
"description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
|
|
5665
|
-
"$ref": "
|
|
5683
|
+
"$ref": "#/$defs/closeButton"
|
|
5666
5684
|
},
|
|
5667
5685
|
"wrappingType": {
|
|
5668
5686
|
"description": "[Experimental] The wrapping type for texts inside the header.",
|
|
5669
|
-
"$ref": "
|
|
5687
|
+
"$ref": "#/$defs/wrappingType"
|
|
5670
5688
|
},
|
|
5671
5689
|
"visible": {
|
|
5672
5690
|
"description": "[Experimental] Visibility of the header",
|
|
5673
|
-
"$ref": "
|
|
5691
|
+
"$ref": "#/$defs/visibility"
|
|
5674
5692
|
}
|
|
5675
5693
|
}
|
|
5676
5694
|
},
|
|
@@ -5680,10 +5698,10 @@
|
|
|
5680
5698
|
"additionalProperties": false,
|
|
5681
5699
|
"properties": {
|
|
5682
5700
|
"data": {
|
|
5683
|
-
"$ref": "
|
|
5701
|
+
"$ref": "#/$defs/data"
|
|
5684
5702
|
},
|
|
5685
5703
|
"minHeight": {
|
|
5686
|
-
"$ref": "
|
|
5704
|
+
"$ref": "#/$defs/minHeight"
|
|
5687
5705
|
},
|
|
5688
5706
|
"src": {
|
|
5689
5707
|
"description": "URL of the web page to be embedded",
|
|
@@ -5705,7 +5723,7 @@
|
|
|
5705
5723
|
"default": false
|
|
5706
5724
|
},
|
|
5707
5725
|
{
|
|
5708
|
-
"$ref": "
|
|
5726
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5709
5727
|
}
|
|
5710
5728
|
]
|
|
5711
5729
|
},
|
|
@@ -5717,7 +5735,7 @@
|
|
|
5717
5735
|
"default": false
|
|
5718
5736
|
},
|
|
5719
5737
|
{
|
|
5720
|
-
"$ref": "
|
|
5738
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5721
5739
|
}
|
|
5722
5740
|
]
|
|
5723
5741
|
}
|
|
@@ -5733,16 +5751,16 @@
|
|
|
5733
5751
|
"additionalProperties": false,
|
|
5734
5752
|
"properties": {
|
|
5735
5753
|
"data": {
|
|
5736
|
-
"$ref": "
|
|
5754
|
+
"$ref": "#/$defs/data"
|
|
5737
5755
|
},
|
|
5738
5756
|
"item": {
|
|
5739
|
-
"$ref": "
|
|
5757
|
+
"$ref": "#/$defs/ContentType.Calendar.Item"
|
|
5740
5758
|
},
|
|
5741
5759
|
"legendItem": {
|
|
5742
|
-
"$ref": "
|
|
5760
|
+
"$ref": "#/$defs/ContentType.Calendar.LegendItem"
|
|
5743
5761
|
},
|
|
5744
5762
|
"specialDate": {
|
|
5745
|
-
"$ref": "
|
|
5763
|
+
"$ref": "#/$defs/ContentType.Calendar.SpecialDate"
|
|
5746
5764
|
},
|
|
5747
5765
|
"date": {
|
|
5748
5766
|
"description": "The initial date of the calendar which appointments are initially shown. The accepted date format is ISO 8601",
|
|
@@ -5751,7 +5769,7 @@
|
|
|
5751
5769
|
"type": "string"
|
|
5752
5770
|
},
|
|
5753
5771
|
{
|
|
5754
|
-
"$ref": "
|
|
5772
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5755
5773
|
}
|
|
5756
5774
|
]
|
|
5757
5775
|
},
|
|
@@ -5762,7 +5780,7 @@
|
|
|
5762
5780
|
"type": "number"
|
|
5763
5781
|
},
|
|
5764
5782
|
{
|
|
5765
|
-
"$ref": "
|
|
5783
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5766
5784
|
}
|
|
5767
5785
|
]
|
|
5768
5786
|
},
|
|
@@ -5773,7 +5791,7 @@
|
|
|
5773
5791
|
"type": "number"
|
|
5774
5792
|
},
|
|
5775
5793
|
{
|
|
5776
|
-
"$ref": "
|
|
5794
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5777
5795
|
}
|
|
5778
5796
|
]
|
|
5779
5797
|
},
|
|
@@ -5784,7 +5802,7 @@
|
|
|
5784
5802
|
"type": "string"
|
|
5785
5803
|
},
|
|
5786
5804
|
{
|
|
5787
|
-
"$ref": "
|
|
5805
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5788
5806
|
}
|
|
5789
5807
|
]
|
|
5790
5808
|
},
|
|
@@ -5796,7 +5814,7 @@
|
|
|
5796
5814
|
"description": "Represents an action that can be applied on he button showing there are more items than the shown",
|
|
5797
5815
|
"type": "array",
|
|
5798
5816
|
"items": {
|
|
5799
|
-
"$ref": "
|
|
5817
|
+
"$ref": "#/$defs/action"
|
|
5800
5818
|
}
|
|
5801
5819
|
}
|
|
5802
5820
|
}
|
|
@@ -5809,7 +5827,7 @@
|
|
|
5809
5827
|
"additionalProperties": false,
|
|
5810
5828
|
"properties": {
|
|
5811
5829
|
"minHeight": {
|
|
5812
|
-
"$ref": "
|
|
5830
|
+
"$ref": "#/$defs/minHeight"
|
|
5813
5831
|
}
|
|
5814
5832
|
}
|
|
5815
5833
|
},
|
|
@@ -5819,20 +5837,20 @@
|
|
|
5819
5837
|
"additionalProperties": false,
|
|
5820
5838
|
"properties": {
|
|
5821
5839
|
"data": {
|
|
5822
|
-
"$ref": "
|
|
5840
|
+
"$ref": "#/$defs/data"
|
|
5823
5841
|
},
|
|
5824
5842
|
"groups": {
|
|
5825
5843
|
"description": "Represents groups of information for an object",
|
|
5826
5844
|
"type": "array",
|
|
5827
5845
|
"items": {
|
|
5828
|
-
"$ref": "
|
|
5846
|
+
"$ref": "#/$defs/ContentType.Object.Group"
|
|
5829
5847
|
}
|
|
5830
5848
|
},
|
|
5831
5849
|
"actions": {
|
|
5832
5850
|
"description": "Defines actions that can be applied on the content",
|
|
5833
5851
|
"type": "array",
|
|
5834
5852
|
"items": {
|
|
5835
|
-
"$ref": "
|
|
5853
|
+
"$ref": "#/$defs/action"
|
|
5836
5854
|
}
|
|
5837
5855
|
},
|
|
5838
5856
|
"hasData": {
|
|
@@ -5848,7 +5866,7 @@
|
|
|
5848
5866
|
"type": "array"
|
|
5849
5867
|
},
|
|
5850
5868
|
{
|
|
5851
|
-
"$ref": "
|
|
5869
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5852
5870
|
}
|
|
5853
5871
|
],
|
|
5854
5872
|
"default": true
|
|
@@ -5861,7 +5879,7 @@
|
|
|
5861
5879
|
"additionalProperties": false,
|
|
5862
5880
|
"properties": {
|
|
5863
5881
|
"data": {
|
|
5864
|
-
"$ref": "
|
|
5882
|
+
"$ref": "#/$defs/data"
|
|
5865
5883
|
},
|
|
5866
5884
|
"row": {
|
|
5867
5885
|
"description": "The template for all rows",
|
|
@@ -5872,14 +5890,14 @@
|
|
|
5872
5890
|
"description": "Defines the columns attributes",
|
|
5873
5891
|
"type": "array",
|
|
5874
5892
|
"items": {
|
|
5875
|
-
"$ref": "
|
|
5893
|
+
"$ref": "#/$defs/ContentType.Table.Column"
|
|
5876
5894
|
}
|
|
5877
5895
|
},
|
|
5878
5896
|
"actions": {
|
|
5879
5897
|
"description": "Defines actions that can be applied on the item",
|
|
5880
5898
|
"type": "array",
|
|
5881
5899
|
"items": {
|
|
5882
|
-
"$ref": "
|
|
5900
|
+
"$ref": "#/$defs/action"
|
|
5883
5901
|
}
|
|
5884
5902
|
},
|
|
5885
5903
|
"highlight": {
|
|
@@ -5887,10 +5905,10 @@
|
|
|
5887
5905
|
"description": "The highlight state of the row",
|
|
5888
5906
|
"oneOf": [
|
|
5889
5907
|
{
|
|
5890
|
-
"$ref": "
|
|
5908
|
+
"$ref": "#/$defs/state"
|
|
5891
5909
|
},
|
|
5892
5910
|
{
|
|
5893
|
-
"$ref": "
|
|
5911
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5894
5912
|
}
|
|
5895
5913
|
]
|
|
5896
5914
|
},
|
|
@@ -5907,7 +5925,7 @@
|
|
|
5907
5925
|
"type": "number"
|
|
5908
5926
|
},
|
|
5909
5927
|
{
|
|
5910
|
-
"$ref": "
|
|
5928
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5911
5929
|
}
|
|
5912
5930
|
]
|
|
5913
5931
|
},
|
|
@@ -5918,12 +5936,12 @@
|
|
|
5918
5936
|
"type": "number"
|
|
5919
5937
|
},
|
|
5920
5938
|
{
|
|
5921
|
-
"$ref": "
|
|
5939
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5922
5940
|
}
|
|
5923
5941
|
]
|
|
5924
5942
|
},
|
|
5925
5943
|
"group": {
|
|
5926
|
-
"$ref": "
|
|
5944
|
+
"$ref": "#/$defs/group"
|
|
5927
5945
|
}
|
|
5928
5946
|
}
|
|
5929
5947
|
},
|
|
@@ -5933,11 +5951,11 @@
|
|
|
5933
5951
|
"additionalProperties": false,
|
|
5934
5952
|
"properties": {
|
|
5935
5953
|
"data": {
|
|
5936
|
-
"$ref": "
|
|
5954
|
+
"$ref": "#/$defs/data"
|
|
5937
5955
|
},
|
|
5938
5956
|
"item": {
|
|
5939
5957
|
"description": "Defines the timeline item",
|
|
5940
|
-
"$ref": "
|
|
5958
|
+
"$ref": "#/$defs/ContentType.Timeline.Item"
|
|
5941
5959
|
},
|
|
5942
5960
|
"maxItems": {
|
|
5943
5961
|
"description": "Represents number of items",
|
|
@@ -5946,7 +5964,7 @@
|
|
|
5946
5964
|
"type": "number"
|
|
5947
5965
|
},
|
|
5948
5966
|
{
|
|
5949
|
-
"$ref": "
|
|
5967
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5950
5968
|
}
|
|
5951
5969
|
]
|
|
5952
5970
|
},
|
|
@@ -5957,7 +5975,7 @@
|
|
|
5957
5975
|
"type": "number"
|
|
5958
5976
|
},
|
|
5959
5977
|
{
|
|
5960
|
-
"$ref": "
|
|
5978
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5961
5979
|
}
|
|
5962
5980
|
]
|
|
5963
5981
|
}
|
|
@@ -5974,7 +5992,7 @@
|
|
|
5974
5992
|
"additionalProperties": false,
|
|
5975
5993
|
"properties": {
|
|
5976
5994
|
"data": {
|
|
5977
|
-
"$ref": "
|
|
5995
|
+
"$ref": "#/$defs/data"
|
|
5978
5996
|
},
|
|
5979
5997
|
"chartType": {
|
|
5980
5998
|
"description": "The type of the chart",
|
|
@@ -5984,7 +6002,7 @@
|
|
|
5984
6002
|
"type": "string"
|
|
5985
6003
|
},
|
|
5986
6004
|
{
|
|
5987
|
-
"$ref": "
|
|
6005
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5988
6006
|
}
|
|
5989
6007
|
]
|
|
5990
6008
|
},
|
|
@@ -5995,15 +6013,15 @@
|
|
|
5995
6013
|
"type": "object"
|
|
5996
6014
|
},
|
|
5997
6015
|
{
|
|
5998
|
-
"$ref": "
|
|
6016
|
+
"$ref": "#/$defs/simpleBinding"
|
|
5999
6017
|
}
|
|
6000
6018
|
]
|
|
6001
6019
|
},
|
|
6002
6020
|
"minHeight": {
|
|
6003
|
-
"$ref": "
|
|
6021
|
+
"$ref": "#/$defs/minHeight"
|
|
6004
6022
|
},
|
|
6005
6023
|
"legend": {
|
|
6006
|
-
"$ref": "
|
|
6024
|
+
"$ref": "#/$defs/ContentType.Analytical.Legend"
|
|
6007
6025
|
},
|
|
6008
6026
|
"plotArea": {
|
|
6009
6027
|
"description": "[Deprecated] Describes the plotArea properties",
|
|
@@ -6011,24 +6029,26 @@
|
|
|
6011
6029
|
"additionalProperties": false,
|
|
6012
6030
|
"properties": {
|
|
6013
6031
|
"dataLabel": {
|
|
6014
|
-
"$ref": "
|
|
6032
|
+
"$ref": "#/$defs/ContentType.Analytical.DataLabel"
|
|
6015
6033
|
},
|
|
6016
6034
|
"categoryAxisText": {
|
|
6017
|
-
"$ref": "
|
|
6035
|
+
"$ref": "#/$defs/ContentType.Analytical.AxisText"
|
|
6018
6036
|
},
|
|
6019
6037
|
"valueAxisText": {
|
|
6020
|
-
"$ref": "
|
|
6038
|
+
"$ref": "#/$defs/ContentType.Analytical.AxisText"
|
|
6021
6039
|
}
|
|
6022
|
-
}
|
|
6040
|
+
},
|
|
6041
|
+
"deprecated": true
|
|
6023
6042
|
},
|
|
6024
6043
|
"title": {
|
|
6025
6044
|
"description": "[Deprecated] Represents title attributes",
|
|
6045
|
+
"deprecated": true,
|
|
6026
6046
|
"type": "object",
|
|
6027
6047
|
"additionalProperties": false,
|
|
6028
6048
|
"properties": {
|
|
6029
6049
|
"visible": {
|
|
6030
6050
|
"description": "Represents the visibility state of the title",
|
|
6031
|
-
"$ref": "
|
|
6051
|
+
"$ref": "#/$defs/visibility"
|
|
6032
6052
|
},
|
|
6033
6053
|
"text": {
|
|
6034
6054
|
"description": "Represents a title text",
|
|
@@ -6046,7 +6066,7 @@
|
|
|
6046
6066
|
"default": "Center"
|
|
6047
6067
|
},
|
|
6048
6068
|
{
|
|
6049
|
-
"$ref": "
|
|
6069
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6050
6070
|
}
|
|
6051
6071
|
]
|
|
6052
6072
|
}
|
|
@@ -6054,36 +6074,38 @@
|
|
|
6054
6074
|
},
|
|
6055
6075
|
"measureAxis": {
|
|
6056
6076
|
"description": "[Deprecated] Represents the value set for measure axis",
|
|
6077
|
+
"deprecated": true,
|
|
6057
6078
|
"type": "string"
|
|
6058
6079
|
},
|
|
6059
6080
|
"dimensionAxis": {
|
|
6060
6081
|
"description": "[Deprecated] Represents the value set for dimension axis",
|
|
6082
|
+
"deprecated": true,
|
|
6061
6083
|
"type": "string"
|
|
6062
6084
|
},
|
|
6063
6085
|
"dimensions": {
|
|
6064
6086
|
"type": "array",
|
|
6065
6087
|
"items": {
|
|
6066
|
-
"$ref": "
|
|
6088
|
+
"$ref": "#/$defs/ContentType.Analytical.Dimension"
|
|
6067
6089
|
}
|
|
6068
6090
|
},
|
|
6069
6091
|
"measures": {
|
|
6070
6092
|
"type": "array",
|
|
6071
6093
|
"items": {
|
|
6072
|
-
"$ref": "
|
|
6094
|
+
"$ref": "#/$defs/ContentType.Analytical.Measure"
|
|
6073
6095
|
}
|
|
6074
6096
|
},
|
|
6075
6097
|
"feeds": {
|
|
6076
6098
|
"description": "Feeds for the chart",
|
|
6077
6099
|
"type": "array",
|
|
6078
6100
|
"items": {
|
|
6079
|
-
"$ref": "
|
|
6101
|
+
"$ref": "#/$defs/ContentType.Analytical.Field"
|
|
6080
6102
|
}
|
|
6081
6103
|
},
|
|
6082
6104
|
"actions": {
|
|
6083
6105
|
"description": "Defines actions that can be applied on the content",
|
|
6084
6106
|
"type": "array",
|
|
6085
6107
|
"items": {
|
|
6086
|
-
"$ref": "
|
|
6108
|
+
"$ref": "#/$defs/action"
|
|
6087
6109
|
}
|
|
6088
6110
|
},
|
|
6089
6111
|
"actionableArea": {
|
|
@@ -6096,7 +6118,7 @@
|
|
|
6096
6118
|
"default": "Full"
|
|
6097
6119
|
},
|
|
6098
6120
|
{
|
|
6099
|
-
"$ref": "
|
|
6121
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6100
6122
|
}
|
|
6101
6123
|
]
|
|
6102
6124
|
},
|
|
@@ -6113,7 +6135,7 @@
|
|
|
6113
6135
|
"default": false
|
|
6114
6136
|
},
|
|
6115
6137
|
{
|
|
6116
|
-
"$ref": "
|
|
6138
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6117
6139
|
}
|
|
6118
6140
|
]
|
|
6119
6141
|
},
|
|
@@ -6129,7 +6151,7 @@
|
|
|
6129
6151
|
"description": "Defines actions that will be triggered when the action button is pressed",
|
|
6130
6152
|
"type": "array",
|
|
6131
6153
|
"items": {
|
|
6132
|
-
"$ref": "
|
|
6154
|
+
"$ref": "#/$defs/action"
|
|
6133
6155
|
}
|
|
6134
6156
|
},
|
|
6135
6157
|
"text": {
|
|
@@ -6149,10 +6171,10 @@
|
|
|
6149
6171
|
"additionalProperties": false,
|
|
6150
6172
|
"properties": {
|
|
6151
6173
|
"data": {
|
|
6152
|
-
"$ref": "
|
|
6174
|
+
"$ref": "#/$defs/data"
|
|
6153
6175
|
},
|
|
6154
6176
|
"item": {
|
|
6155
|
-
"$ref": "
|
|
6177
|
+
"$ref": "#/$defs/ContentType.List.Item"
|
|
6156
6178
|
},
|
|
6157
6179
|
"maxItems": {
|
|
6158
6180
|
"description": "Represents number of items",
|
|
@@ -6161,7 +6183,7 @@
|
|
|
6161
6183
|
"type": "number"
|
|
6162
6184
|
},
|
|
6163
6185
|
{
|
|
6164
|
-
"$ref": "
|
|
6186
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6165
6187
|
}
|
|
6166
6188
|
]
|
|
6167
6189
|
},
|
|
@@ -6172,12 +6194,12 @@
|
|
|
6172
6194
|
"type": "number"
|
|
6173
6195
|
},
|
|
6174
6196
|
{
|
|
6175
|
-
"$ref": "
|
|
6197
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6176
6198
|
}
|
|
6177
6199
|
]
|
|
6178
6200
|
},
|
|
6179
6201
|
"group": {
|
|
6180
|
-
"$ref": "
|
|
6202
|
+
"$ref": "#/$defs/group"
|
|
6181
6203
|
}
|
|
6182
6204
|
}
|
|
6183
6205
|
},
|
|
@@ -6188,7 +6210,7 @@
|
|
|
6188
6210
|
"default": true
|
|
6189
6211
|
},
|
|
6190
6212
|
{
|
|
6191
|
-
"$ref": "
|
|
6213
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6192
6214
|
}
|
|
6193
6215
|
]
|
|
6194
6216
|
},
|
|
@@ -6197,7 +6219,7 @@
|
|
|
6197
6219
|
"additionalProperties": false,
|
|
6198
6220
|
"properties": {
|
|
6199
6221
|
"item": {
|
|
6200
|
-
"$ref": "
|
|
6222
|
+
"$ref": "#/$defs/actionsStripItemBindingInfo"
|
|
6201
6223
|
}
|
|
6202
6224
|
}
|
|
6203
6225
|
},
|
|
@@ -6210,7 +6232,7 @@
|
|
|
6210
6232
|
"description": "Action(s) which will be executed when button is pressed",
|
|
6211
6233
|
"type": "array",
|
|
6212
6234
|
"items": {
|
|
6213
|
-
"$ref": "
|
|
6235
|
+
"$ref": "#/$defs/action"
|
|
6214
6236
|
}
|
|
6215
6237
|
},
|
|
6216
6238
|
"type": {
|
|
@@ -6226,7 +6248,7 @@
|
|
|
6226
6248
|
"default": "Button"
|
|
6227
6249
|
},
|
|
6228
6250
|
{
|
|
6229
|
-
"$ref": "
|
|
6251
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6230
6252
|
}
|
|
6231
6253
|
]
|
|
6232
6254
|
},
|
|
@@ -6244,7 +6266,7 @@
|
|
|
6244
6266
|
"default": "High"
|
|
6245
6267
|
},
|
|
6246
6268
|
{
|
|
6247
|
-
"$ref": "
|
|
6269
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6248
6270
|
}
|
|
6249
6271
|
]
|
|
6250
6272
|
},
|
|
@@ -6283,7 +6305,7 @@
|
|
|
6283
6305
|
"default": "Default"
|
|
6284
6306
|
},
|
|
6285
6307
|
{
|
|
6286
|
-
"$ref": "
|
|
6308
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6287
6309
|
}
|
|
6288
6310
|
]
|
|
6289
6311
|
},
|
|
@@ -6302,23 +6324,23 @@
|
|
|
6302
6324
|
"default": "None"
|
|
6303
6325
|
},
|
|
6304
6326
|
{
|
|
6305
|
-
"$ref": "
|
|
6327
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6306
6328
|
}
|
|
6307
6329
|
]
|
|
6308
6330
|
},
|
|
6309
6331
|
"visible": {
|
|
6310
6332
|
"description": "Determines whether the item is visible",
|
|
6311
|
-
"$ref": "
|
|
6333
|
+
"$ref": "#/$defs/visibility"
|
|
6312
6334
|
}
|
|
6313
6335
|
}
|
|
6314
6336
|
},
|
|
6315
6337
|
"HeaderType": {
|
|
6316
6338
|
"oneOf": [
|
|
6317
6339
|
{
|
|
6318
|
-
"$ref": "
|
|
6340
|
+
"$ref": "#/$defs/HeaderType.Default"
|
|
6319
6341
|
},
|
|
6320
6342
|
{
|
|
6321
|
-
"$ref": "
|
|
6343
|
+
"$ref": "#/$defs/HeaderType.Numeric"
|
|
6322
6344
|
}
|
|
6323
6345
|
]
|
|
6324
6346
|
},
|
|
@@ -6328,7 +6350,7 @@
|
|
|
6328
6350
|
"additionalProperties": false,
|
|
6329
6351
|
"properties": {
|
|
6330
6352
|
"request": {
|
|
6331
|
-
"$ref": "
|
|
6353
|
+
"$ref": "#/$defs/request"
|
|
6332
6354
|
},
|
|
6333
6355
|
"path": {
|
|
6334
6356
|
"description": "The path from the JSON to be used as root",
|
|
@@ -6345,7 +6367,7 @@
|
|
|
6345
6367
|
"additionalProperties": true
|
|
6346
6368
|
},
|
|
6347
6369
|
"service": {
|
|
6348
|
-
"$ref": "
|
|
6370
|
+
"$ref": "#/$defs/service"
|
|
6349
6371
|
},
|
|
6350
6372
|
"updateInterval": {
|
|
6351
6373
|
"description": "Represents interval in seconds, after which a new data request will be triggered",
|
|
@@ -6354,12 +6376,12 @@
|
|
|
6354
6376
|
"type": "number"
|
|
6355
6377
|
},
|
|
6356
6378
|
{
|
|
6357
|
-
"$ref": "
|
|
6379
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6358
6380
|
}
|
|
6359
6381
|
]
|
|
6360
6382
|
},
|
|
6361
6383
|
"extension": {
|
|
6362
|
-
"$ref": "
|
|
6384
|
+
"$ref": "#/$defs/extension"
|
|
6363
6385
|
},
|
|
6364
6386
|
"name": {
|
|
6365
6387
|
"description": "[Experimental] Gives a name to the data section. A model with the same name will be assigned to the card",
|
|
@@ -6371,7 +6393,7 @@
|
|
|
6371
6393
|
"additionalProperties": false,
|
|
6372
6394
|
"properties": {
|
|
6373
6395
|
"request": {
|
|
6374
|
-
"$ref": "
|
|
6396
|
+
"$ref": "#/$defs/request"
|
|
6375
6397
|
},
|
|
6376
6398
|
"json": {
|
|
6377
6399
|
"description": "The data to be used directly. Without making requests",
|
|
@@ -6382,7 +6404,7 @@
|
|
|
6382
6404
|
"additionalProperties": true
|
|
6383
6405
|
},
|
|
6384
6406
|
"extension": {
|
|
6385
|
-
"$ref": "
|
|
6407
|
+
"$ref": "#/$defs/extension"
|
|
6386
6408
|
}
|
|
6387
6409
|
}
|
|
6388
6410
|
}
|
|
@@ -6417,7 +6439,7 @@
|
|
|
6417
6439
|
"additionalProperties": false,
|
|
6418
6440
|
"properties": {
|
|
6419
6441
|
"data": {
|
|
6420
|
-
"$ref": "
|
|
6442
|
+
"$ref": "#/$defs/data"
|
|
6421
6443
|
}
|
|
6422
6444
|
}
|
|
6423
6445
|
},
|
|
@@ -6456,7 +6478,7 @@
|
|
|
6456
6478
|
"const": "ComboBox"
|
|
6457
6479
|
},
|
|
6458
6480
|
{
|
|
6459
|
-
"$ref": "
|
|
6481
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6460
6482
|
}
|
|
6461
6483
|
]
|
|
6462
6484
|
},
|
|
@@ -6475,12 +6497,12 @@
|
|
|
6475
6497
|
"default": -1
|
|
6476
6498
|
},
|
|
6477
6499
|
{
|
|
6478
|
-
"$ref": "
|
|
6500
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6479
6501
|
}
|
|
6480
6502
|
]
|
|
6481
6503
|
},
|
|
6482
6504
|
"data": {
|
|
6483
|
-
"$ref": "
|
|
6505
|
+
"$ref": "#/$defs/data"
|
|
6484
6506
|
},
|
|
6485
6507
|
"label": {
|
|
6486
6508
|
"description": "Label for the filter. Used by screen readers",
|
|
@@ -6493,7 +6515,7 @@
|
|
|
6493
6515
|
"items": {
|
|
6494
6516
|
"type": "array",
|
|
6495
6517
|
"items": {
|
|
6496
|
-
"$ref": "
|
|
6518
|
+
"$ref": "#/$defs/Configuration.Filter.ComboBoxItem"
|
|
6497
6519
|
}
|
|
6498
6520
|
},
|
|
6499
6521
|
"item": {
|
|
@@ -6504,7 +6526,7 @@
|
|
|
6504
6526
|
],
|
|
6505
6527
|
"properties": {
|
|
6506
6528
|
"template": {
|
|
6507
|
-
"$ref": "
|
|
6529
|
+
"$ref": "#/$defs/Configuration.Filter.ComboBoxItem"
|
|
6508
6530
|
},
|
|
6509
6531
|
"path": {
|
|
6510
6532
|
"description": "Defines the path to the structure holding the data about the items",
|
|
@@ -6516,7 +6538,7 @@
|
|
|
6516
6538
|
},
|
|
6517
6539
|
"visible": {
|
|
6518
6540
|
"description": "Determines whether the filter is visible",
|
|
6519
|
-
"$ref": "
|
|
6541
|
+
"$ref": "#/$defs/visibility"
|
|
6520
6542
|
}
|
|
6521
6543
|
}
|
|
6522
6544
|
},
|
|
@@ -6532,7 +6554,7 @@
|
|
|
6532
6554
|
"const": "Search"
|
|
6533
6555
|
},
|
|
6534
6556
|
{
|
|
6535
|
-
"$ref": "
|
|
6557
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6536
6558
|
}
|
|
6537
6559
|
]
|
|
6538
6560
|
},
|
|
@@ -6550,7 +6572,7 @@
|
|
|
6550
6572
|
},
|
|
6551
6573
|
"visible": {
|
|
6552
6574
|
"description": "Determines whether the filter is visible",
|
|
6553
|
-
"$ref": "
|
|
6575
|
+
"$ref": "#/$defs/visibility"
|
|
6554
6576
|
}
|
|
6555
6577
|
}
|
|
6556
6578
|
},
|
|
@@ -6566,7 +6588,7 @@
|
|
|
6566
6588
|
"const": "DateRange"
|
|
6567
6589
|
},
|
|
6568
6590
|
{
|
|
6569
|
-
"$ref": "
|
|
6591
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6570
6592
|
}
|
|
6571
6593
|
]
|
|
6572
6594
|
},
|
|
@@ -6638,7 +6660,7 @@
|
|
|
6638
6660
|
},
|
|
6639
6661
|
"visible": {
|
|
6640
6662
|
"description": "Determines whether the filter is visible",
|
|
6641
|
-
"$ref": "
|
|
6663
|
+
"$ref": "#/$defs/visibility"
|
|
6642
6664
|
}
|
|
6643
6665
|
}
|
|
6644
6666
|
},
|
|
@@ -6654,7 +6676,7 @@
|
|
|
6654
6676
|
"const": "Select"
|
|
6655
6677
|
},
|
|
6656
6678
|
{
|
|
6657
|
-
"$ref": "
|
|
6679
|
+
"$ref": "#/$defs/simpleBinding"
|
|
6658
6680
|
}
|
|
6659
6681
|
]
|
|
6660
6682
|
},
|
|
@@ -6662,7 +6684,7 @@
|
|
|
6662
6684
|
"description": "The value of the filter"
|
|
6663
6685
|
},
|
|
6664
6686
|
"data": {
|
|
6665
|
-
"$ref": "
|
|
6687
|
+
"$ref": "#/$defs/data"
|
|
6666
6688
|
},
|
|
6667
6689
|
"label": {
|
|
6668
6690
|
"description": "Label for the filter. Used by screen readers",
|
|
@@ -6671,7 +6693,7 @@
|
|
|
6671
6693
|
"items": {
|
|
6672
6694
|
"type": "array",
|
|
6673
6695
|
"items": {
|
|
6674
|
-
"$ref": "
|
|
6696
|
+
"$ref": "#/$defs/Configuration.Filter.Item"
|
|
6675
6697
|
}
|
|
6676
6698
|
},
|
|
6677
6699
|
"item": {
|
|
@@ -6681,7 +6703,7 @@
|
|
|
6681
6703
|
],
|
|
6682
6704
|
"properties": {
|
|
6683
6705
|
"template": {
|
|
6684
|
-
"$ref": "
|
|
6706
|
+
"$ref": "#/$defs/Configuration.Filter.Item"
|
|
6685
6707
|
},
|
|
6686
6708
|
"path": {
|
|
6687
6709
|
"description": "Defines the path to the structure holding the data about the items",
|
|
@@ -6693,7 +6715,7 @@
|
|
|
6693
6715
|
},
|
|
6694
6716
|
"visible": {
|
|
6695
6717
|
"description": "Determines whether the filter is visible",
|
|
6696
|
-
"$ref": "
|
|
6718
|
+
"$ref": "#/$defs/visibility"
|
|
6697
6719
|
}
|
|
6698
6720
|
}
|
|
6699
6721
|
},
|
|
@@ -6707,7 +6729,7 @@
|
|
|
6707
6729
|
},
|
|
6708
6730
|
"type": {
|
|
6709
6731
|
"description": "The type of the value for the parameter",
|
|
6710
|
-
"$ref": "
|
|
6732
|
+
"$ref": "#/$defs/Configuration.BasicDataType"
|
|
6711
6733
|
},
|
|
6712
6734
|
"label": {
|
|
6713
6735
|
"description": "Label for the parameter for user-friendly visualization in the design-time editor",
|
|
@@ -6814,7 +6836,7 @@
|
|
|
6814
6836
|
"type": "object",
|
|
6815
6837
|
"properties": {
|
|
6816
6838
|
"levels": {
|
|
6817
|
-
"$ref": "
|
|
6839
|
+
"$ref": "#/$defs/levelsDef"
|
|
6818
6840
|
}
|
|
6819
6841
|
}
|
|
6820
6842
|
},
|
|
@@ -6865,7 +6887,7 @@
|
|
|
6865
6887
|
"type": "array",
|
|
6866
6888
|
"minItems": 1,
|
|
6867
6889
|
"items": {
|
|
6868
|
-
"$ref": "
|
|
6890
|
+
"$ref": "#/$defs/customActionsSetting"
|
|
6869
6891
|
}
|
|
6870
6892
|
}
|
|
6871
6893
|
}
|
|
@@ -6966,10 +6988,10 @@
|
|
|
6966
6988
|
"additionalProperties": false,
|
|
6967
6989
|
"properties": {
|
|
6968
6990
|
"plotArea": {
|
|
6969
|
-
"$ref": "
|
|
6991
|
+
"$ref": "#/$defs/plotAreaDef"
|
|
6970
6992
|
},
|
|
6971
6993
|
"timeAxis": {
|
|
6972
|
-
"$ref": "
|
|
6994
|
+
"$ref": "#/$defs/timeAxisDef"
|
|
6973
6995
|
}
|
|
6974
6996
|
}
|
|
6975
6997
|
},
|
|
@@ -7144,14 +7166,14 @@
|
|
|
7144
7166
|
"default": true
|
|
7145
7167
|
},
|
|
7146
7168
|
"defaultSpan": {
|
|
7147
|
-
"$ref": "
|
|
7169
|
+
"$ref": "#/$defs/defaultSpanDef"
|
|
7148
7170
|
},
|
|
7149
7171
|
"requireAppAuthorization": {
|
|
7150
7172
|
"description": "Represents the cards for which authorization is required",
|
|
7151
7173
|
"type": "string"
|
|
7152
7174
|
},
|
|
7153
7175
|
"objectStreamCardsSettings": {
|
|
7154
|
-
"$ref": "
|
|
7176
|
+
"$ref": "#/$defs/objectStreamCardsSettingsDef"
|
|
7155
7177
|
},
|
|
7156
7178
|
"enableLocaleCurrencyFormatting": {
|
|
7157
7179
|
"description": "Represents the flag to indicate the use of object number/smart field",
|
|
@@ -7204,10 +7226,10 @@
|
|
|
7204
7226
|
"additionalProperties": false,
|
|
7205
7227
|
"properties": {
|
|
7206
7228
|
"plotArea": {
|
|
7207
|
-
"$ref": "
|
|
7229
|
+
"$ref": "#/$defs/plotAreaDef"
|
|
7208
7230
|
},
|
|
7209
7231
|
"timeAxis": {
|
|
7210
|
-
"$ref": "
|
|
7232
|
+
"$ref": "#/$defs/timeAxisDef"
|
|
7211
7233
|
}
|
|
7212
7234
|
}
|
|
7213
7235
|
},
|
|
@@ -7233,7 +7255,7 @@
|
|
|
7233
7255
|
"additionalProperties": false,
|
|
7234
7256
|
"patternProperties": {
|
|
7235
7257
|
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
7236
|
-
"$ref": "
|
|
7258
|
+
"$ref": "#/$defs/resizableLayoutVariantCardProperties"
|
|
7237
7259
|
}
|
|
7238
7260
|
}
|
|
7239
7261
|
},
|
|
@@ -7260,14 +7282,14 @@
|
|
|
7260
7282
|
"pattern": "^[a-zA-Z0-9\\.]+$"
|
|
7261
7283
|
},
|
|
7262
7284
|
"settings": {
|
|
7263
|
-
"$ref": "
|
|
7285
|
+
"$ref": "#/$defs/card_setting"
|
|
7264
7286
|
},
|
|
7265
7287
|
"tabs": {
|
|
7266
7288
|
"description": "Represents the card with view switch control",
|
|
7267
7289
|
"type": "array",
|
|
7268
7290
|
"minItems": 1,
|
|
7269
7291
|
"items": {
|
|
7270
|
-
"$ref": "
|
|
7292
|
+
"$ref": "#/$defs/tab_setting"
|
|
7271
7293
|
}
|
|
7272
7294
|
}
|
|
7273
7295
|
}
|
|
@@ -7329,13 +7351,13 @@
|
|
|
7329
7351
|
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
7330
7352
|
},
|
|
7331
7353
|
"binding": {
|
|
7332
|
-
"$ref": "
|
|
7354
|
+
"$ref": "#/$defs/component_binding_def"
|
|
7333
7355
|
},
|
|
7334
7356
|
"settings": {
|
|
7335
|
-
"$ref": "
|
|
7357
|
+
"$ref": "#/$defs/component_setting_def"
|
|
7336
7358
|
},
|
|
7337
7359
|
"pages": {
|
|
7338
|
-
"$ref": "
|
|
7360
|
+
"$ref": "#/$defs/component_pages_def"
|
|
7339
7361
|
}
|
|
7340
7362
|
}
|
|
7341
7363
|
},
|
|
@@ -7351,13 +7373,13 @@
|
|
|
7351
7373
|
"type": "string"
|
|
7352
7374
|
},
|
|
7353
7375
|
"binding": {
|
|
7354
|
-
"$ref": "
|
|
7376
|
+
"$ref": "#/$defs/component_binding_def"
|
|
7355
7377
|
},
|
|
7356
7378
|
"settings": {
|
|
7357
|
-
"$ref": "
|
|
7379
|
+
"$ref": "#/$defs/component_setting_def"
|
|
7358
7380
|
},
|
|
7359
7381
|
"pages": {
|
|
7360
|
-
"$ref": "
|
|
7382
|
+
"$ref": "#/$defs/component_pages_def"
|
|
7361
7383
|
}
|
|
7362
7384
|
}
|
|
7363
7385
|
}
|
|
@@ -7408,15 +7430,15 @@
|
|
|
7408
7430
|
"properties": {
|
|
7409
7431
|
"display": {
|
|
7410
7432
|
"description": "Represents an action triggered by the user on UI: the navigation to display an object",
|
|
7411
|
-
"$ref": "
|
|
7433
|
+
"$ref": "#/$defs/action_prop_def"
|
|
7412
7434
|
},
|
|
7413
7435
|
"create": {
|
|
7414
7436
|
"description": "Represents an action triggered by the user on UI: the navigation to create an object",
|
|
7415
|
-
"$ref": "
|
|
7437
|
+
"$ref": "#/$defs/action_prop_def"
|
|
7416
7438
|
},
|
|
7417
7439
|
"edit": {
|
|
7418
7440
|
"description": "Represents an action triggered by the user on UI: the navigation to edit an object",
|
|
7419
|
-
"$ref": "
|
|
7441
|
+
"$ref": "#/$defs/action_prop_def"
|
|
7420
7442
|
}
|
|
7421
7443
|
}
|
|
7422
7444
|
},
|
|
@@ -7437,7 +7459,7 @@
|
|
|
7437
7459
|
"type": "boolean"
|
|
7438
7460
|
},
|
|
7439
7461
|
"settings": {
|
|
7440
|
-
"$ref": "
|
|
7462
|
+
"$ref": "#/$defs/component_setting_def"
|
|
7441
7463
|
}
|
|
7442
7464
|
}
|
|
7443
7465
|
},
|
|
@@ -7446,7 +7468,7 @@
|
|
|
7446
7468
|
"additionalProperties": false,
|
|
7447
7469
|
"patternProperties": {
|
|
7448
7470
|
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
7449
|
-
"$ref": "
|
|
7471
|
+
"$ref": "#/$defs/pages_map"
|
|
7450
7472
|
}
|
|
7451
7473
|
}
|
|
7452
7474
|
},
|
|
@@ -7541,7 +7563,7 @@
|
|
|
7541
7563
|
],
|
|
7542
7564
|
"properties": {
|
|
7543
7565
|
"embeddedComponents": {
|
|
7544
|
-
"$ref": "
|
|
7566
|
+
"$ref": "#/$defs/embeddedComponent"
|
|
7545
7567
|
}
|
|
7546
7568
|
}
|
|
7547
7569
|
}
|
|
@@ -7569,7 +7591,7 @@
|
|
|
7569
7591
|
},
|
|
7570
7592
|
"refreshStrategyOnAppRestore": {
|
|
7571
7593
|
"description": "Represents the refresh strategies configured for external display navigation while coming back to the source app",
|
|
7572
|
-
"$ref": "
|
|
7594
|
+
"$ref": "#/$defs/refreshStrategies_prop_def"
|
|
7573
7595
|
}
|
|
7574
7596
|
}
|
|
7575
7597
|
},
|
|
@@ -7590,38 +7612,38 @@
|
|
|
7590
7612
|
},
|
|
7591
7613
|
"component": {
|
|
7592
7614
|
"description": "Represents the component and its settings that makes the page",
|
|
7593
|
-
"$ref": "
|
|
7615
|
+
"$ref": "#/$defs/component_def"
|
|
7594
7616
|
},
|
|
7595
7617
|
"navigation": {
|
|
7596
7618
|
"description": "Represents the different navigation targets",
|
|
7597
|
-
"$ref": "
|
|
7619
|
+
"$ref": "#/$defs/navigation_def"
|
|
7598
7620
|
},
|
|
7599
7621
|
"embeddedComponents": {
|
|
7600
7622
|
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
7601
|
-
"$ref": "
|
|
7623
|
+
"$ref": "#/$defs/embeddedComponent"
|
|
7602
7624
|
},
|
|
7603
7625
|
"routingSpec": {
|
|
7604
7626
|
"description": "Represents the routing specification",
|
|
7605
|
-
"$ref": "
|
|
7627
|
+
"$ref": "#/$defs/routingSpec_def"
|
|
7606
7628
|
},
|
|
7607
7629
|
"implementingComponent": {
|
|
7608
7630
|
"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",
|
|
7609
|
-
"$ref": "
|
|
7631
|
+
"$ref": "#/$defs/implementingComponent_def"
|
|
7610
7632
|
},
|
|
7611
7633
|
"defaultLayoutType": {
|
|
7612
7634
|
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
7613
|
-
"$ref": "
|
|
7635
|
+
"$ref": "#/$defs/defaultLayoutType_def"
|
|
7614
7636
|
},
|
|
7615
7637
|
"defaultLayoutTypeIfExternalNavigation": {
|
|
7616
7638
|
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
7617
|
-
"$ref": "
|
|
7639
|
+
"$ref": "#/$defs/defaultLayoutType_def"
|
|
7618
7640
|
},
|
|
7619
7641
|
"pages": {
|
|
7620
7642
|
"type": "object",
|
|
7621
7643
|
"additionalProperties": false,
|
|
7622
7644
|
"patternProperties": {
|
|
7623
7645
|
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
7624
|
-
"$ref": "
|
|
7646
|
+
"$ref": "#/$defs/pages_map"
|
|
7625
7647
|
}
|
|
7626
7648
|
}
|
|
7627
7649
|
}
|
|
@@ -7644,36 +7666,36 @@
|
|
|
7644
7666
|
},
|
|
7645
7667
|
"component": {
|
|
7646
7668
|
"description": "Represents the component and its settings that makes the page",
|
|
7647
|
-
"$ref": "
|
|
7669
|
+
"$ref": "#/$defs/component_def"
|
|
7648
7670
|
},
|
|
7649
7671
|
"navigation": {
|
|
7650
7672
|
"description": "Represents the different navigation targets",
|
|
7651
|
-
"$ref": "
|
|
7673
|
+
"$ref": "#/$defs/navigation_def"
|
|
7652
7674
|
},
|
|
7653
7675
|
"embeddedComponents": {
|
|
7654
7676
|
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
7655
|
-
"$ref": "
|
|
7677
|
+
"$ref": "#/$defs/embeddedComponent"
|
|
7656
7678
|
},
|
|
7657
7679
|
"routingSpec": {
|
|
7658
7680
|
"description": "Represents the routing specification",
|
|
7659
|
-
"$ref": "
|
|
7681
|
+
"$ref": "#/$defs/routingSpec_def"
|
|
7660
7682
|
},
|
|
7661
7683
|
"implementingComponent": {
|
|
7662
7684
|
"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",
|
|
7663
|
-
"$ref": "
|
|
7685
|
+
"$ref": "#/$defs/implementingComponent_def"
|
|
7664
7686
|
},
|
|
7665
7687
|
"defaultLayoutType": {
|
|
7666
7688
|
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
7667
|
-
"$ref": "
|
|
7689
|
+
"$ref": "#/$defs/defaultLayoutType_def"
|
|
7668
7690
|
},
|
|
7669
7691
|
"defaultLayoutTypeIfExternalNavigation": {
|
|
7670
7692
|
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
7671
|
-
"$ref": "
|
|
7693
|
+
"$ref": "#/$defs/defaultLayoutType_def"
|
|
7672
7694
|
},
|
|
7673
7695
|
"pages": {
|
|
7674
7696
|
"type": "array",
|
|
7675
7697
|
"items": {
|
|
7676
|
-
"$ref": "
|
|
7698
|
+
"$ref": "#/$defs/pages_array"
|
|
7677
7699
|
}
|
|
7678
7700
|
}
|
|
7679
7701
|
}
|
|
@@ -7697,7 +7719,7 @@
|
|
|
7697
7719
|
"propagateTitle": {
|
|
7698
7720
|
"description": "Indicates whether this 'Component' target should propagate it's title to this component or not",
|
|
7699
7721
|
"type": "boolean",
|
|
7700
|
-
"default": "
|
|
7722
|
+
"default": "#/$defs/routing/config/propagateTitle"
|
|
7701
7723
|
}
|
|
7702
7724
|
}
|
|
7703
7725
|
},
|
|
@@ -7802,7 +7824,7 @@
|
|
|
7802
7824
|
},
|
|
7803
7825
|
"target": {
|
|
7804
7826
|
"description": "Represents one or multiple names of targets which are displayed when the route is matched",
|
|
7805
|
-
"$ref": "
|
|
7827
|
+
"$ref": "#/$defs/routeTarget"
|
|
7806
7828
|
},
|
|
7807
7829
|
"titleTarget": {
|
|
7808
7830
|
"description": "Represents the name of the target where the 'title' information should be taken",
|
|
@@ -7814,7 +7836,7 @@
|
|
|
7814
7836
|
"description": "Represents the definition of each route",
|
|
7815
7837
|
"allOf": [
|
|
7816
7838
|
{
|
|
7817
|
-
"$ref": "
|
|
7839
|
+
"$ref": "#/$defs/routeWithoutName"
|
|
7818
7840
|
},
|
|
7819
7841
|
{
|
|
7820
7842
|
"type": "object",
|
|
@@ -7957,7 +7979,7 @@
|
|
|
7957
7979
|
"type": "string"
|
|
7958
7980
|
},
|
|
7959
7981
|
{
|
|
7960
|
-
"$ref": "
|
|
7982
|
+
"$ref": "#/$defs/routeTargetObject"
|
|
7961
7983
|
}
|
|
7962
7984
|
]
|
|
7963
7985
|
}
|
|
@@ -7967,7 +7989,7 @@
|
|
|
7967
7989
|
"type": "string"
|
|
7968
7990
|
},
|
|
7969
7991
|
{
|
|
7970
|
-
"$ref": "
|
|
7992
|
+
"$ref": "#/$defs/routeTargetObject"
|
|
7971
7993
|
}
|
|
7972
7994
|
]
|
|
7973
7995
|
},
|
|
@@ -8017,7 +8039,7 @@
|
|
|
8017
8039
|
"additionalProperties": true,
|
|
8018
8040
|
"patternProperties": {
|
|
8019
8041
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
8020
|
-
"$ref": "
|
|
8042
|
+
"$ref": "#/$defs/terminologySetting"
|
|
8021
8043
|
}
|
|
8022
8044
|
}
|
|
8023
8045
|
},
|
|
@@ -8026,7 +8048,7 @@
|
|
|
8026
8048
|
"type": "array",
|
|
8027
8049
|
"items": {
|
|
8028
8050
|
"type": "object",
|
|
8029
|
-
"$ref": "
|
|
8051
|
+
"$ref": "#/$defs/enhanceWithSetting"
|
|
8030
8052
|
}
|
|
8031
8053
|
}
|
|
8032
8054
|
}
|
|
@@ -8106,20 +8128,20 @@
|
|
|
8106
8128
|
"properties": {
|
|
8107
8129
|
"target": {
|
|
8108
8130
|
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
8109
|
-
"$ref": "
|
|
8131
|
+
"$ref": "#/$defs/routeTarget"
|
|
8110
8132
|
}
|
|
8111
8133
|
}
|
|
8112
8134
|
}
|
|
8113
8135
|
}
|
|
8114
8136
|
},
|
|
8115
8137
|
{
|
|
8116
|
-
"$ref": "
|
|
8138
|
+
"$ref": "#/$defs/target"
|
|
8117
8139
|
},
|
|
8118
8140
|
{
|
|
8119
|
-
"$ref": "
|
|
8141
|
+
"$ref": "#/$defs/legacyTargetAdditionWithoutRequiredProp"
|
|
8120
8142
|
},
|
|
8121
8143
|
{
|
|
8122
|
-
"$ref": "
|
|
8144
|
+
"$ref": "#/$defs/actualTargetAdditionStandardWithoutRequiredProp"
|
|
8123
8145
|
}
|
|
8124
8146
|
]
|
|
8125
8147
|
},
|
|
@@ -8129,7 +8151,7 @@
|
|
|
8129
8151
|
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
8130
8152
|
"type": "array",
|
|
8131
8153
|
"items": {
|
|
8132
|
-
"$ref": "
|
|
8154
|
+
"$ref": "#/$defs/route"
|
|
8133
8155
|
}
|
|
8134
8156
|
},
|
|
8135
8157
|
{
|
|
@@ -8137,7 +8159,7 @@
|
|
|
8137
8159
|
"type": "object",
|
|
8138
8160
|
"patternProperties": {
|
|
8139
8161
|
"[\\s\\S]*": {
|
|
8140
|
-
"$ref": "
|
|
8162
|
+
"$ref": "#/$defs/routeWithoutName"
|
|
8141
8163
|
}
|
|
8142
8164
|
}
|
|
8143
8165
|
}
|
|
@@ -8152,25 +8174,25 @@
|
|
|
8152
8174
|
{
|
|
8153
8175
|
"allOf": [
|
|
8154
8176
|
{
|
|
8155
|
-
"$ref": "
|
|
8177
|
+
"$ref": "#/$defs/target"
|
|
8156
8178
|
},
|
|
8157
8179
|
{
|
|
8158
|
-
"$ref": "
|
|
8180
|
+
"$ref": "#/$defs/legacyTargetAddition"
|
|
8159
8181
|
}
|
|
8160
8182
|
]
|
|
8161
8183
|
},
|
|
8162
8184
|
{
|
|
8163
8185
|
"allOf": [
|
|
8164
8186
|
{
|
|
8165
|
-
"$ref": "
|
|
8187
|
+
"$ref": "#/$defs/target"
|
|
8166
8188
|
},
|
|
8167
8189
|
{
|
|
8168
8190
|
"oneOf": [
|
|
8169
8191
|
{
|
|
8170
|
-
"$ref": "
|
|
8192
|
+
"$ref": "#/$defs/actualTargetAdditionStandard"
|
|
8171
8193
|
},
|
|
8172
8194
|
{
|
|
8173
|
-
"$ref": "
|
|
8195
|
+
"$ref": "#/$defs/actualTargetAdditionComponentUsage"
|
|
8174
8196
|
}
|
|
8175
8197
|
]
|
|
8176
8198
|
}
|
|
@@ -8246,7 +8268,7 @@
|
|
|
8246
8268
|
"properties": {
|
|
8247
8269
|
"target": {
|
|
8248
8270
|
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
8249
|
-
"$ref": "
|
|
8271
|
+
"$ref": "#/$defs/routeTarget"
|
|
8250
8272
|
}
|
|
8251
8273
|
}
|
|
8252
8274
|
},
|
|
@@ -8257,7 +8279,7 @@
|
|
|
8257
8279
|
}
|
|
8258
8280
|
},
|
|
8259
8281
|
{
|
|
8260
|
-
"$ref": "
|
|
8282
|
+
"$ref": "#/$defs/target"
|
|
8261
8283
|
}
|
|
8262
8284
|
]
|
|
8263
8285
|
},
|
|
@@ -8267,7 +8289,7 @@
|
|
|
8267
8289
|
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
8268
8290
|
"type": "array",
|
|
8269
8291
|
"items": {
|
|
8270
|
-
"$ref": "
|
|
8292
|
+
"$ref": "#/$defs/route"
|
|
8271
8293
|
}
|
|
8272
8294
|
},
|
|
8273
8295
|
{
|
|
@@ -8275,7 +8297,7 @@
|
|
|
8275
8297
|
"type": "object",
|
|
8276
8298
|
"patternProperties": {
|
|
8277
8299
|
"[\\s\\S]*": {
|
|
8278
|
-
"$ref": "
|
|
8300
|
+
"$ref": "#/$defs/routeWithoutName"
|
|
8279
8301
|
}
|
|
8280
8302
|
}
|
|
8281
8303
|
}
|
|
@@ -8290,7 +8312,7 @@
|
|
|
8290
8312
|
{
|
|
8291
8313
|
"allOf": [
|
|
8292
8314
|
{
|
|
8293
|
-
"$ref": "
|
|
8315
|
+
"$ref": "#/$defs/target"
|
|
8294
8316
|
},
|
|
8295
8317
|
{
|
|
8296
8318
|
"type": "object",
|
|
@@ -8318,7 +8340,7 @@
|
|
|
8318
8340
|
{
|
|
8319
8341
|
"allOf": [
|
|
8320
8342
|
{
|
|
8321
|
-
"$ref": "
|
|
8343
|
+
"$ref": "#/$defs/target"
|
|
8322
8344
|
},
|
|
8323
8345
|
{
|
|
8324
8346
|
"oneOf": [
|
|
@@ -8444,7 +8466,7 @@
|
|
|
8444
8466
|
"type": "object",
|
|
8445
8467
|
"patternProperties": {
|
|
8446
8468
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
8447
|
-
"$ref": "
|
|
8469
|
+
"$ref": "#/$defs/terminologySetting"
|
|
8448
8470
|
}
|
|
8449
8471
|
}
|
|
8450
8472
|
}
|
|
@@ -8473,7 +8495,7 @@
|
|
|
8473
8495
|
"type": "object",
|
|
8474
8496
|
"patternProperties": {
|
|
8475
8497
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
8476
|
-
"$ref": "
|
|
8498
|
+
"$ref": "#/$defs/terminologySetting"
|
|
8477
8499
|
}
|
|
8478
8500
|
}
|
|
8479
8501
|
}
|
|
@@ -8557,7 +8579,7 @@
|
|
|
8557
8579
|
{
|
|
8558
8580
|
"type": "array",
|
|
8559
8581
|
"items": {
|
|
8560
|
-
"$ref": "
|
|
8582
|
+
"$ref": "#/$defs/config"
|
|
8561
8583
|
}
|
|
8562
8584
|
},
|
|
8563
8585
|
{
|
|
@@ -8601,7 +8623,7 @@
|
|
|
8601
8623
|
"default": false
|
|
8602
8624
|
},
|
|
8603
8625
|
"settings": {
|
|
8604
|
-
"$ref": "
|
|
8626
|
+
"$ref": "#/$defs/ui5setting"
|
|
8605
8627
|
}
|
|
8606
8628
|
}
|
|
8607
8629
|
},
|
|
@@ -8611,7 +8633,7 @@
|
|
|
8611
8633
|
"properties": {
|
|
8612
8634
|
"minVersion": {
|
|
8613
8635
|
"description": "Represents minimal version of ui5 component",
|
|
8614
|
-
"$ref": "
|
|
8636
|
+
"$ref": "#/$defs/version"
|
|
8615
8637
|
},
|
|
8616
8638
|
"lazy": {
|
|
8617
8639
|
"description": "Represents Indicator to lazy loading component",
|
|
@@ -8626,7 +8648,7 @@
|
|
|
8626
8648
|
"properties": {
|
|
8627
8649
|
"minVersion": {
|
|
8628
8650
|
"description": "Represents minimal version of ui5 library",
|
|
8629
|
-
"$ref": "
|
|
8651
|
+
"$ref": "#/$defs/version"
|
|
8630
8652
|
},
|
|
8631
8653
|
"lazy": {
|
|
8632
8654
|
"description": "Represents Indicator to lazy loading lib",
|
|
@@ -8663,11 +8685,11 @@
|
|
|
8663
8685
|
},
|
|
8664
8686
|
"componentData": {
|
|
8665
8687
|
"description": "Represents component data for the Component",
|
|
8666
|
-
"$ref": "
|
|
8688
|
+
"$ref": "#/$defs/config"
|
|
8667
8689
|
},
|
|
8668
8690
|
"settings": {
|
|
8669
8691
|
"description": "Represents settings for the Component",
|
|
8670
|
-
"$ref": "
|
|
8692
|
+
"$ref": "#/$defs/config"
|
|
8671
8693
|
},
|
|
8672
8694
|
"lazy": {
|
|
8673
8695
|
"description": "Represents Indicator to lazy loading component usage, default true",
|
|
@@ -8861,8 +8883,9 @@
|
|
|
8861
8883
|
]
|
|
8862
8884
|
},
|
|
8863
8885
|
"prompt": {
|
|
8864
|
-
"description": "
|
|
8865
|
-
"type": "boolean"
|
|
8886
|
+
"description": "[Deprecated] Indicates the administrator should be prompted to supply a value when creating a tile",
|
|
8887
|
+
"type": "boolean",
|
|
8888
|
+
"deprecated": true
|
|
8866
8889
|
}
|
|
8867
8890
|
}
|
|
8868
8891
|
},
|
|
@@ -8953,7 +8976,7 @@
|
|
|
8953
8976
|
},
|
|
8954
8977
|
"settings": {
|
|
8955
8978
|
"description": "Represents data source type specific attributes (key, value pairs)",
|
|
8956
|
-
"$ref": "
|
|
8979
|
+
"$ref": "#/$defs/setting"
|
|
8957
8980
|
},
|
|
8958
8981
|
"customType": {
|
|
8959
8982
|
"description": "Represents a custom data source type flag. So the type can be any string if its true, and only enum values if false",
|
|
@@ -8992,7 +9015,7 @@
|
|
|
8992
9015
|
},
|
|
8993
9016
|
"settings": {
|
|
8994
9017
|
"description": "Represents data source type specific attributes (key, value pairs)",
|
|
8995
|
-
"$ref": "
|
|
9018
|
+
"$ref": "#/$defs/setting"
|
|
8996
9019
|
},
|
|
8997
9020
|
"customType": {
|
|
8998
9021
|
"type": "boolean",
|
|
@@ -9038,10 +9061,10 @@
|
|
|
9038
9061
|
"type": "object",
|
|
9039
9062
|
"properties": {
|
|
9040
9063
|
"objectName": {
|
|
9041
|
-
"$ref": "
|
|
9064
|
+
"$ref": "#/$defs/objectName"
|
|
9042
9065
|
},
|
|
9043
9066
|
"objectType": {
|
|
9044
|
-
"$ref": "
|
|
9067
|
+
"$ref": "#/$defs/objectType"
|
|
9045
9068
|
},
|
|
9046
9069
|
"packageName": {
|
|
9047
9070
|
"type": "string"
|
|
@@ -9167,7 +9190,7 @@
|
|
|
9167
9190
|
},
|
|
9168
9191
|
"title": {
|
|
9169
9192
|
"description": "Represents a title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
9170
|
-
"$ref": "
|
|
9193
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
9171
9194
|
"i18n": {
|
|
9172
9195
|
"type": "XTIT",
|
|
9173
9196
|
"comment": "Application title"
|
|
@@ -9175,7 +9198,7 @@
|
|
|
9175
9198
|
},
|
|
9176
9199
|
"subTitle": {
|
|
9177
9200
|
"description": "Represents a subtitle; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
9178
|
-
"$ref": "
|
|
9201
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
9179
9202
|
"i18n": {
|
|
9180
9203
|
"type": "XTIT",
|
|
9181
9204
|
"comment": "Application subtitle"
|
|
@@ -9183,7 +9206,7 @@
|
|
|
9183
9206
|
},
|
|
9184
9207
|
"shortTitle": {
|
|
9185
9208
|
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
9186
|
-
"$ref": "
|
|
9209
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
9187
9210
|
"i18n": {
|
|
9188
9211
|
"type": "XTIT",
|
|
9189
9212
|
"comment": "Shorter version of the application title"
|
|
@@ -9191,7 +9214,7 @@
|
|
|
9191
9214
|
},
|
|
9192
9215
|
"info": {
|
|
9193
9216
|
"description": "Represents additional information to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
9194
|
-
"$ref": "
|
|
9217
|
+
"$ref": "#/$defs/i18n_key_string",
|
|
9195
9218
|
"i18n": {
|
|
9196
9219
|
"type": "YINF",
|
|
9197
9220
|
"comment": "Additional information to the application title"
|
|
@@ -9228,10 +9251,10 @@
|
|
|
9228
9251
|
},
|
|
9229
9252
|
"deviceTypes": {
|
|
9230
9253
|
"description": "Represents device types for which application is developed",
|
|
9231
|
-
"$ref": "
|
|
9254
|
+
"$ref": "#/$defs/deviceType"
|
|
9232
9255
|
},
|
|
9233
9256
|
"signature": {
|
|
9234
|
-
"$ref": "
|
|
9257
|
+
"$ref": "#/$defs/signature_def"
|
|
9235
9258
|
}
|
|
9236
9259
|
}
|
|
9237
9260
|
}
|
|
@@ -9261,10 +9284,10 @@
|
|
|
9261
9284
|
"dataSource": {
|
|
9262
9285
|
"oneOf": [
|
|
9263
9286
|
{
|
|
9264
|
-
"$ref": "
|
|
9287
|
+
"$ref": "#/$defs/dataSourceEnum"
|
|
9265
9288
|
},
|
|
9266
9289
|
{
|
|
9267
|
-
"$ref": "
|
|
9290
|
+
"$ref": "#/$defs/dataSourceCustom"
|
|
9268
9291
|
}
|
|
9269
9292
|
]
|
|
9270
9293
|
},
|
|
@@ -9272,7 +9295,7 @@
|
|
|
9272
9295
|
"type": "array",
|
|
9273
9296
|
"items": {
|
|
9274
9297
|
"description": "Represents a tag; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
9275
|
-
"$ref": "
|
|
9298
|
+
"$ref": "#/$defs/i18n_key_string"
|
|
9276
9299
|
},
|
|
9277
9300
|
"i18n": {
|
|
9278
9301
|
"type": "XFLD",
|
|
@@ -9314,7 +9337,7 @@
|
|
|
9314
9337
|
"additionalProperties": false,
|
|
9315
9338
|
"patternProperties": {
|
|
9316
9339
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
9317
|
-
"$ref": "
|
|
9340
|
+
"$ref": "#/$defs/terminologySetting"
|
|
9318
9341
|
}
|
|
9319
9342
|
}
|
|
9320
9343
|
}
|
|
@@ -9344,7 +9367,7 @@
|
|
|
9344
9367
|
"additionalProperties": false,
|
|
9345
9368
|
"patternProperties": {
|
|
9346
9369
|
"^[a-zA-Z0-9_\\-]*$": {
|
|
9347
|
-
"$ref": "
|
|
9370
|
+
"$ref": "#/$defs/terminologySetting"
|
|
9348
9371
|
}
|
|
9349
9372
|
}
|
|
9350
9373
|
}
|