@ui5/manifest 1.17.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +58 -3
- package/mapping.json +21 -1
- package/package.json +1 -1
- package/schema.json +2908 -550
- package/schema_cil.json +785 -112
- package/types/manifest.d.ts +698 -604
package/schema_cil.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"title": "SAP JSON schema for Web Application Manifest File",
|
|
2
|
+
"title": "SAP JSON schema for Web Application Manifest File (CIL)",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"required": [
|
|
@@ -29,7 +29,14 @@
|
|
|
29
29
|
"1.14.0",
|
|
30
30
|
"1.15.0",
|
|
31
31
|
"1.16.0",
|
|
32
|
-
"1.17.0"
|
|
32
|
+
"1.17.0",
|
|
33
|
+
"1.18.0",
|
|
34
|
+
"1.19.0",
|
|
35
|
+
"1.20.0",
|
|
36
|
+
"1.21.0",
|
|
37
|
+
"1.22.0",
|
|
38
|
+
"1.23.0",
|
|
39
|
+
"1.24.0"
|
|
33
40
|
]
|
|
34
41
|
},
|
|
35
42
|
"start_url": {
|
|
@@ -37,7 +44,7 @@
|
|
|
37
44
|
"type": "string"
|
|
38
45
|
},
|
|
39
46
|
"sap.app": {
|
|
40
|
-
"title": "JSON schema for SAP.APP Namespace",
|
|
47
|
+
"title": "JSON schema for SAP.APP Namespace (CIL)",
|
|
41
48
|
"description": "Represents general application attributes",
|
|
42
49
|
"type": "object",
|
|
43
50
|
"additionalProperties": false,
|
|
@@ -56,7 +63,11 @@
|
|
|
56
63
|
"1.2.0",
|
|
57
64
|
"1.3.0",
|
|
58
65
|
"1.4.0",
|
|
59
|
-
"1.5.0"
|
|
66
|
+
"1.5.0",
|
|
67
|
+
"1.6.0",
|
|
68
|
+
"1.7.0",
|
|
69
|
+
"1.8.0",
|
|
70
|
+
"1.9.0"
|
|
60
71
|
]
|
|
61
72
|
},
|
|
62
73
|
"sourceTemplate": {
|
|
@@ -91,34 +102,126 @@
|
|
|
91
102
|
]
|
|
92
103
|
},
|
|
93
104
|
"i18n": {
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
105
|
+
"default": "i18n/i18n.properties",
|
|
106
|
+
"description": "Represents path inside the app to the properties file containing text symbols for the Descriptor or properties file specific settings (including supportedLocales, fallbackLocale, terminologies and enhanceWith)",
|
|
107
|
+
"oneOf": [
|
|
108
|
+
{
|
|
109
|
+
"default": "i18n/i18n.properties",
|
|
110
|
+
"type": "string"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "object",
|
|
114
|
+
"required": [
|
|
115
|
+
"bundleName"
|
|
116
|
+
],
|
|
117
|
+
"additionalProperties": false,
|
|
118
|
+
"properties": {
|
|
119
|
+
"bundleName": {
|
|
120
|
+
"description": "Represents the alternative for bundleUrl",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"fallbackLocale": {
|
|
124
|
+
"description": "Represents the fallback locale",
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
"supportedLocales": {
|
|
128
|
+
"description": "Represents the list of supported locales",
|
|
129
|
+
"type": "array"
|
|
130
|
+
},
|
|
131
|
+
"terminologies": {
|
|
132
|
+
"description": "Represents terminologies with additional properties files",
|
|
133
|
+
"type": "object",
|
|
134
|
+
"additionalProperties": false,
|
|
135
|
+
"patternProperties": {
|
|
136
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
137
|
+
"$ref": "#/definitions/terminologySetting"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"enhanceWith": {
|
|
142
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
143
|
+
"type": "array",
|
|
144
|
+
"items": {
|
|
145
|
+
"type": "object",
|
|
146
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": "object",
|
|
153
|
+
"additionalProperties": false,
|
|
154
|
+
"required": [
|
|
155
|
+
"bundleUrl"
|
|
156
|
+
],
|
|
157
|
+
"properties": {
|
|
158
|
+
"bundleUrl": {
|
|
159
|
+
"description": "Represents the URL for the resource bundle",
|
|
160
|
+
"type": "string"
|
|
161
|
+
},
|
|
162
|
+
"bundleUrlRelativeTo": {
|
|
163
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
164
|
+
"type": "string",
|
|
165
|
+
"default": "component",
|
|
166
|
+
"enum": [
|
|
167
|
+
"manifest",
|
|
168
|
+
"component"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
"supportedLocales": {
|
|
172
|
+
"description": "Represents the list of supported locales",
|
|
173
|
+
"type": "array"
|
|
174
|
+
},
|
|
175
|
+
"fallbackLocale": {
|
|
176
|
+
"description": "Represents the fallback locale",
|
|
177
|
+
"type": "string"
|
|
178
|
+
},
|
|
179
|
+
"terminologies": {
|
|
180
|
+
"description": "Represents terminologies with additional properties files",
|
|
181
|
+
"type": "object",
|
|
182
|
+
"additionalProperties": false,
|
|
183
|
+
"patternProperties": {
|
|
184
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
185
|
+
"$ref": "#/definitions/terminologySetting"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"enhanceWith": {
|
|
190
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
191
|
+
"type": "array",
|
|
192
|
+
"items": {
|
|
193
|
+
"type": "object",
|
|
194
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
]
|
|
97
200
|
},
|
|
98
201
|
"embeddedBy": {
|
|
99
202
|
"description": "Represents relative path back to the manifest.json of an embedding component or library (mandatory for nested 'manifest.json')",
|
|
100
203
|
"type": "string"
|
|
101
204
|
},
|
|
102
205
|
"title": {
|
|
103
|
-
"description": "Represents language
|
|
104
|
-
"
|
|
206
|
+
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
207
|
+
"type": "string"
|
|
105
208
|
},
|
|
106
209
|
"subTitle": {
|
|
107
|
-
"description": "Represents language
|
|
108
|
-
"
|
|
210
|
+
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
211
|
+
"type": "string"
|
|
109
212
|
},
|
|
110
213
|
"shortTitle": {
|
|
111
|
-
"description": "Represents shorter version of the title
|
|
112
|
-
"
|
|
214
|
+
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
215
|
+
"type": "string"
|
|
113
216
|
},
|
|
114
217
|
"description": {
|
|
115
|
-
"description": "Represents language
|
|
116
|
-
"
|
|
218
|
+
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
219
|
+
"type": "string"
|
|
117
220
|
},
|
|
118
221
|
"ach": {
|
|
119
222
|
"description": "Represents application component hierarchy",
|
|
120
223
|
"type": "string",
|
|
121
|
-
"pattern": "^([a-zA-Z0-9]{2,3})(
|
|
224
|
+
"pattern": "^([a-zA-Z0-9]{2,3})(-[a-zA-Z0-9]{1,6})*$"
|
|
122
225
|
},
|
|
123
226
|
"dataSources": {
|
|
124
227
|
"description": "Represents used data sources with a unique key/alias",
|
|
@@ -160,11 +263,15 @@
|
|
|
160
263
|
"definitions": {
|
|
161
264
|
"version": {
|
|
162
265
|
"type": "string"
|
|
266
|
+
},
|
|
267
|
+
"i18n_key": {
|
|
268
|
+
"type": "string",
|
|
269
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
163
270
|
}
|
|
164
271
|
}
|
|
165
272
|
},
|
|
166
273
|
"sap.ui": {
|
|
167
|
-
"title": "JSON schema for SAP.UI Namespace",
|
|
274
|
+
"title": "JSON schema for SAP.UI Namespace (CIL)",
|
|
168
275
|
"description": "Represents general ui attributes",
|
|
169
276
|
"type": "object",
|
|
170
277
|
"required": [
|
|
@@ -221,7 +328,7 @@
|
|
|
221
328
|
}
|
|
222
329
|
},
|
|
223
330
|
"sap.ui5": {
|
|
224
|
-
"title": "JSON schema for SAP.UI5 Namespace",
|
|
331
|
+
"title": "JSON schema for SAP.UI5 Namespace (CIL)",
|
|
225
332
|
"description": "Represents sapui5 attributes",
|
|
226
333
|
"allOf": [
|
|
227
334
|
{
|
|
@@ -242,7 +349,10 @@
|
|
|
242
349
|
"1.5.0",
|
|
243
350
|
"1.6.0",
|
|
244
351
|
"1.7.0",
|
|
245
|
-
"1.8.0"
|
|
352
|
+
"1.8.0",
|
|
353
|
+
"1.9.0",
|
|
354
|
+
"1.10.0",
|
|
355
|
+
"1.11.0"
|
|
246
356
|
]
|
|
247
357
|
},
|
|
248
358
|
"resources": {
|
|
@@ -291,7 +401,7 @@
|
|
|
291
401
|
"type": "object",
|
|
292
402
|
"additionalProperties": false,
|
|
293
403
|
"patternProperties": {
|
|
294
|
-
"^[a-zA-Z0-9_
|
|
404
|
+
"^[a-zA-Z0-9_\\.\\-\\|@]*$": {
|
|
295
405
|
"$ref": "#/definitions/model"
|
|
296
406
|
}
|
|
297
407
|
}
|
|
@@ -383,7 +493,7 @@
|
|
|
383
493
|
"type": "object",
|
|
384
494
|
"additionalProperties": false,
|
|
385
495
|
"patternProperties": {
|
|
386
|
-
"^[A-Za-z_][A-Za-z0-9_
|
|
496
|
+
"^[A-Za-z_][A-Za-z0-9_\\-\\|@]+$": {
|
|
387
497
|
"$ref": "#/definitions/command"
|
|
388
498
|
}
|
|
389
499
|
}
|
|
@@ -400,6 +510,49 @@
|
|
|
400
510
|
"$ref": "#/definitions/rootView_def"
|
|
401
511
|
}
|
|
402
512
|
}
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"oneOf": [
|
|
516
|
+
{
|
|
517
|
+
"type": "object",
|
|
518
|
+
"required": [
|
|
519
|
+
"flexEnabled"
|
|
520
|
+
],
|
|
521
|
+
"properties": {
|
|
522
|
+
"flexEnabled": {
|
|
523
|
+
"description": "Represents an Indicator whether a component inside a library is flex enabled",
|
|
524
|
+
"type": "boolean",
|
|
525
|
+
"enum": [
|
|
526
|
+
true
|
|
527
|
+
]
|
|
528
|
+
},
|
|
529
|
+
"routing": {
|
|
530
|
+
"$ref": "#/definitions/routing_flexEnabled"
|
|
531
|
+
},
|
|
532
|
+
"rootView": {
|
|
533
|
+
"$ref": "#/definitions/rootView_def_flexEnabled"
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"type": "object",
|
|
539
|
+
"properties": {
|
|
540
|
+
"flexEnabled": {
|
|
541
|
+
"description": "Represents an Indicator whether a component inside a library is flex enabled",
|
|
542
|
+
"type": "boolean",
|
|
543
|
+
"enum": [
|
|
544
|
+
false
|
|
545
|
+
]
|
|
546
|
+
},
|
|
547
|
+
"routing": {
|
|
548
|
+
"$ref": "#/definitions/routing"
|
|
549
|
+
},
|
|
550
|
+
"rootView": {
|
|
551
|
+
"$ref": "#/definitions/rootView_def"
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
]
|
|
403
556
|
}
|
|
404
557
|
],
|
|
405
558
|
"definitions": {
|
|
@@ -558,7 +711,8 @@
|
|
|
558
711
|
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
559
712
|
"type": "string",
|
|
560
713
|
"enum": [
|
|
561
|
-
"1.1.0"
|
|
714
|
+
"1.1.0",
|
|
715
|
+
"1.2.0"
|
|
562
716
|
]
|
|
563
717
|
},
|
|
564
718
|
"registrationIds": {
|
|
@@ -579,6 +733,10 @@
|
|
|
579
733
|
"fpmwebdynpro",
|
|
580
734
|
"designstudio"
|
|
581
735
|
]
|
|
736
|
+
},
|
|
737
|
+
"abstract": {
|
|
738
|
+
"description": "Indicator that app is an abstract (generic) app which may not be used directly, but needs to be specialized in the SAP Fiori launchpad content",
|
|
739
|
+
"type": "boolean"
|
|
582
740
|
}
|
|
583
741
|
}
|
|
584
742
|
},
|
|
@@ -593,7 +751,9 @@
|
|
|
593
751
|
"enum": [
|
|
594
752
|
"1.1.0",
|
|
595
753
|
"1.2.0",
|
|
596
|
-
"1.3.0"
|
|
754
|
+
"1.3.0",
|
|
755
|
+
"1.4.0",
|
|
756
|
+
"1.5.0"
|
|
597
757
|
]
|
|
598
758
|
},
|
|
599
759
|
"settings": {
|
|
@@ -710,23 +870,24 @@
|
|
|
710
870
|
"enum": [
|
|
711
871
|
"1.1.0",
|
|
712
872
|
"1.2.0",
|
|
713
|
-
"1.3.0"
|
|
873
|
+
"1.3.0",
|
|
874
|
+
"1.4.0"
|
|
714
875
|
]
|
|
715
876
|
},
|
|
716
877
|
"globalFilterModel": {
|
|
717
878
|
"description": "Represents the name of global filter OData model, which contains entities definition that are relevant for global filters",
|
|
718
879
|
"type": "string",
|
|
719
|
-
"pattern": "^[a-zA-Z0-9_
|
|
880
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
720
881
|
},
|
|
721
882
|
"globalFilterEntityType": {
|
|
722
883
|
"description": "Represents the entity to use as global filter in the smart filter bar control",
|
|
723
884
|
"type": "string",
|
|
724
|
-
"pattern": "^[a-zA-Z0-9_
|
|
885
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
725
886
|
},
|
|
726
887
|
"globalFilterEntitySet": {
|
|
727
888
|
"description": "Represents the entity set to use as global filter in the smart filter bar control",
|
|
728
889
|
"type": "string",
|
|
729
|
-
"pattern": "^[a-zA-Z0-9_
|
|
890
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
730
891
|
},
|
|
731
892
|
"showBasicSearch": {
|
|
732
893
|
"description": "Represents a switch to include basic search in the global filters",
|
|
@@ -787,6 +948,17 @@
|
|
|
787
948
|
"type": "boolean",
|
|
788
949
|
"default": false
|
|
789
950
|
},
|
|
951
|
+
"chartSettings": {
|
|
952
|
+
"description": "Represents the object to store analytical chart settings",
|
|
953
|
+
"type": "object",
|
|
954
|
+
"properties": {
|
|
955
|
+
"showDataLabel": {
|
|
956
|
+
"description": "Flag to enable data labels on analytical charts",
|
|
957
|
+
"type": "boolean",
|
|
958
|
+
"default": false
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
},
|
|
790
962
|
"cards": {
|
|
791
963
|
"type": "object",
|
|
792
964
|
"additionalProperties": false,
|
|
@@ -827,7 +999,7 @@
|
|
|
827
999
|
"applicationId": {
|
|
828
1000
|
"description": "Represents ID of an application",
|
|
829
1001
|
"type": "string",
|
|
830
|
-
"pattern": "^[a-zA-Z0-9
|
|
1002
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,30}$"
|
|
831
1003
|
},
|
|
832
1004
|
"configId": {
|
|
833
1005
|
"description": "Represents ID of an application configuration",
|
|
@@ -902,7 +1074,7 @@
|
|
|
902
1074
|
"transaction": {
|
|
903
1075
|
"description": "Represents transaction of an application",
|
|
904
1076
|
"type": "string",
|
|
905
|
-
"pattern": "^[a-zA-Z0-9
|
|
1077
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,20}$"
|
|
906
1078
|
},
|
|
907
1079
|
"flavorId": {
|
|
908
1080
|
"description": "Represents SAP Screen Personas Flavor ID",
|
|
@@ -978,7 +1150,7 @@
|
|
|
978
1150
|
"wcf-target-id": {
|
|
979
1151
|
"description": "Represents the target technical id for a WCF Application",
|
|
980
1152
|
"type": "string",
|
|
981
|
-
"pattern": "^[a-zA-Z0-9
|
|
1153
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,10}$"
|
|
982
1154
|
}
|
|
983
1155
|
}
|
|
984
1156
|
},
|
|
@@ -1152,12 +1324,14 @@
|
|
|
1152
1324
|
"type": "string",
|
|
1153
1325
|
"enum": [
|
|
1154
1326
|
"1.0.0",
|
|
1155
|
-
"1.1.0"
|
|
1327
|
+
"1.1.0",
|
|
1328
|
+
"1.2.0"
|
|
1156
1329
|
]
|
|
1157
1330
|
},
|
|
1158
1331
|
"service": {
|
|
1159
1332
|
"description": "Unique Business Service Identifier",
|
|
1160
|
-
"type": "string"
|
|
1333
|
+
"type": "string",
|
|
1334
|
+
"pattern": "^[^- @#$%^&()!]+$"
|
|
1161
1335
|
},
|
|
1162
1336
|
"public": {
|
|
1163
1337
|
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
@@ -1365,37 +1539,37 @@
|
|
|
1365
1539
|
"annotationPath": {
|
|
1366
1540
|
"description": "Represents the annotation path",
|
|
1367
1541
|
"type": "string",
|
|
1368
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1542
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1369
1543
|
},
|
|
1370
1544
|
"selectionAnnotationPath": {
|
|
1371
1545
|
"description": "Represents the selection annotation path",
|
|
1372
1546
|
"type": "string",
|
|
1373
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1547
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1374
1548
|
},
|
|
1375
1549
|
"chartAnnotationPath": {
|
|
1376
1550
|
"description": "Represents the chart annotation path",
|
|
1377
1551
|
"type": "string",
|
|
1378
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1552
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1379
1553
|
},
|
|
1380
1554
|
"presentationAnnotationPath": {
|
|
1381
1555
|
"description": "Represents the presentation annotation path",
|
|
1382
1556
|
"type": "string",
|
|
1383
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1557
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1384
1558
|
},
|
|
1385
1559
|
"dataPointAnnotationPath": {
|
|
1386
1560
|
"description": "Represents the data point annotation path",
|
|
1387
1561
|
"type": "string",
|
|
1388
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1562
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1389
1563
|
},
|
|
1390
1564
|
"identificationAnnotationPath": {
|
|
1391
1565
|
"description": "Represents the identification annotation path",
|
|
1392
1566
|
"type": "string",
|
|
1393
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1567
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1394
1568
|
},
|
|
1395
1569
|
"dynamicSubtitleAnnotationPath": {
|
|
1396
1570
|
"description": "Represents the dynamic subtitle annotation path",
|
|
1397
1571
|
"type": "string",
|
|
1398
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1572
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1399
1573
|
},
|
|
1400
1574
|
"value": {
|
|
1401
1575
|
"description": "Represents the drop down value to be shown",
|
|
@@ -1466,7 +1640,7 @@
|
|
|
1466
1640
|
"entitySet": {
|
|
1467
1641
|
"description": "Represents the entity set that will be displayed in this card",
|
|
1468
1642
|
"type": "string",
|
|
1469
|
-
"pattern": "^[a-zA-Z0-
|
|
1643
|
+
"pattern": "^[a-zA-Z0-9_]+$"
|
|
1470
1644
|
},
|
|
1471
1645
|
"staticContent": {
|
|
1472
1646
|
"description": "Represents the static content that will be displayed in this card",
|
|
@@ -1507,47 +1681,47 @@
|
|
|
1507
1681
|
"annotationPath": {
|
|
1508
1682
|
"description": "Represents the annotation path",
|
|
1509
1683
|
"type": "string",
|
|
1510
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1684
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1511
1685
|
},
|
|
1512
1686
|
"selectionAnnotationPath": {
|
|
1513
1687
|
"description": "Represents the selection annotation path",
|
|
1514
1688
|
"type": "string",
|
|
1515
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1689
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1516
1690
|
},
|
|
1517
1691
|
"chartAnnotationPath": {
|
|
1518
1692
|
"description": "Represents the chart annotation path",
|
|
1519
1693
|
"type": "string",
|
|
1520
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1694
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1521
1695
|
},
|
|
1522
1696
|
"presentationAnnotationPath": {
|
|
1523
1697
|
"description": "Represents the presentation annotation path",
|
|
1524
1698
|
"type": "string",
|
|
1525
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1699
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1526
1700
|
},
|
|
1527
1701
|
"dataPointAnnotationPath": {
|
|
1528
1702
|
"description": "Represents the data point annotation path",
|
|
1529
1703
|
"type": "string",
|
|
1530
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1704
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1531
1705
|
},
|
|
1532
1706
|
"identificationAnnotationPath": {
|
|
1533
1707
|
"description": "Represents the identification annotation path",
|
|
1534
1708
|
"type": "string",
|
|
1535
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1709
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#,]*$"
|
|
1536
1710
|
},
|
|
1537
1711
|
"kpiAnnotationPath": {
|
|
1538
1712
|
"description": "Represents the KPI annotation path",
|
|
1539
1713
|
"type": "string",
|
|
1540
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1714
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1541
1715
|
},
|
|
1542
1716
|
"selectionPresentationAnnotationPath": {
|
|
1543
1717
|
"description": "Represents the selection presentation annotation path",
|
|
1544
1718
|
"type": "string",
|
|
1545
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1719
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1546
1720
|
},
|
|
1547
1721
|
"dynamicSubtitleAnnotationPath": {
|
|
1548
1722
|
"description": "Represents the dynamic subtitle annotation path",
|
|
1549
1723
|
"type": "string",
|
|
1550
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1724
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1551
1725
|
},
|
|
1552
1726
|
"ignoreSapText": {
|
|
1553
1727
|
"description": "Represents the flag to indicate priority of number formatting over sap text",
|
|
@@ -1663,7 +1837,7 @@
|
|
|
1663
1837
|
"model": {
|
|
1664
1838
|
"description": "Represents the model for the card",
|
|
1665
1839
|
"type": "string",
|
|
1666
|
-
"pattern": "^[a-zA-Z0-9_
|
|
1840
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
1667
1841
|
},
|
|
1668
1842
|
"template": {
|
|
1669
1843
|
"description": "Represents the card component path to use for this card",
|
|
@@ -1687,34 +1861,53 @@
|
|
|
1687
1861
|
"type": "string"
|
|
1688
1862
|
},
|
|
1689
1863
|
"implementingComponent_def": {
|
|
1690
|
-
"
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
"
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1864
|
+
"oneOf": [
|
|
1865
|
+
{
|
|
1866
|
+
"type": "object",
|
|
1867
|
+
"additionalProperties": false,
|
|
1868
|
+
"required": [
|
|
1869
|
+
"componentName"
|
|
1870
|
+
],
|
|
1871
|
+
"properties": {
|
|
1872
|
+
"componentName": {
|
|
1873
|
+
"description": "Represents the name of the component to be loaded inside the canvas",
|
|
1874
|
+
"type": "string",
|
|
1875
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
1876
|
+
},
|
|
1877
|
+
"binding": {
|
|
1878
|
+
"$ref": "#/definitions/component_binding_def"
|
|
1879
|
+
},
|
|
1880
|
+
"settings": {
|
|
1881
|
+
"$ref": "#/definitions/component_setting_def"
|
|
1882
|
+
},
|
|
1883
|
+
"pages": {
|
|
1884
|
+
"$ref": "#/definitions/component_pages_def"
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1707
1887
|
},
|
|
1708
|
-
|
|
1888
|
+
{
|
|
1709
1889
|
"type": "object",
|
|
1710
1890
|
"additionalProperties": false,
|
|
1711
|
-
"
|
|
1712
|
-
"
|
|
1713
|
-
|
|
1891
|
+
"required": [
|
|
1892
|
+
"componentUsage"
|
|
1893
|
+
],
|
|
1894
|
+
"properties": {
|
|
1895
|
+
"componentUsage": {
|
|
1896
|
+
"description": "Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages for the component to be loaded inside the canvas",
|
|
1897
|
+
"type": "string"
|
|
1898
|
+
},
|
|
1899
|
+
"binding": {
|
|
1900
|
+
"$ref": "#/definitions/component_binding_def"
|
|
1901
|
+
},
|
|
1902
|
+
"settings": {
|
|
1903
|
+
"$ref": "#/definitions/component_setting_def"
|
|
1904
|
+
},
|
|
1905
|
+
"pages": {
|
|
1906
|
+
"$ref": "#/definitions/component_pages_def"
|
|
1714
1907
|
}
|
|
1715
1908
|
}
|
|
1716
1909
|
}
|
|
1717
|
-
|
|
1910
|
+
]
|
|
1718
1911
|
},
|
|
1719
1912
|
"routingSpec_def": {
|
|
1720
1913
|
"type": "object",
|
|
@@ -1790,6 +1983,19 @@
|
|
|
1790
1983
|
}
|
|
1791
1984
|
}
|
|
1792
1985
|
},
|
|
1986
|
+
"component_pages_def": {
|
|
1987
|
+
"type": "object",
|
|
1988
|
+
"additionalProperties": false,
|
|
1989
|
+
"patternProperties": {
|
|
1990
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
1991
|
+
"$ref": "#/definitions/pages_map"
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
"component_binding_def": {
|
|
1996
|
+
"description": " Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute ",
|
|
1997
|
+
"type": "string"
|
|
1998
|
+
},
|
|
1793
1999
|
"component_setting_def": {
|
|
1794
2000
|
"description": "Represents the settings specific to one component",
|
|
1795
2001
|
"type": "object"
|
|
@@ -1798,7 +2004,7 @@
|
|
|
1798
2004
|
"type": "object",
|
|
1799
2005
|
"additionalProperties": false,
|
|
1800
2006
|
"patternProperties": {
|
|
1801
|
-
"^[a-zA-Z0-9_
|
|
2007
|
+
"^[a-zA-Z0-9_.:-]+$": {
|
|
1802
2008
|
"allOf": [
|
|
1803
2009
|
{
|
|
1804
2010
|
"type": "object",
|
|
@@ -1810,7 +2016,7 @@
|
|
|
1810
2016
|
"id": {
|
|
1811
2017
|
"description": "Represents an unique id for the instance of the reuse component inside of the object page",
|
|
1812
2018
|
"type": "string",
|
|
1813
|
-
"pattern": "^([A-Za-z_][
|
|
2019
|
+
"pattern": "^([A-Za-z_][-A-Za-z0-9_.:]*)$"
|
|
1814
2020
|
},
|
|
1815
2021
|
"title": {
|
|
1816
2022
|
"description": "Represents the title for the content of the reuse component",
|
|
@@ -1898,6 +2104,20 @@
|
|
|
1898
2104
|
"target": {
|
|
1899
2105
|
"description": "Represents the pointer to a semantic object",
|
|
1900
2106
|
"type": "string"
|
|
2107
|
+
},
|
|
2108
|
+
"refreshStrategyOnAppRestore": {
|
|
2109
|
+
"description": "Represents the refresh strategies configured for external display navigation while coming back to the source app",
|
|
2110
|
+
"$ref": "#/definitions/refreshStrategies_prop_def"
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
"refreshStrategies_prop_def": {
|
|
2115
|
+
"type": "object",
|
|
2116
|
+
"additionalProperties": false,
|
|
2117
|
+
"properties": {
|
|
2118
|
+
"entitySets": {
|
|
2119
|
+
"description": "Represents the map of entity sets configured for refresh strategies",
|
|
2120
|
+
"type": "object"
|
|
1901
2121
|
}
|
|
1902
2122
|
}
|
|
1903
2123
|
},
|
|
@@ -1940,6 +2160,10 @@
|
|
|
1940
2160
|
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
1941
2161
|
"$ref": "#/definitions/defaultLayoutType_def"
|
|
1942
2162
|
},
|
|
2163
|
+
"defaultLayoutTypeIfExternalNavigation": {
|
|
2164
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
2165
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2166
|
+
},
|
|
1943
2167
|
"pages": {
|
|
1944
2168
|
"type": "object",
|
|
1945
2169
|
"additionalProperties": false,
|
|
@@ -1990,6 +2214,10 @@
|
|
|
1990
2214
|
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
1991
2215
|
"$ref": "#/definitions/defaultLayoutType_def"
|
|
1992
2216
|
},
|
|
2217
|
+
"defaultLayoutTypeIfExternalNavigation": {
|
|
2218
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
2219
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2220
|
+
},
|
|
1993
2221
|
"pages": {
|
|
1994
2222
|
"type": "array",
|
|
1995
2223
|
"items": {
|
|
@@ -2013,6 +2241,11 @@
|
|
|
2013
2241
|
"prefix": {
|
|
2014
2242
|
"description": "The prefix of the routing target",
|
|
2015
2243
|
"type": "string"
|
|
2244
|
+
},
|
|
2245
|
+
"propagateTitle": {
|
|
2246
|
+
"description": "Indicates whether this 'Component' target should propagate it's title to this component or not",
|
|
2247
|
+
"type": "boolean",
|
|
2248
|
+
"default": "#/definitions/routing/config/propagateTitle"
|
|
2016
2249
|
}
|
|
2017
2250
|
}
|
|
2018
2251
|
},
|
|
@@ -2152,6 +2385,122 @@
|
|
|
2152
2385
|
}
|
|
2153
2386
|
]
|
|
2154
2387
|
},
|
|
2388
|
+
"enhanceWithSetting_0": {
|
|
2389
|
+
"oneOf": [
|
|
2390
|
+
{
|
|
2391
|
+
"additionalProperties": false,
|
|
2392
|
+
"required": [
|
|
2393
|
+
"bundleUrl"
|
|
2394
|
+
],
|
|
2395
|
+
"properties": {
|
|
2396
|
+
"bundleUrl": {
|
|
2397
|
+
"description": "Represents property url for model enhancement",
|
|
2398
|
+
"type": "string"
|
|
2399
|
+
},
|
|
2400
|
+
"bundleUrlRelativeTo": {
|
|
2401
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2402
|
+
"type": "string",
|
|
2403
|
+
"default": "component",
|
|
2404
|
+
"enum": [
|
|
2405
|
+
"manifest",
|
|
2406
|
+
"component"
|
|
2407
|
+
]
|
|
2408
|
+
},
|
|
2409
|
+
"fallbackLocale": {
|
|
2410
|
+
"description": "Represents the fallback locale",
|
|
2411
|
+
"type": "string"
|
|
2412
|
+
},
|
|
2413
|
+
"supportedLocales": {
|
|
2414
|
+
"description": "Represents the list of supported locales",
|
|
2415
|
+
"type": "array"
|
|
2416
|
+
},
|
|
2417
|
+
"terminologies": {
|
|
2418
|
+
"description": "Represents terminologies with additional properties files",
|
|
2419
|
+
"type": "object",
|
|
2420
|
+
"patternProperties": {
|
|
2421
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2422
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2423
|
+
}
|
|
2424
|
+
}
|
|
2425
|
+
}
|
|
2426
|
+
}
|
|
2427
|
+
},
|
|
2428
|
+
{
|
|
2429
|
+
"required": [
|
|
2430
|
+
"bundleName"
|
|
2431
|
+
],
|
|
2432
|
+
"additionalProperties": false,
|
|
2433
|
+
"properties": {
|
|
2434
|
+
"bundleName": {
|
|
2435
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2436
|
+
"type": "string"
|
|
2437
|
+
},
|
|
2438
|
+
"supportedLocales": {
|
|
2439
|
+
"description": "Represents the list of supported locales",
|
|
2440
|
+
"type": "array"
|
|
2441
|
+
},
|
|
2442
|
+
"fallbackLocale": {
|
|
2443
|
+
"description": "Represents the fallback locale",
|
|
2444
|
+
"type": "string"
|
|
2445
|
+
},
|
|
2446
|
+
"terminologies": {
|
|
2447
|
+
"description": "Represents terminologies with additional properties files",
|
|
2448
|
+
"type": "object",
|
|
2449
|
+
"patternProperties": {
|
|
2450
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2451
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
]
|
|
2458
|
+
},
|
|
2459
|
+
"terminologySetting": {
|
|
2460
|
+
"oneOf": [
|
|
2461
|
+
{
|
|
2462
|
+
"additionalProperties": false,
|
|
2463
|
+
"required": [
|
|
2464
|
+
"bundleName"
|
|
2465
|
+
],
|
|
2466
|
+
"properties": {
|
|
2467
|
+
"bundleName": {
|
|
2468
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2469
|
+
"type": "string"
|
|
2470
|
+
},
|
|
2471
|
+
"supportedLocales": {
|
|
2472
|
+
"description": "Represents the list of supported locales",
|
|
2473
|
+
"type": "array"
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"additionalProperties": false,
|
|
2479
|
+
"required": [
|
|
2480
|
+
"bundleUrl"
|
|
2481
|
+
],
|
|
2482
|
+
"properties": {
|
|
2483
|
+
"bundleUrl": {
|
|
2484
|
+
"description": "Represents the URL for the resource bundle",
|
|
2485
|
+
"type": "string"
|
|
2486
|
+
},
|
|
2487
|
+
"bundleUrlRelativeTo": {
|
|
2488
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2489
|
+
"type": "string",
|
|
2490
|
+
"default": "component",
|
|
2491
|
+
"enum": [
|
|
2492
|
+
"manifest",
|
|
2493
|
+
"component"
|
|
2494
|
+
]
|
|
2495
|
+
},
|
|
2496
|
+
"supportedLocales": {
|
|
2497
|
+
"description": "Represents the list of supported locales",
|
|
2498
|
+
"type": "array"
|
|
2499
|
+
}
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2502
|
+
]
|
|
2503
|
+
},
|
|
2155
2504
|
"ui5setting": {
|
|
2156
2505
|
"type": "object",
|
|
2157
2506
|
"additionalProperties": true,
|
|
@@ -2167,46 +2516,251 @@
|
|
|
2167
2516
|
"TwoWay"
|
|
2168
2517
|
]
|
|
2169
2518
|
},
|
|
2519
|
+
"bundleName": {
|
|
2520
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2521
|
+
"type": "string"
|
|
2522
|
+
},
|
|
2523
|
+
"bundleUrl": {
|
|
2524
|
+
"description": "Represents the URL for the resource bundle",
|
|
2525
|
+
"type": "string"
|
|
2526
|
+
},
|
|
2527
|
+
"bundleUrlRelativeTo": {
|
|
2528
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2529
|
+
"type": "string",
|
|
2530
|
+
"default": "component",
|
|
2531
|
+
"enum": [
|
|
2532
|
+
"manifest",
|
|
2533
|
+
"component"
|
|
2534
|
+
]
|
|
2535
|
+
},
|
|
2536
|
+
"fallbackLocale": {
|
|
2537
|
+
"description": "Represents the fallback locale",
|
|
2538
|
+
"type": "string"
|
|
2539
|
+
},
|
|
2540
|
+
"supportedLocales": {
|
|
2541
|
+
"description": "Represents the list of supported locales",
|
|
2542
|
+
"type": "array"
|
|
2543
|
+
},
|
|
2544
|
+
"terminologies": {
|
|
2545
|
+
"description": "Represents terminologies with additional properties files",
|
|
2546
|
+
"type": "object",
|
|
2547
|
+
"additionalProperties": true,
|
|
2548
|
+
"patternProperties": {
|
|
2549
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2550
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2551
|
+
}
|
|
2552
|
+
}
|
|
2553
|
+
},
|
|
2170
2554
|
"enhanceWith": {
|
|
2171
2555
|
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
2172
2556
|
"type": "array",
|
|
2173
2557
|
"items": {
|
|
2174
2558
|
"type": "object",
|
|
2175
|
-
"
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2559
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
2560
|
+
}
|
|
2561
|
+
}
|
|
2562
|
+
}
|
|
2563
|
+
},
|
|
2564
|
+
"rootView_def_flexEnabled": {
|
|
2565
|
+
"description": "Represents the root view definition when flex is enabled (requires a view id)",
|
|
2566
|
+
"type": "object",
|
|
2567
|
+
"required": [
|
|
2568
|
+
"id",
|
|
2569
|
+
"viewName"
|
|
2570
|
+
],
|
|
2571
|
+
"additionalProperties": true,
|
|
2572
|
+
"properties": {
|
|
2573
|
+
"viewName": {
|
|
2574
|
+
"description": "Represents the name of the view",
|
|
2575
|
+
"type": "string"
|
|
2576
|
+
},
|
|
2577
|
+
"type": {
|
|
2578
|
+
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
2579
|
+
"type": "string",
|
|
2580
|
+
"enum": [
|
|
2581
|
+
"XML",
|
|
2582
|
+
"JSON",
|
|
2583
|
+
"JS",
|
|
2584
|
+
"HTML",
|
|
2585
|
+
"Template"
|
|
2586
|
+
]
|
|
2587
|
+
},
|
|
2588
|
+
"id": {
|
|
2589
|
+
"description": "Represents the id of the view",
|
|
2590
|
+
"type": "string"
|
|
2591
|
+
},
|
|
2592
|
+
"async": {
|
|
2593
|
+
"description": "Configure the targets for asynchronous loading",
|
|
2594
|
+
"type": "boolean",
|
|
2595
|
+
"default": false
|
|
2596
|
+
}
|
|
2597
|
+
}
|
|
2598
|
+
},
|
|
2599
|
+
"routing_flexEnabled": {
|
|
2600
|
+
"description": "Represents the configuration of routing",
|
|
2601
|
+
"type": "object",
|
|
2602
|
+
"properties": {
|
|
2603
|
+
"config": {
|
|
2604
|
+
"description": "Represents the default properties defined for route and target",
|
|
2605
|
+
"allOf": [
|
|
2606
|
+
{
|
|
2607
|
+
"type": "object",
|
|
2608
|
+
"properties": {
|
|
2609
|
+
"routerClass": {
|
|
2610
|
+
"description": "Represents the router class",
|
|
2611
|
+
"type": "string"
|
|
2612
|
+
},
|
|
2613
|
+
"async": {
|
|
2614
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
2615
|
+
"type": "boolean",
|
|
2616
|
+
"default": false
|
|
2617
|
+
},
|
|
2618
|
+
"bypassed": {
|
|
2619
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
2620
|
+
"type": "object",
|
|
2621
|
+
"additionalProperties": false,
|
|
2622
|
+
"required": [
|
|
2623
|
+
"target"
|
|
2624
|
+
],
|
|
2625
|
+
"properties": {
|
|
2626
|
+
"target": {
|
|
2627
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
2628
|
+
"$ref": "#/definitions/routeTarget"
|
|
2629
|
+
}
|
|
2194
2630
|
}
|
|
2631
|
+
},
|
|
2632
|
+
"viewPath": {
|
|
2633
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2634
|
+
"type": "string"
|
|
2195
2635
|
}
|
|
2196
|
-
}
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
{
|
|
2639
|
+
"$ref": "#/definitions/target"
|
|
2640
|
+
}
|
|
2641
|
+
]
|
|
2642
|
+
},
|
|
2643
|
+
"routes": {
|
|
2644
|
+
"oneOf": [
|
|
2645
|
+
{
|
|
2646
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
2647
|
+
"type": "array",
|
|
2648
|
+
"items": {
|
|
2649
|
+
"$ref": "#/definitions/route"
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2652
|
+
{
|
|
2653
|
+
"description": "Represents the definition of routes by providing an object with the route's name as the key and other route options in an object as the value",
|
|
2654
|
+
"type": "object",
|
|
2655
|
+
"patternProperties": {
|
|
2656
|
+
"[\\s\\S]*": {
|
|
2657
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
2207
2658
|
}
|
|
2208
2659
|
}
|
|
2209
|
-
|
|
2660
|
+
}
|
|
2661
|
+
]
|
|
2662
|
+
},
|
|
2663
|
+
"targets": {
|
|
2664
|
+
"description": "Represents the definition of targets",
|
|
2665
|
+
"type": "object",
|
|
2666
|
+
"patternProperties": {
|
|
2667
|
+
"[\\s\\S]*": {
|
|
2668
|
+
"oneOf": [
|
|
2669
|
+
{
|
|
2670
|
+
"allOf": [
|
|
2671
|
+
{
|
|
2672
|
+
"$ref": "#/definitions/target"
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"type": "object",
|
|
2676
|
+
"required": [
|
|
2677
|
+
"viewName",
|
|
2678
|
+
"viewId"
|
|
2679
|
+
],
|
|
2680
|
+
"properties": {
|
|
2681
|
+
"viewName": {
|
|
2682
|
+
"description": "Represents the name of a view that will be created",
|
|
2683
|
+
"type": "string"
|
|
2684
|
+
},
|
|
2685
|
+
"viewId": {
|
|
2686
|
+
"description": "Represents the id of the created view",
|
|
2687
|
+
"type": "string"
|
|
2688
|
+
},
|
|
2689
|
+
"viewPath": {
|
|
2690
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2691
|
+
"type": "string"
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2695
|
+
]
|
|
2696
|
+
},
|
|
2697
|
+
{
|
|
2698
|
+
"allOf": [
|
|
2699
|
+
{
|
|
2700
|
+
"$ref": "#/definitions/target"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"oneOf": [
|
|
2704
|
+
{
|
|
2705
|
+
"type": "object",
|
|
2706
|
+
"required": [
|
|
2707
|
+
"name",
|
|
2708
|
+
"id"
|
|
2709
|
+
],
|
|
2710
|
+
"properties": {
|
|
2711
|
+
"name": {
|
|
2712
|
+
"description": "Represents the name of a view or component that will be created",
|
|
2713
|
+
"type": "string"
|
|
2714
|
+
},
|
|
2715
|
+
"id": {
|
|
2716
|
+
"description": "Represents the id of the created view or component",
|
|
2717
|
+
"type": "string"
|
|
2718
|
+
},
|
|
2719
|
+
"path": {
|
|
2720
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
2721
|
+
"type": "string"
|
|
2722
|
+
},
|
|
2723
|
+
"type": {
|
|
2724
|
+
"description": "Represents the type of the type View or Component",
|
|
2725
|
+
"type": "string",
|
|
2726
|
+
"enum": [
|
|
2727
|
+
"View",
|
|
2728
|
+
"Component"
|
|
2729
|
+
]
|
|
2730
|
+
}
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"type": "object",
|
|
2735
|
+
"required": [
|
|
2736
|
+
"usage",
|
|
2737
|
+
"id",
|
|
2738
|
+
"type"
|
|
2739
|
+
],
|
|
2740
|
+
"properties": {
|
|
2741
|
+
"usage": {
|
|
2742
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
2743
|
+
"type": "string"
|
|
2744
|
+
},
|
|
2745
|
+
"id": {
|
|
2746
|
+
"description": "Represents the id of the created view or component",
|
|
2747
|
+
"type": "string"
|
|
2748
|
+
},
|
|
2749
|
+
"type": {
|
|
2750
|
+
"description": "Represents the type of the type Component",
|
|
2751
|
+
"type": "string",
|
|
2752
|
+
"enum": [
|
|
2753
|
+
"Component"
|
|
2754
|
+
]
|
|
2755
|
+
}
|
|
2756
|
+
}
|
|
2757
|
+
}
|
|
2758
|
+
]
|
|
2759
|
+
}
|
|
2760
|
+
]
|
|
2761
|
+
}
|
|
2762
|
+
]
|
|
2763
|
+
}
|
|
2210
2764
|
}
|
|
2211
2765
|
}
|
|
2212
2766
|
}
|
|
@@ -2266,6 +2820,11 @@
|
|
|
2266
2820
|
"type": "boolean",
|
|
2267
2821
|
"default": false
|
|
2268
2822
|
},
|
|
2823
|
+
"propagateTitle": {
|
|
2824
|
+
"description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
|
|
2825
|
+
"type": "boolean",
|
|
2826
|
+
"default": false
|
|
2827
|
+
},
|
|
2269
2828
|
"bypassed": {
|
|
2270
2829
|
"description": "Represents information about targets to display when no route is matched",
|
|
2271
2830
|
"type": "object",
|
|
@@ -2619,9 +3178,24 @@
|
|
|
2619
3178
|
}
|
|
2620
3179
|
}
|
|
2621
3180
|
},
|
|
3181
|
+
"objectType": {
|
|
3182
|
+
"type": "string",
|
|
3183
|
+
"enum": [
|
|
3184
|
+
"query",
|
|
3185
|
+
"cdsprojectionview",
|
|
3186
|
+
"view",
|
|
3187
|
+
"inamodel"
|
|
3188
|
+
]
|
|
3189
|
+
},
|
|
3190
|
+
"objectName": {
|
|
3191
|
+
"type": "string",
|
|
3192
|
+
"pattern": "^(\\\\[0-9a-zA-Z_]+\\\\)?[a-zA-Z][a-zA-Z0-9_]*$",
|
|
3193
|
+
"minLength": 3,
|
|
3194
|
+
"maxLength": 50
|
|
3195
|
+
},
|
|
2622
3196
|
"setting": {
|
|
2623
3197
|
"type": "object",
|
|
2624
|
-
"additionalProperties":
|
|
3198
|
+
"additionalProperties": true,
|
|
2625
3199
|
"properties": {
|
|
2626
3200
|
"odataVersion": {
|
|
2627
3201
|
"description": "Represents version of OData: 2.0 is default",
|
|
@@ -2642,6 +3216,33 @@
|
|
|
2642
3216
|
"type": "string"
|
|
2643
3217
|
}
|
|
2644
3218
|
}
|
|
3219
|
+
},
|
|
3220
|
+
"objects": {
|
|
3221
|
+
"type": "object",
|
|
3222
|
+
"description": "Dictionary of (catalog) objects offered by the datasource",
|
|
3223
|
+
"additionalProperties": {
|
|
3224
|
+
"type": "object",
|
|
3225
|
+
"description": "A (catalog) object of an InA DataSource",
|
|
3226
|
+
"properties": {
|
|
3227
|
+
"objectName": {
|
|
3228
|
+
"$ref": "#/definitions/objectName"
|
|
3229
|
+
},
|
|
3230
|
+
"objectType": {
|
|
3231
|
+
"$ref": "#/definitions/objectType"
|
|
3232
|
+
},
|
|
3233
|
+
"packageName": {
|
|
3234
|
+
"type": "string"
|
|
3235
|
+
},
|
|
3236
|
+
"schemaName": {
|
|
3237
|
+
"type": "string"
|
|
3238
|
+
}
|
|
3239
|
+
},
|
|
3240
|
+
"additionalProperties": false,
|
|
3241
|
+
"required": [
|
|
3242
|
+
"objectName",
|
|
3243
|
+
"objectType"
|
|
3244
|
+
]
|
|
3245
|
+
}
|
|
2645
3246
|
}
|
|
2646
3247
|
},
|
|
2647
3248
|
"openSource": {
|
|
@@ -2673,18 +3274,21 @@
|
|
|
2673
3274
|
],
|
|
2674
3275
|
"properties": {
|
|
2675
3276
|
"uri": {
|
|
2676
|
-
"description": "Represents uri of the data source",
|
|
3277
|
+
"description": "Represents the uri of the data source, should always be given in lower case",
|
|
2677
3278
|
"type": "string"
|
|
2678
3279
|
},
|
|
2679
3280
|
"type": {
|
|
2680
|
-
"description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON",
|
|
3281
|
+
"description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON, FHIR, WebSocket, http",
|
|
2681
3282
|
"type": "string",
|
|
2682
3283
|
"enum": [
|
|
2683
3284
|
"OData",
|
|
2684
3285
|
"ODataAnnotation",
|
|
2685
3286
|
"INA",
|
|
2686
3287
|
"XML",
|
|
2687
|
-
"JSON"
|
|
3288
|
+
"JSON",
|
|
3289
|
+
"FHIR",
|
|
3290
|
+
"WebSocket",
|
|
3291
|
+
"http"
|
|
2688
3292
|
],
|
|
2689
3293
|
"default": "OData"
|
|
2690
3294
|
},
|
|
@@ -2694,9 +3298,78 @@
|
|
|
2694
3298
|
}
|
|
2695
3299
|
}
|
|
2696
3300
|
},
|
|
2697
|
-
"
|
|
2698
|
-
"
|
|
2699
|
-
|
|
3301
|
+
"enhanceWithSetting": {
|
|
3302
|
+
"oneOf": [
|
|
3303
|
+
{
|
|
3304
|
+
"additionalProperties": false,
|
|
3305
|
+
"required": [
|
|
3306
|
+
"bundleUrl"
|
|
3307
|
+
],
|
|
3308
|
+
"properties": {
|
|
3309
|
+
"bundleUrl": {
|
|
3310
|
+
"description": "Represents property url for model enhancement",
|
|
3311
|
+
"type": "string"
|
|
3312
|
+
},
|
|
3313
|
+
"bundleUrlRelativeTo": {
|
|
3314
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
3315
|
+
"type": "string",
|
|
3316
|
+
"default": "component",
|
|
3317
|
+
"enum": [
|
|
3318
|
+
"manifest",
|
|
3319
|
+
"component"
|
|
3320
|
+
]
|
|
3321
|
+
},
|
|
3322
|
+
"fallbackLocale": {
|
|
3323
|
+
"description": "Represents the fallback locale",
|
|
3324
|
+
"type": "string"
|
|
3325
|
+
},
|
|
3326
|
+
"supportedLocales": {
|
|
3327
|
+
"description": "Represents the list of supported locales",
|
|
3328
|
+
"type": "array"
|
|
3329
|
+
},
|
|
3330
|
+
"terminologies": {
|
|
3331
|
+
"description": "Represents terminologies with additional properties files",
|
|
3332
|
+
"type": "object",
|
|
3333
|
+
"additionalProperties": false,
|
|
3334
|
+
"patternProperties": {
|
|
3335
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
3336
|
+
"$ref": "#/definitions/terminologySetting"
|
|
3337
|
+
}
|
|
3338
|
+
}
|
|
3339
|
+
}
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"required": [
|
|
3344
|
+
"bundleName"
|
|
3345
|
+
],
|
|
3346
|
+
"additionalProperties": false,
|
|
3347
|
+
"properties": {
|
|
3348
|
+
"bundleName": {
|
|
3349
|
+
"description": "Represents the alternative for bundleUrl",
|
|
3350
|
+
"type": "string"
|
|
3351
|
+
},
|
|
3352
|
+
"fallbackLocale": {
|
|
3353
|
+
"description": "Represents the fallback locale",
|
|
3354
|
+
"type": "string"
|
|
3355
|
+
},
|
|
3356
|
+
"supportedLocales": {
|
|
3357
|
+
"description": "Represents the list of supported locales",
|
|
3358
|
+
"type": "array"
|
|
3359
|
+
},
|
|
3360
|
+
"terminologies": {
|
|
3361
|
+
"description": "Represents terminologies with additional properties files",
|
|
3362
|
+
"type": "object",
|
|
3363
|
+
"additionalProperties": false,
|
|
3364
|
+
"patternProperties": {
|
|
3365
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
3366
|
+
"$ref": "#/definitions/terminologySetting"
|
|
3367
|
+
}
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3370
|
+
}
|
|
3371
|
+
}
|
|
3372
|
+
]
|
|
2700
3373
|
},
|
|
2701
3374
|
"id_def": {
|
|
2702
3375
|
"type": "string",
|