@ui5/manifest 1.48.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 +111 -0
- package/LICENSE.txt +203 -0
- package/LICENSES/Apache-2.0.txt +208 -0
- package/README.md +15 -0
- package/mapping.json +78 -0
- package/package.json +19 -0
- package/schema.json +8058 -0
- package/schema_cil.json +3478 -0
package/schema_cil.json
ADDED
|
@@ -0,0 +1,3478 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "SAP JSON schema for Web Application Manifest File (CIL)",
|
|
3
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"required": [
|
|
6
|
+
"_version",
|
|
7
|
+
"sap.app",
|
|
8
|
+
"sap.ui"
|
|
9
|
+
],
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"_version": {
|
|
13
|
+
"description": "Represents Application Descriptor format version. It is managed by schema owner",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"enum": [
|
|
16
|
+
"1.1.0",
|
|
17
|
+
"1.2.0",
|
|
18
|
+
"1.3.0",
|
|
19
|
+
"1.4.0",
|
|
20
|
+
"1.5.0",
|
|
21
|
+
"1.6.0",
|
|
22
|
+
"1.7.0",
|
|
23
|
+
"1.8.0",
|
|
24
|
+
"1.9.0",
|
|
25
|
+
"1.10.0",
|
|
26
|
+
"1.11.0",
|
|
27
|
+
"1.12.0",
|
|
28
|
+
"1.13.0",
|
|
29
|
+
"1.14.0",
|
|
30
|
+
"1.15.0",
|
|
31
|
+
"1.16.0",
|
|
32
|
+
"1.17.0",
|
|
33
|
+
"1.18.0",
|
|
34
|
+
"1.19.0",
|
|
35
|
+
"1.20.0",
|
|
36
|
+
"1.21.0",
|
|
37
|
+
"1.22.0",
|
|
38
|
+
"1.23.0",
|
|
39
|
+
"1.24.0",
|
|
40
|
+
"1.25.0"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"start_url": {
|
|
44
|
+
"description": "Represents the URL that the developer would prefer the user agent load when the user launches the web application",
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"sap.app": {
|
|
48
|
+
"title": "JSON schema for SAP.APP Namespace (CIL)",
|
|
49
|
+
"description": "Represents general application attributes",
|
|
50
|
+
"type": "object",
|
|
51
|
+
"additionalProperties": false,
|
|
52
|
+
"required": [
|
|
53
|
+
"id",
|
|
54
|
+
"type",
|
|
55
|
+
"title",
|
|
56
|
+
"embeddedBy"
|
|
57
|
+
],
|
|
58
|
+
"properties": {
|
|
59
|
+
"_version": {
|
|
60
|
+
"description": "Application attributes format version. It is managed by namespace owner",
|
|
61
|
+
"type": "string",
|
|
62
|
+
"enum": [
|
|
63
|
+
"1.1.0",
|
|
64
|
+
"1.2.0",
|
|
65
|
+
"1.3.0",
|
|
66
|
+
"1.4.0",
|
|
67
|
+
"1.5.0",
|
|
68
|
+
"1.6.0",
|
|
69
|
+
"1.7.0",
|
|
70
|
+
"1.8.0",
|
|
71
|
+
"1.9.0",
|
|
72
|
+
"1.10.0"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"sourceTemplate": {
|
|
76
|
+
"description": "Represents the template from which the app was generated",
|
|
77
|
+
"type": "object",
|
|
78
|
+
"required": [
|
|
79
|
+
"id",
|
|
80
|
+
"version"
|
|
81
|
+
],
|
|
82
|
+
"properties": {
|
|
83
|
+
"id": {
|
|
84
|
+
"description": "Represents id of the template from which the app was generated ",
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"version": {
|
|
88
|
+
"description": "Represents the version of the template from which the app was generated",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"toolsId": {
|
|
92
|
+
"description": "Represents an Id generated by SAP Fiori tools",
|
|
93
|
+
"type": "string"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"id": {
|
|
98
|
+
"description": "Represents mandatory unique app identifier which must correspond to component 'id/namespace'",
|
|
99
|
+
"$ref": "#/definitions/id_def"
|
|
100
|
+
},
|
|
101
|
+
"type": {
|
|
102
|
+
"description": "Represents type of an application and can be application or component or library",
|
|
103
|
+
"type": "string",
|
|
104
|
+
"enum": [
|
|
105
|
+
"application",
|
|
106
|
+
"component",
|
|
107
|
+
"library"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"i18n": {
|
|
111
|
+
"default": "i18n/i18n.properties",
|
|
112
|
+
"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)",
|
|
113
|
+
"oneOf": [
|
|
114
|
+
{
|
|
115
|
+
"default": "i18n/i18n.properties",
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"type": "object",
|
|
120
|
+
"required": [
|
|
121
|
+
"bundleName"
|
|
122
|
+
],
|
|
123
|
+
"additionalProperties": false,
|
|
124
|
+
"properties": {
|
|
125
|
+
"bundleName": {
|
|
126
|
+
"description": "Represents the alternative for bundleUrl",
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
"fallbackLocale": {
|
|
130
|
+
"description": "Represents the fallback locale",
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"supportedLocales": {
|
|
134
|
+
"description": "Represents the list of supported locales",
|
|
135
|
+
"type": "array"
|
|
136
|
+
},
|
|
137
|
+
"terminologies": {
|
|
138
|
+
"description": "Represents terminologies with additional properties files",
|
|
139
|
+
"type": "object",
|
|
140
|
+
"additionalProperties": false,
|
|
141
|
+
"patternProperties": {
|
|
142
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
143
|
+
"$ref": "#/definitions/terminologySetting"
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"enhanceWith": {
|
|
148
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
149
|
+
"type": "array",
|
|
150
|
+
"items": {
|
|
151
|
+
"type": "object",
|
|
152
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"type": "object",
|
|
159
|
+
"additionalProperties": false,
|
|
160
|
+
"required": [
|
|
161
|
+
"bundleUrl"
|
|
162
|
+
],
|
|
163
|
+
"properties": {
|
|
164
|
+
"bundleUrl": {
|
|
165
|
+
"description": "Represents the URL for the resource bundle",
|
|
166
|
+
"type": "string"
|
|
167
|
+
},
|
|
168
|
+
"bundleUrlRelativeTo": {
|
|
169
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
170
|
+
"type": "string",
|
|
171
|
+
"default": "component",
|
|
172
|
+
"enum": [
|
|
173
|
+
"manifest",
|
|
174
|
+
"component"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"supportedLocales": {
|
|
178
|
+
"description": "Represents the list of supported locales",
|
|
179
|
+
"type": "array"
|
|
180
|
+
},
|
|
181
|
+
"fallbackLocale": {
|
|
182
|
+
"description": "Represents the fallback locale",
|
|
183
|
+
"type": "string"
|
|
184
|
+
},
|
|
185
|
+
"terminologies": {
|
|
186
|
+
"description": "Represents terminologies with additional properties files",
|
|
187
|
+
"type": "object",
|
|
188
|
+
"additionalProperties": false,
|
|
189
|
+
"patternProperties": {
|
|
190
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
191
|
+
"$ref": "#/definitions/terminologySetting"
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"enhanceWith": {
|
|
196
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
197
|
+
"type": "array",
|
|
198
|
+
"items": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"embeddedBy": {
|
|
208
|
+
"description": "Represents relative path back to the manifest.json of an embedding component or library (mandatory for nested 'manifest.json')",
|
|
209
|
+
"type": "string"
|
|
210
|
+
},
|
|
211
|
+
"title": {
|
|
212
|
+
"description": "Represents a title (mandatory); to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
213
|
+
"type": "string"
|
|
214
|
+
},
|
|
215
|
+
"subTitle": {
|
|
216
|
+
"description": "Represents a subtitle to the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
217
|
+
"type": "string"
|
|
218
|
+
},
|
|
219
|
+
"shortTitle": {
|
|
220
|
+
"description": "Represents a shorter version of the title; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
221
|
+
"type": "string"
|
|
222
|
+
},
|
|
223
|
+
"description": {
|
|
224
|
+
"description": "Represents a description; to make this property language dependent (recommended), use a key in double curly brackets '{{key}}'",
|
|
225
|
+
"type": "string"
|
|
226
|
+
},
|
|
227
|
+
"ach": {
|
|
228
|
+
"description": "Represents application component hierarchy",
|
|
229
|
+
"type": "string",
|
|
230
|
+
"pattern": "^([a-zA-Z0-9]{2,3})(-[a-zA-Z0-9]{1,6})*$"
|
|
231
|
+
},
|
|
232
|
+
"dataSources": {
|
|
233
|
+
"description": "Represents used data sources with a unique key/alias",
|
|
234
|
+
"type": "object",
|
|
235
|
+
"additionalProperties": false,
|
|
236
|
+
"patternProperties": {
|
|
237
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
238
|
+
"$ref": "#/definitions/dataSource"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"cdsViews": {
|
|
243
|
+
"description": "Represents array of directly used CDS views, which only to be added if directly used via INA protocol and not if used via OData service",
|
|
244
|
+
"type": "array",
|
|
245
|
+
"items": {
|
|
246
|
+
"type": "string"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"resources": {
|
|
250
|
+
"description": "Represents reference to a file (naming convention is resources.json) which contains list with all resources which the app needs",
|
|
251
|
+
"type": "string",
|
|
252
|
+
"enum": [
|
|
253
|
+
"resources.json"
|
|
254
|
+
]
|
|
255
|
+
},
|
|
256
|
+
"openSourceComponents": {
|
|
257
|
+
"description": "Represents a collection of directly used open source libs (not when used via UI5 capsulation)",
|
|
258
|
+
"type": "array",
|
|
259
|
+
"items": {
|
|
260
|
+
"$ref": "#/definitions/openSource"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"offline": {
|
|
264
|
+
"description": "Represents indicator whether the app is running offline. Possible values are true or false (default)",
|
|
265
|
+
"type": "boolean",
|
|
266
|
+
"default": false
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"definitions": {
|
|
270
|
+
"version": {
|
|
271
|
+
"type": "string"
|
|
272
|
+
},
|
|
273
|
+
"i18n_key": {
|
|
274
|
+
"type": "string",
|
|
275
|
+
"pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
|
|
276
|
+
},
|
|
277
|
+
"objectName": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"pattern": "^(\\\\[0-9a-zA-Z_]+\\\\)?[a-zA-Z][a-zA-Z0-9_]*$",
|
|
280
|
+
"minLength": 3,
|
|
281
|
+
"maxLength": 50
|
|
282
|
+
},
|
|
283
|
+
"objectType": {
|
|
284
|
+
"type": "string",
|
|
285
|
+
"enum": [
|
|
286
|
+
"query",
|
|
287
|
+
"cdsprojectionview",
|
|
288
|
+
"view",
|
|
289
|
+
"inamodel"
|
|
290
|
+
]
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"sap.ui": {
|
|
295
|
+
"title": "JSON schema for SAP.UI Namespace (CIL)",
|
|
296
|
+
"description": "Represents general ui attributes",
|
|
297
|
+
"type": "object",
|
|
298
|
+
"required": [
|
|
299
|
+
"technology",
|
|
300
|
+
"deviceTypes"
|
|
301
|
+
],
|
|
302
|
+
"properties": {
|
|
303
|
+
"_version": {
|
|
304
|
+
"description": "Represents UI attributes format version. It is managed by namespace owner",
|
|
305
|
+
"type": "string",
|
|
306
|
+
"enum": [
|
|
307
|
+
"1.1.0",
|
|
308
|
+
"1.2.0",
|
|
309
|
+
"1.3.0",
|
|
310
|
+
"1.4.0",
|
|
311
|
+
"1.5.0"
|
|
312
|
+
]
|
|
313
|
+
},
|
|
314
|
+
"technology": {
|
|
315
|
+
"description": "Represents UI technology. The possible values are UI5 (default), WDA, NWBC, GUI, URL and WCF",
|
|
316
|
+
"type": "string",
|
|
317
|
+
"enum": [
|
|
318
|
+
"UI5",
|
|
319
|
+
"WDA",
|
|
320
|
+
"NWBC",
|
|
321
|
+
"GUI",
|
|
322
|
+
"URL",
|
|
323
|
+
"WCF"
|
|
324
|
+
],
|
|
325
|
+
"default": "UI5"
|
|
326
|
+
},
|
|
327
|
+
"deviceTypes": {
|
|
328
|
+
"description": "Represents device types on which application is running. Supported device types are desktop, tablet and phone",
|
|
329
|
+
"allOf": [
|
|
330
|
+
{
|
|
331
|
+
"$ref": "#/definitions/deviceType"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"required": [
|
|
335
|
+
"desktop",
|
|
336
|
+
"tablet",
|
|
337
|
+
"phone"
|
|
338
|
+
]
|
|
339
|
+
}
|
|
340
|
+
]
|
|
341
|
+
},
|
|
342
|
+
"supportedThemes": {
|
|
343
|
+
"description": "The property is Deprecated. Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
344
|
+
"type": "array",
|
|
345
|
+
"items": {
|
|
346
|
+
"type": "string"
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
"sap.ui5": {
|
|
352
|
+
"title": "JSON schema for SAP.UI5 Namespace (CIL)",
|
|
353
|
+
"description": "Represents sapui5 attributes",
|
|
354
|
+
"allOf": [
|
|
355
|
+
{
|
|
356
|
+
"type": "object",
|
|
357
|
+
"required": [
|
|
358
|
+
"dependencies",
|
|
359
|
+
"contentDensities"
|
|
360
|
+
],
|
|
361
|
+
"properties": {
|
|
362
|
+
"_version": {
|
|
363
|
+
"description": " Represents SAPUI5 attributes format version. It is managed by namespace owner",
|
|
364
|
+
"type": "string",
|
|
365
|
+
"enum": [
|
|
366
|
+
"1.1.0",
|
|
367
|
+
"1.2.0",
|
|
368
|
+
"1.3.0",
|
|
369
|
+
"1.4.0",
|
|
370
|
+
"1.5.0",
|
|
371
|
+
"1.6.0",
|
|
372
|
+
"1.7.0",
|
|
373
|
+
"1.8.0",
|
|
374
|
+
"1.9.0",
|
|
375
|
+
"1.10.0",
|
|
376
|
+
"1.11.0",
|
|
377
|
+
"1.12.0"
|
|
378
|
+
]
|
|
379
|
+
},
|
|
380
|
+
"resources": {
|
|
381
|
+
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
382
|
+
"$ref": "#/definitions/resource"
|
|
383
|
+
},
|
|
384
|
+
"componentUsages": {
|
|
385
|
+
"description": "Represents the explicit usage declaration for UI5 reuse components",
|
|
386
|
+
"type": "object",
|
|
387
|
+
"additionalProperties": false,
|
|
388
|
+
"patternProperties": {
|
|
389
|
+
"^[a-zA-Z0-9_\\.]*$": {
|
|
390
|
+
"$ref": "#/definitions/componentUsages"
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"dependencies": {
|
|
395
|
+
"description": "Represents external dependences such as libraries or components, that will be loaded by UI5 Core in the initialization phase of your Component and can be used after it",
|
|
396
|
+
"type": "object",
|
|
397
|
+
"additionalProperties": false,
|
|
398
|
+
"properties": {
|
|
399
|
+
"libs": {
|
|
400
|
+
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
401
|
+
"type": "object",
|
|
402
|
+
"additionalProperties": false,
|
|
403
|
+
"patternProperties": {
|
|
404
|
+
"^([a-z][a-z0-9]{0,39})(\\.[a-z][a-z0-9]{0,39})*$": {
|
|
405
|
+
"$ref": "#/definitions/lib"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"components": {
|
|
410
|
+
"description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
|
|
411
|
+
"type": "object",
|
|
412
|
+
"additionalProperties": false,
|
|
413
|
+
"patternProperties": {
|
|
414
|
+
"^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$": {
|
|
415
|
+
"$ref": "#/definitions/component"
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"models": {
|
|
422
|
+
"description": "Represents models which should be created/destroyed with the life-cycle of the component",
|
|
423
|
+
"type": "object",
|
|
424
|
+
"additionalProperties": false,
|
|
425
|
+
"patternProperties": {
|
|
426
|
+
"^[a-zA-Z0-9_\\.\\-\\|@]*$": {
|
|
427
|
+
"$ref": "#/definitions/model"
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"resourceRoots": {
|
|
432
|
+
"description": "Represents relative path to the resource. Only relative path allowed, no '../' ",
|
|
433
|
+
"type": "object",
|
|
434
|
+
"additionalProperties": false,
|
|
435
|
+
"patternProperties": {
|
|
436
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
437
|
+
"$ref": "#/definitions/resourceRoot"
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"handleValidation": {
|
|
442
|
+
"description": "Represents the usage of validation handling by MessageManager for this component (enable/disable)",
|
|
443
|
+
"type": "boolean",
|
|
444
|
+
"default": false
|
|
445
|
+
},
|
|
446
|
+
"config": {
|
|
447
|
+
"description": "Represents the static configuration for components",
|
|
448
|
+
"type": "object",
|
|
449
|
+
"additionalProperties": false,
|
|
450
|
+
"patternProperties": {
|
|
451
|
+
"[\\s\\S]*": {
|
|
452
|
+
"$ref": "#/definitions/config"
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"extends": {
|
|
457
|
+
"description": "Represents the extension of an additional component",
|
|
458
|
+
"type": "object",
|
|
459
|
+
"additionalProperties": false,
|
|
460
|
+
"properties": {
|
|
461
|
+
"component": {
|
|
462
|
+
"description": "Represents the component name",
|
|
463
|
+
"$ref": "#/definitions/id_def"
|
|
464
|
+
},
|
|
465
|
+
"minVersion": {
|
|
466
|
+
"description": "Represents minimal version of the component",
|
|
467
|
+
"$ref": "#/definitions/version"
|
|
468
|
+
},
|
|
469
|
+
"extensions": {
|
|
470
|
+
"description": "Represents extensions of the component",
|
|
471
|
+
"type": "object"
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"contentDensities": {
|
|
476
|
+
"description": "Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'",
|
|
477
|
+
"type": "object",
|
|
478
|
+
"additionalProperties": false,
|
|
479
|
+
"required": [
|
|
480
|
+
"compact",
|
|
481
|
+
"cozy"
|
|
482
|
+
],
|
|
483
|
+
"properties": {
|
|
484
|
+
"compact": {
|
|
485
|
+
"description": "Represents indicator whether compact mode is supported",
|
|
486
|
+
"type": "boolean"
|
|
487
|
+
},
|
|
488
|
+
"cozy": {
|
|
489
|
+
"description": "Represents indicator whether cozy mode is supported",
|
|
490
|
+
"type": "boolean"
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"componentName": {
|
|
495
|
+
"description": "Represents a name of the UI5 component",
|
|
496
|
+
"type": "string",
|
|
497
|
+
"pattern": "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
498
|
+
},
|
|
499
|
+
"autoPrefixId": {
|
|
500
|
+
"description": "Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)",
|
|
501
|
+
"type": "boolean"
|
|
502
|
+
},
|
|
503
|
+
"services": {
|
|
504
|
+
"description": "Represents a list of the services ",
|
|
505
|
+
"type": "object",
|
|
506
|
+
"additionalProperties": false,
|
|
507
|
+
"patternProperties": {
|
|
508
|
+
"[\\s\\S]*": {
|
|
509
|
+
"$ref": "#/definitions/service"
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"commands": {
|
|
514
|
+
"description": "Represents a list of UI5 shortcut commands",
|
|
515
|
+
"type": "object",
|
|
516
|
+
"additionalProperties": false,
|
|
517
|
+
"patternProperties": {
|
|
518
|
+
"^[A-Za-z_][A-Za-z0-9_\\-\\|@]+$": {
|
|
519
|
+
"$ref": "#/definitions/command"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"type": "object",
|
|
527
|
+
"properties": {
|
|
528
|
+
"routing": {
|
|
529
|
+
"$ref": "#/definitions/routing"
|
|
530
|
+
},
|
|
531
|
+
"rootView": {
|
|
532
|
+
"$ref": "#/definitions/rootView_def"
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"oneOf": [
|
|
538
|
+
{
|
|
539
|
+
"type": "object",
|
|
540
|
+
"required": [
|
|
541
|
+
"flexEnabled"
|
|
542
|
+
],
|
|
543
|
+
"properties": {
|
|
544
|
+
"flexEnabled": {
|
|
545
|
+
"description": "Represents an Indicator whether a component inside a library is flex enabled",
|
|
546
|
+
"type": "boolean",
|
|
547
|
+
"enum": [
|
|
548
|
+
true
|
|
549
|
+
]
|
|
550
|
+
},
|
|
551
|
+
"routing": {
|
|
552
|
+
"$ref": "#/definitions/routing_flexEnabled"
|
|
553
|
+
},
|
|
554
|
+
"rootView": {
|
|
555
|
+
"$ref": "#/definitions/rootView_def_flexEnabled"
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"type": "object",
|
|
561
|
+
"properties": {
|
|
562
|
+
"flexEnabled": {
|
|
563
|
+
"description": "Represents an Indicator whether a component inside a library is flex enabled",
|
|
564
|
+
"type": "boolean",
|
|
565
|
+
"enum": [
|
|
566
|
+
false
|
|
567
|
+
]
|
|
568
|
+
},
|
|
569
|
+
"routing": {
|
|
570
|
+
"$ref": "#/definitions/routing"
|
|
571
|
+
},
|
|
572
|
+
"rootView": {
|
|
573
|
+
"$ref": "#/definitions/rootView_def"
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
],
|
|
580
|
+
"definitions": {
|
|
581
|
+
"deviceType": {
|
|
582
|
+
"type": "object",
|
|
583
|
+
"description": "Represents device types on which the app is running",
|
|
584
|
+
"additionalProperties": false,
|
|
585
|
+
"properties": {
|
|
586
|
+
"desktop": {
|
|
587
|
+
"description": "Represents indicator whether desktop device is supported, default true",
|
|
588
|
+
"type": "boolean"
|
|
589
|
+
},
|
|
590
|
+
"tablet": {
|
|
591
|
+
"description": "Represents indicator whether tablet device is supported, default true",
|
|
592
|
+
"type": "boolean"
|
|
593
|
+
},
|
|
594
|
+
"phone": {
|
|
595
|
+
"description": "Represents indicator whether phone device is supported, default true",
|
|
596
|
+
"type": "boolean"
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"booleanOrString": {
|
|
601
|
+
"oneOf": [
|
|
602
|
+
{
|
|
603
|
+
"type": "boolean"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"type": "string"
|
|
607
|
+
}
|
|
608
|
+
]
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"sap.platform.abap": {
|
|
613
|
+
"title": "JSON schema for SAP.PLATFORM.ABAP Namespace",
|
|
614
|
+
"description": "Represents ABAP platform specific attributes",
|
|
615
|
+
"type": "object",
|
|
616
|
+
"additionalProperties": false,
|
|
617
|
+
"properties": {
|
|
618
|
+
"_version": {
|
|
619
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
620
|
+
"type": "string",
|
|
621
|
+
"enum": [
|
|
622
|
+
"1.1.0",
|
|
623
|
+
"1.2.0"
|
|
624
|
+
]
|
|
625
|
+
},
|
|
626
|
+
"uri": {
|
|
627
|
+
"description": "Represents the uri of the app in the ABAP system",
|
|
628
|
+
"type": "string"
|
|
629
|
+
},
|
|
630
|
+
"uriNwbc": {
|
|
631
|
+
"description": "Represents the alternative uri of the app in the ABAP system for starting the application",
|
|
632
|
+
"type": "string"
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
"sap.platform.hcp": {
|
|
637
|
+
"title": "JSON schema for SAP.PLATFORM.HCP Namespace",
|
|
638
|
+
"description": "Represents HANA Cloud Platform platform specific attributes",
|
|
639
|
+
"type": "object",
|
|
640
|
+
"additionalProperties": false,
|
|
641
|
+
"properties": {
|
|
642
|
+
"_version": {
|
|
643
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
644
|
+
"type": "string",
|
|
645
|
+
"enum": [
|
|
646
|
+
"1.1.0",
|
|
647
|
+
"1.2.0",
|
|
648
|
+
"1.3.0"
|
|
649
|
+
]
|
|
650
|
+
},
|
|
651
|
+
"uri": {
|
|
652
|
+
"description": "Represents the uri of the app in the HANA Cloud Platform",
|
|
653
|
+
"type": "string"
|
|
654
|
+
},
|
|
655
|
+
"uriNwbc": {
|
|
656
|
+
"description": "Represents the alternative uri of the app in the ABAP system for starting the application",
|
|
657
|
+
"type": "string"
|
|
658
|
+
},
|
|
659
|
+
"providerAccount": {
|
|
660
|
+
"description": "Represents the provider account of the HTML5 application",
|
|
661
|
+
"type": "string"
|
|
662
|
+
},
|
|
663
|
+
"appName": {
|
|
664
|
+
"description": "Represents the HTML5 application name",
|
|
665
|
+
"type": "string",
|
|
666
|
+
"pattern": "^[a-z][a-z0-9]{0,29}$"
|
|
667
|
+
},
|
|
668
|
+
"appVersion": {
|
|
669
|
+
"description": "Represents the version of the HTML5 application",
|
|
670
|
+
"type": "string"
|
|
671
|
+
},
|
|
672
|
+
"multiVersionApp": {
|
|
673
|
+
"description": "Indicates that HCP application is multi-version enabled",
|
|
674
|
+
"type": "boolean"
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"sap.platform.cf": {
|
|
679
|
+
"title": "JSON schema for SAP.PLATFORM.CF Namespace",
|
|
680
|
+
"description": "Represents CF(Cloud Foundry) platform specific attributes",
|
|
681
|
+
"type": "object",
|
|
682
|
+
"additionalProperties": true,
|
|
683
|
+
"properties": {
|
|
684
|
+
"_version": {
|
|
685
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
686
|
+
"type": "string",
|
|
687
|
+
"enum": [
|
|
688
|
+
"1.1.0",
|
|
689
|
+
"1.2.0"
|
|
690
|
+
]
|
|
691
|
+
},
|
|
692
|
+
"oAuthScopes": {
|
|
693
|
+
"description": "Represents the authorization scope of the application",
|
|
694
|
+
"type": "array",
|
|
695
|
+
"items": {
|
|
696
|
+
"type": "string"
|
|
697
|
+
},
|
|
698
|
+
"appHostId": {
|
|
699
|
+
"description": "Application host id to which the HTML5 app belongs",
|
|
700
|
+
"type": "string"
|
|
701
|
+
},
|
|
702
|
+
"changedOn": {
|
|
703
|
+
"description": "Changed on time stamp of the HTML5 app",
|
|
704
|
+
"type": "string"
|
|
705
|
+
},
|
|
706
|
+
"appName": {
|
|
707
|
+
"description": "Represents the HTML5 application name",
|
|
708
|
+
"type": "string",
|
|
709
|
+
"pattern": "^[a-z][a-z0-9]{0,29}$"
|
|
710
|
+
},
|
|
711
|
+
"appVersion": {
|
|
712
|
+
"description": "Represents the version of the HTML5 application",
|
|
713
|
+
"type": "string"
|
|
714
|
+
},
|
|
715
|
+
"multiVersionApp": {
|
|
716
|
+
"description": "Indicates wether an HTML5 application is multi-version enabled",
|
|
717
|
+
"type": "boolean"
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"sap.fiori": {
|
|
723
|
+
"title": "JSON schema for SAP.FIORI Namespace",
|
|
724
|
+
"description": "Represents SAP Fiori specific attributes",
|
|
725
|
+
"type": "object",
|
|
726
|
+
"required": [
|
|
727
|
+
"registrationIds",
|
|
728
|
+
"archeType"
|
|
729
|
+
],
|
|
730
|
+
"additionalProperties": false,
|
|
731
|
+
"properties": {
|
|
732
|
+
"_version": {
|
|
733
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
734
|
+
"type": "string",
|
|
735
|
+
"enum": [
|
|
736
|
+
"1.1.0",
|
|
737
|
+
"1.2.0"
|
|
738
|
+
]
|
|
739
|
+
},
|
|
740
|
+
"registrationIds": {
|
|
741
|
+
"description": "Represents array of registration ids, i.e. for Fiori apps fiori id(s)",
|
|
742
|
+
"type": "array",
|
|
743
|
+
"items": {
|
|
744
|
+
"type": "string"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"archeType": {
|
|
748
|
+
"description": "Represents architecture type of an application. The supported types are transactional or analytical or factsheet or reusecomponent or fpmwebdynpro or designstudio",
|
|
749
|
+
"type": "string",
|
|
750
|
+
"enum": [
|
|
751
|
+
"transactional",
|
|
752
|
+
"analytical",
|
|
753
|
+
"factsheet",
|
|
754
|
+
"reusecomponent",
|
|
755
|
+
"fpmwebdynpro",
|
|
756
|
+
"designstudio"
|
|
757
|
+
]
|
|
758
|
+
},
|
|
759
|
+
"abstract": {
|
|
760
|
+
"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",
|
|
761
|
+
"type": "boolean"
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"sap.ui.generic.app": {
|
|
766
|
+
"title": "JSON schema for SAP.UI.GENERIC.APP Namespace",
|
|
767
|
+
"description": "Represents GENERIC APP specific attributes",
|
|
768
|
+
"type": "object",
|
|
769
|
+
"additionalProperties": false,
|
|
770
|
+
"properties": {
|
|
771
|
+
"_version": {
|
|
772
|
+
"type": "string",
|
|
773
|
+
"enum": [
|
|
774
|
+
"1.1.0",
|
|
775
|
+
"1.2.0",
|
|
776
|
+
"1.3.0",
|
|
777
|
+
"1.4.0",
|
|
778
|
+
"1.5.0",
|
|
779
|
+
"1.6.0"
|
|
780
|
+
]
|
|
781
|
+
},
|
|
782
|
+
"settings": {
|
|
783
|
+
"description": "Represents global settings for the application controller",
|
|
784
|
+
"$ref": "#/definitions/setting_def"
|
|
785
|
+
},
|
|
786
|
+
"pages": {
|
|
787
|
+
"description": "Represents one ore more pages of an application. UI5 routing is created from the definitions in this section",
|
|
788
|
+
"oneOf": [
|
|
789
|
+
{
|
|
790
|
+
"type": "array",
|
|
791
|
+
"items": {
|
|
792
|
+
"$ref": "#/definitions/pages_array"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"type": "object",
|
|
797
|
+
"additionalProperties": false,
|
|
798
|
+
"patternProperties": {
|
|
799
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
800
|
+
"$ref": "#/definitions/pages_map"
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
]
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"sap.fe": {
|
|
809
|
+
"title": "JSON schema for SAP.FE Namespace",
|
|
810
|
+
"description": "Represents specific attributes for Fiori Elements ",
|
|
811
|
+
"type": "object"
|
|
812
|
+
},
|
|
813
|
+
"sap.flp": {
|
|
814
|
+
"title": "JSON schema for SAP.FLP Namespace",
|
|
815
|
+
"description": "Represents FLP specific attributes",
|
|
816
|
+
"type": "object",
|
|
817
|
+
"required": [
|
|
818
|
+
"type"
|
|
819
|
+
],
|
|
820
|
+
"additionalProperties": false,
|
|
821
|
+
"properties": {
|
|
822
|
+
"_version": {
|
|
823
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
824
|
+
"type": "string",
|
|
825
|
+
"enum": [
|
|
826
|
+
"1.1.0",
|
|
827
|
+
"1.2.0",
|
|
828
|
+
"1.3.0"
|
|
829
|
+
]
|
|
830
|
+
},
|
|
831
|
+
"tileSize": {
|
|
832
|
+
"description": "Represents size of the tile",
|
|
833
|
+
"type": "string",
|
|
834
|
+
"enum": [
|
|
835
|
+
"1x1",
|
|
836
|
+
"1x2"
|
|
837
|
+
]
|
|
838
|
+
},
|
|
839
|
+
"type": {
|
|
840
|
+
"description": "Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'",
|
|
841
|
+
"type": "string",
|
|
842
|
+
"enum": [
|
|
843
|
+
"application",
|
|
844
|
+
"tile",
|
|
845
|
+
"plugin"
|
|
846
|
+
]
|
|
847
|
+
},
|
|
848
|
+
"config": {
|
|
849
|
+
"description": "Represents configuration parameters of the FLP entry",
|
|
850
|
+
"type": "object",
|
|
851
|
+
"additionalProperties": false,
|
|
852
|
+
"patternProperties": {
|
|
853
|
+
"^[a-zA-Z0-9\\_\\.\\-]*$": {
|
|
854
|
+
"description": "Represents the configuration key and values",
|
|
855
|
+
"type": "object"
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
"origin": {
|
|
860
|
+
"description": "Represents the original tile and target mapping which resulted in this app",
|
|
861
|
+
"type": "object",
|
|
862
|
+
"additionalProperties": false,
|
|
863
|
+
"properties": {
|
|
864
|
+
"tileId": {
|
|
865
|
+
"description": "Represents the original tile which resulted in this app",
|
|
866
|
+
"type": "string"
|
|
867
|
+
},
|
|
868
|
+
"targetMappingId": {
|
|
869
|
+
"description": "Represents the original target mapping which resulted in this app",
|
|
870
|
+
"type": "string"
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"sap.ovp": {
|
|
877
|
+
"title": "JSON schema for SAP.OVP Namespace",
|
|
878
|
+
"description": "Represents OVP specific attributes",
|
|
879
|
+
"type": "object",
|
|
880
|
+
"required": [
|
|
881
|
+
"cards"
|
|
882
|
+
],
|
|
883
|
+
"dependencies": {
|
|
884
|
+
"globalFilterEntityType": [
|
|
885
|
+
"globalFilterModel"
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
"additionalProperties": false,
|
|
889
|
+
"properties": {
|
|
890
|
+
"_version": {
|
|
891
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
892
|
+
"type": "string",
|
|
893
|
+
"enum": [
|
|
894
|
+
"1.1.0",
|
|
895
|
+
"1.2.0",
|
|
896
|
+
"1.3.0",
|
|
897
|
+
"1.4.0",
|
|
898
|
+
"1.5.0",
|
|
899
|
+
"1.6.0",
|
|
900
|
+
"1.7.0"
|
|
901
|
+
]
|
|
902
|
+
},
|
|
903
|
+
"globalFilterModel": {
|
|
904
|
+
"description": "Represents the name of global filter OData model, which contains entities definition that are relevant for global filters",
|
|
905
|
+
"type": "string",
|
|
906
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
907
|
+
},
|
|
908
|
+
"globalFilterEntityType": {
|
|
909
|
+
"description": "Represents the entity to use as global filter in the smart filter bar control",
|
|
910
|
+
"type": "string",
|
|
911
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
912
|
+
},
|
|
913
|
+
"globalFilterEntitySet": {
|
|
914
|
+
"description": "Represents the entity set to use as global filter in the smart filter bar control",
|
|
915
|
+
"type": "string",
|
|
916
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
917
|
+
},
|
|
918
|
+
"showBasicSearch": {
|
|
919
|
+
"description": "Represents a switch to include basic search in the global filters",
|
|
920
|
+
"type": "boolean",
|
|
921
|
+
"default": false
|
|
922
|
+
},
|
|
923
|
+
"disableErrorPage": {
|
|
924
|
+
"description": "Represents a switch to disable the error page shown on load of overview page when no data is retreived from the backend",
|
|
925
|
+
"type": "boolean",
|
|
926
|
+
"default": false
|
|
927
|
+
},
|
|
928
|
+
"smartVariantRequired": {
|
|
929
|
+
"description": "Represents a switch to activate smart variant management in the global filters",
|
|
930
|
+
"type": "boolean",
|
|
931
|
+
"default": true
|
|
932
|
+
},
|
|
933
|
+
"bHeaderExpanded": {
|
|
934
|
+
"description": "Represents a switch to show smart filter bar in expanded or collapsed mode",
|
|
935
|
+
"type": "boolean",
|
|
936
|
+
"default": false
|
|
937
|
+
},
|
|
938
|
+
"containerLayout": {
|
|
939
|
+
"description": "Represents the layout of the card container",
|
|
940
|
+
"type": "string",
|
|
941
|
+
"default": "fixed",
|
|
942
|
+
"enum": [
|
|
943
|
+
"fixed",
|
|
944
|
+
"resizable"
|
|
945
|
+
]
|
|
946
|
+
},
|
|
947
|
+
"showDateInRelativeFormat": {
|
|
948
|
+
"description": "Represents a switch to Enable or disable Relative or Normal date formating in ovp application",
|
|
949
|
+
"type": "boolean",
|
|
950
|
+
"default": true
|
|
951
|
+
},
|
|
952
|
+
"disableTableCardFlexibility": {
|
|
953
|
+
"description": "Represents a switch to Enable or Disable the Flexibility of Table cards",
|
|
954
|
+
"type": "boolean",
|
|
955
|
+
"default": false
|
|
956
|
+
},
|
|
957
|
+
"enableLiveFilter": {
|
|
958
|
+
"description": "Represents the switch to activate live update in the global filters, else manual update will be required",
|
|
959
|
+
"type": "boolean",
|
|
960
|
+
"default": true
|
|
961
|
+
},
|
|
962
|
+
"refreshStrategyOnAppRestore": {
|
|
963
|
+
"description": "Represents the refresh strategies configured for OVP while coming back to the source app",
|
|
964
|
+
"$ref": "#/definitions/refreshStrategies_prop_def"
|
|
965
|
+
},
|
|
966
|
+
"considerAnalyticalParameters": {
|
|
967
|
+
"description": "Flag to enable/disable analytical parameter support for Smart filter bar",
|
|
968
|
+
"type": "boolean",
|
|
969
|
+
"default": false
|
|
970
|
+
},
|
|
971
|
+
"refreshIntervalInMinutes": {
|
|
972
|
+
"description": "Time interval in minutes to auto refresh the card models",
|
|
973
|
+
"type": "integer",
|
|
974
|
+
"default": 1
|
|
975
|
+
},
|
|
976
|
+
"useDateRangeType": {
|
|
977
|
+
"description": "Flag to enable/disable semantic date range control for Smart filter bar",
|
|
978
|
+
"type": "boolean",
|
|
979
|
+
"default": false
|
|
980
|
+
},
|
|
981
|
+
"chartSettings": {
|
|
982
|
+
"description": "Represents the object to store analytical chart settings",
|
|
983
|
+
"type": "object",
|
|
984
|
+
"properties": {
|
|
985
|
+
"showDataLabel": {
|
|
986
|
+
"description": "Flag to enable data labels on analytical charts",
|
|
987
|
+
"type": "boolean",
|
|
988
|
+
"default": false
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
"filterSettings": {
|
|
993
|
+
"description": "Represents the object to store filter bar configuration",
|
|
994
|
+
"type": "object",
|
|
995
|
+
"properties": {
|
|
996
|
+
"dateSettings": {
|
|
997
|
+
"description": "Represents the object to store date type filter fields configuration",
|
|
998
|
+
"type": "object",
|
|
999
|
+
"properties": {
|
|
1000
|
+
"useDateRange": {
|
|
1001
|
+
"description": "Flag to enable DateTimeRange setting for date type filter fields with filter restriction interval",
|
|
1002
|
+
"type": "boolean",
|
|
1003
|
+
"default": false
|
|
1004
|
+
},
|
|
1005
|
+
"selectedValues": {
|
|
1006
|
+
"description": "Represents the semantic date values selected for the date filter field",
|
|
1007
|
+
"type": "string"
|
|
1008
|
+
},
|
|
1009
|
+
"exclude": {
|
|
1010
|
+
"description": "Flag to exclude values from the date picker",
|
|
1011
|
+
"type": "boolean",
|
|
1012
|
+
"default": false
|
|
1013
|
+
},
|
|
1014
|
+
"fields": {
|
|
1015
|
+
"description": "Represents the filter field definition for each field",
|
|
1016
|
+
"type": "object",
|
|
1017
|
+
"patternProperties": {
|
|
1018
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1019
|
+
"$ref": "#/definitions/filterFieldName"
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
"dataLoadSettings": {
|
|
1028
|
+
"description": "Represents the object to define data loading behaviour for an overview page application",
|
|
1029
|
+
"type": "object",
|
|
1030
|
+
"properties": {
|
|
1031
|
+
"loadDataOnAppLaunch": {
|
|
1032
|
+
"description": "Data load behaviour options on application launch",
|
|
1033
|
+
"type": "string",
|
|
1034
|
+
"default": "always",
|
|
1035
|
+
"enum": [
|
|
1036
|
+
"always",
|
|
1037
|
+
"never",
|
|
1038
|
+
"ifAnyFilterExist"
|
|
1039
|
+
]
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"cards": {
|
|
1044
|
+
"type": "object",
|
|
1045
|
+
"additionalProperties": false,
|
|
1046
|
+
"patternProperties": {
|
|
1047
|
+
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
1048
|
+
"$ref": "#/definitions/card"
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
"resizableLayout": {
|
|
1053
|
+
"type": "object",
|
|
1054
|
+
"additionalProperties": false,
|
|
1055
|
+
"patternProperties": {
|
|
1056
|
+
"^cols_[0-9]+$": {
|
|
1057
|
+
"$ref": "#/definitions/resizableLayoutVariant"
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
"sap.wda": {
|
|
1064
|
+
"title": "JSON schema for SAP.WDA Namespace",
|
|
1065
|
+
"description": "Represents WDA specific attributes",
|
|
1066
|
+
"type": "object",
|
|
1067
|
+
"required": [
|
|
1068
|
+
"applicationId"
|
|
1069
|
+
],
|
|
1070
|
+
"additionalProperties": false,
|
|
1071
|
+
"properties": {
|
|
1072
|
+
"_version": {
|
|
1073
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1074
|
+
"type": "string",
|
|
1075
|
+
"enum": [
|
|
1076
|
+
"1.1.0",
|
|
1077
|
+
"1.2.0"
|
|
1078
|
+
]
|
|
1079
|
+
},
|
|
1080
|
+
"applicationId": {
|
|
1081
|
+
"description": "Represents ID of an application",
|
|
1082
|
+
"type": "string",
|
|
1083
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,30}$"
|
|
1084
|
+
},
|
|
1085
|
+
"configId": {
|
|
1086
|
+
"description": "Represents ID of an application configuration",
|
|
1087
|
+
"type": "string",
|
|
1088
|
+
"pattern": "^[a-zA-Z0-9\\/\\_]{1,32}$"
|
|
1089
|
+
},
|
|
1090
|
+
"flavorId": {
|
|
1091
|
+
"description": "Represents SAP Screen Personas Flavor ID",
|
|
1092
|
+
"type": "string",
|
|
1093
|
+
"pattern": "^[A-F0-9]{1,32}$"
|
|
1094
|
+
},
|
|
1095
|
+
"compatibilityMode": {
|
|
1096
|
+
"description": "Indicates that WebDynpro Application requires Compatibility Mode, while uses legacy shell services. Possible values are true or false (default)",
|
|
1097
|
+
"type": "boolean",
|
|
1098
|
+
"default": false
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"sap.apf": {
|
|
1103
|
+
"title": "JSON schema for SAP.APF Namespace",
|
|
1104
|
+
"description": "Represents APF specific attributes",
|
|
1105
|
+
"type": "object",
|
|
1106
|
+
"additionalProperties": false,
|
|
1107
|
+
"properties": {
|
|
1108
|
+
"_version": {
|
|
1109
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1110
|
+
"type": "string",
|
|
1111
|
+
"enum": [
|
|
1112
|
+
"1.1.0",
|
|
1113
|
+
"1.2.0"
|
|
1114
|
+
]
|
|
1115
|
+
},
|
|
1116
|
+
"activateFilterReduction": {
|
|
1117
|
+
"description": "Represents a switch to activate filter reduction so that filters in OData requests can be represented as ABAP select options",
|
|
1118
|
+
"type": "boolean",
|
|
1119
|
+
"default": false
|
|
1120
|
+
},
|
|
1121
|
+
"activateLrep": {
|
|
1122
|
+
"description": "Represents a switch to activate LREP as the persistence for configurations and texts",
|
|
1123
|
+
"type": "boolean",
|
|
1124
|
+
"default": false
|
|
1125
|
+
},
|
|
1126
|
+
"useHeadRequestForXsrfToken": {
|
|
1127
|
+
"description": "Represents a switch to use HEAD-Requests instead of GET-Requests when fetching the XSRF-Security-Token",
|
|
1128
|
+
"type": "boolean",
|
|
1129
|
+
"default": false
|
|
1130
|
+
}
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
"sap.cloud.portal": {
|
|
1134
|
+
"title": "JSON schema for SAP.CLOUD.PORTAL Namespace",
|
|
1135
|
+
"description": "Represents Cloud Portal specific attributes",
|
|
1136
|
+
"type": "object"
|
|
1137
|
+
},
|
|
1138
|
+
"sap.gui": {
|
|
1139
|
+
"title": "JSON schema for SAP.GUI Namespace",
|
|
1140
|
+
"description": "Represents GUI specific attributes",
|
|
1141
|
+
"type": "object",
|
|
1142
|
+
"required": [
|
|
1143
|
+
"transaction"
|
|
1144
|
+
],
|
|
1145
|
+
"additionalProperties": false,
|
|
1146
|
+
"properties": {
|
|
1147
|
+
"_version": {
|
|
1148
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1149
|
+
"type": "string",
|
|
1150
|
+
"enum": [
|
|
1151
|
+
"1.1.0",
|
|
1152
|
+
"1.2.0"
|
|
1153
|
+
]
|
|
1154
|
+
},
|
|
1155
|
+
"transaction": {
|
|
1156
|
+
"description": "Represents transaction of an application",
|
|
1157
|
+
"type": "string",
|
|
1158
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,20}$"
|
|
1159
|
+
},
|
|
1160
|
+
"flavorId": {
|
|
1161
|
+
"description": "Represents SAP Screen Personas Flavor ID",
|
|
1162
|
+
"type": "string",
|
|
1163
|
+
"pattern": "^[A-F0-9]{1,32}$"
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
"sap.integration": {
|
|
1168
|
+
"title": "JSON schema for SAP.INTEGRATION Namespace",
|
|
1169
|
+
"description": "Represents Application Integration specific attributes",
|
|
1170
|
+
"type": "object",
|
|
1171
|
+
"required": [
|
|
1172
|
+
"urlTemplateId",
|
|
1173
|
+
"parameters"
|
|
1174
|
+
],
|
|
1175
|
+
"properties": {
|
|
1176
|
+
"_version": {
|
|
1177
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1178
|
+
"type": "string",
|
|
1179
|
+
"enum": [
|
|
1180
|
+
"1.0.0"
|
|
1181
|
+
]
|
|
1182
|
+
},
|
|
1183
|
+
"urlTemplateId": {
|
|
1184
|
+
"description": "Reference to the desired URL Template",
|
|
1185
|
+
"type": "string",
|
|
1186
|
+
"examples": [
|
|
1187
|
+
"template.sap.sfsf",
|
|
1188
|
+
"template.sap.ui5",
|
|
1189
|
+
"template.sap.wda"
|
|
1190
|
+
]
|
|
1191
|
+
},
|
|
1192
|
+
"parameters": {
|
|
1193
|
+
"description": "Represents configuration parameters which will be used by Template Engine to compile URL Template",
|
|
1194
|
+
"type": "array",
|
|
1195
|
+
"items": {
|
|
1196
|
+
"type": "object",
|
|
1197
|
+
"required": [
|
|
1198
|
+
"key",
|
|
1199
|
+
"value"
|
|
1200
|
+
],
|
|
1201
|
+
"properties": {
|
|
1202
|
+
"key": {
|
|
1203
|
+
"type": "string",
|
|
1204
|
+
"description": "Represents the name of the desired parameter"
|
|
1205
|
+
},
|
|
1206
|
+
"value": {
|
|
1207
|
+
"type": "string",
|
|
1208
|
+
"description": "Represents the actual value of the desired parameter"
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
"sap.wcf": {
|
|
1216
|
+
"title": "JSON schema for SAP.WCF Namespace",
|
|
1217
|
+
"description": "Represents WCF Application specific attributes",
|
|
1218
|
+
"type": "object",
|
|
1219
|
+
"required": [
|
|
1220
|
+
"wcf-target-id"
|
|
1221
|
+
],
|
|
1222
|
+
"additionalProperties": false,
|
|
1223
|
+
"properties": {
|
|
1224
|
+
"_version": {
|
|
1225
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1226
|
+
"type": "string",
|
|
1227
|
+
"enum": [
|
|
1228
|
+
"1.1.0"
|
|
1229
|
+
]
|
|
1230
|
+
},
|
|
1231
|
+
"wcf-target-id": {
|
|
1232
|
+
"description": "Represents the target technical id for a WCF Application",
|
|
1233
|
+
"type": "string",
|
|
1234
|
+
"pattern": "^[a-zA-Z0-9\\/_]{1,10}$"
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
"sap.ui.smartbusiness.app": {
|
|
1239
|
+
"title": "JSON schema for SAP.UI.SMARTBUSINESS.APP Namespace",
|
|
1240
|
+
"description": "Represents specific attributes for Smart Business ",
|
|
1241
|
+
"type": "object"
|
|
1242
|
+
},
|
|
1243
|
+
"sap.mobile": {
|
|
1244
|
+
"title": "JSON schema for SAP.MOBILE Namespace",
|
|
1245
|
+
"description": "Represents mobile specific attributes",
|
|
1246
|
+
"type": "object",
|
|
1247
|
+
"required": [
|
|
1248
|
+
"definingRequests"
|
|
1249
|
+
],
|
|
1250
|
+
"properties": {
|
|
1251
|
+
"_version": {
|
|
1252
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1253
|
+
"type": "string",
|
|
1254
|
+
"enum": [
|
|
1255
|
+
"1.1.0"
|
|
1256
|
+
]
|
|
1257
|
+
},
|
|
1258
|
+
"definingRequests": {
|
|
1259
|
+
"description": "Represents mobile specific attributes",
|
|
1260
|
+
"type": "object",
|
|
1261
|
+
"additionalProperties": false,
|
|
1262
|
+
"patternProperties": {
|
|
1263
|
+
"^[a-zA-Z0-9_\\.\\-]*": {
|
|
1264
|
+
"$ref": "#/definitions/definingRequest"
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"sap.copilot": {
|
|
1271
|
+
"title": "JSON schema for SAP.COPILOT Namespace",
|
|
1272
|
+
"description": "Represents specific attributes for SAP CoPilot",
|
|
1273
|
+
"type": "object",
|
|
1274
|
+
"additionalProperties": true,
|
|
1275
|
+
"properties": {
|
|
1276
|
+
"_version": {
|
|
1277
|
+
"description": "Represents SAP.COPILOT attributes format version. It is managed by namespace owner",
|
|
1278
|
+
"type": "string",
|
|
1279
|
+
"enum": [
|
|
1280
|
+
"1.0.0",
|
|
1281
|
+
"1.1.0"
|
|
1282
|
+
]
|
|
1283
|
+
},
|
|
1284
|
+
"contextAnalysis": {
|
|
1285
|
+
"description": "Settings for the context analysis features of SAP CoPilot",
|
|
1286
|
+
"type": "object",
|
|
1287
|
+
"additionalProperties": true,
|
|
1288
|
+
"properties": {
|
|
1289
|
+
"allowAddingObjectsFromAppScreenToCollection": {
|
|
1290
|
+
"description": "Enable/Disable the ability for SAP CoPilot to analyze your Application Screens and add the found objects to a Collection",
|
|
1291
|
+
"type": "boolean",
|
|
1292
|
+
"default": true
|
|
1293
|
+
},
|
|
1294
|
+
"whitelistedEntityTypes": {
|
|
1295
|
+
"description": "A list of the whitelisted EntityTypes, prefixed with their namespace, that SAP CoPilot can display. The empty list is ignored, thus allowing all EntityTypes by default.",
|
|
1296
|
+
"type": "array",
|
|
1297
|
+
"items": {
|
|
1298
|
+
"type": "string"
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
},
|
|
1303
|
+
"digitalAssistant": {
|
|
1304
|
+
"description": "Settings for the Digital Assistant features of SAP CoPilot",
|
|
1305
|
+
"type": "object",
|
|
1306
|
+
"additionalProperties": true,
|
|
1307
|
+
"properties": {
|
|
1308
|
+
"intentDefinition": {
|
|
1309
|
+
"description": "A list of Intent",
|
|
1310
|
+
"type": "object",
|
|
1311
|
+
"additionalProperties": false,
|
|
1312
|
+
"patternProperties": {
|
|
1313
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
1314
|
+
"type": "object",
|
|
1315
|
+
"additionalProperties": true,
|
|
1316
|
+
"properties": {
|
|
1317
|
+
"uri": {
|
|
1318
|
+
"description": "Represents the uri of the intent",
|
|
1319
|
+
"type": "string"
|
|
1320
|
+
},
|
|
1321
|
+
"dataSources": {
|
|
1322
|
+
"description": "A list of the sap.app.dataSources used by the intent",
|
|
1323
|
+
"type": "array",
|
|
1324
|
+
"items": {
|
|
1325
|
+
"type": "string"
|
|
1326
|
+
}
|
|
1327
|
+
},
|
|
1328
|
+
"i18n": {
|
|
1329
|
+
"description": "Represents the uri of the translation file",
|
|
1330
|
+
"type": "string"
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"sap.map": {
|
|
1341
|
+
"title": "JSON schema for SAP.MAP Namespace",
|
|
1342
|
+
"description": "Represents specific attributes for SAP.MAP ",
|
|
1343
|
+
"type": "object"
|
|
1344
|
+
},
|
|
1345
|
+
"sap.url": {
|
|
1346
|
+
"title": "JSON schema for SAP.URL Namespace",
|
|
1347
|
+
"description": "Represents specific attributes for SAP URL",
|
|
1348
|
+
"type": "object",
|
|
1349
|
+
"additionalProperties": false,
|
|
1350
|
+
"required": [
|
|
1351
|
+
"uri"
|
|
1352
|
+
],
|
|
1353
|
+
"properties": {
|
|
1354
|
+
"_version": {
|
|
1355
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1356
|
+
"type": "string",
|
|
1357
|
+
"enum": [
|
|
1358
|
+
"1.0.0"
|
|
1359
|
+
]
|
|
1360
|
+
},
|
|
1361
|
+
"uri": {
|
|
1362
|
+
"description": "Represents URI of an application",
|
|
1363
|
+
"type": "string"
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
},
|
|
1367
|
+
"sap.platform.sfsf": {
|
|
1368
|
+
"title": "JSON schema for SAP.PLATFORM.SFSF Namespace",
|
|
1369
|
+
"description": "Represents SFSF platform specific attributes",
|
|
1370
|
+
"type": "object",
|
|
1371
|
+
"additionalProperties": false,
|
|
1372
|
+
"required": [
|
|
1373
|
+
"appName"
|
|
1374
|
+
],
|
|
1375
|
+
"properties": {
|
|
1376
|
+
"_version": {
|
|
1377
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1378
|
+
"type": "string",
|
|
1379
|
+
"enum": [
|
|
1380
|
+
"1.0.0"
|
|
1381
|
+
]
|
|
1382
|
+
},
|
|
1383
|
+
"uri": {
|
|
1384
|
+
"description": "Represents the uri inside the SFSF app",
|
|
1385
|
+
"type": "string"
|
|
1386
|
+
},
|
|
1387
|
+
"appName": {
|
|
1388
|
+
"description": "Represents the SFSF application name",
|
|
1389
|
+
"type": "string"
|
|
1390
|
+
},
|
|
1391
|
+
"appVersion": {
|
|
1392
|
+
"description": "Represents the version of the SFSF application",
|
|
1393
|
+
"type": "string"
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
"sap.cloud": {
|
|
1398
|
+
"title": "JSON schema for SAP.CLOUD Namespace",
|
|
1399
|
+
"description": "Represents cloud platform specific attributes",
|
|
1400
|
+
"type": "object",
|
|
1401
|
+
"additionalProperties": false,
|
|
1402
|
+
"properties": {
|
|
1403
|
+
"_version": {
|
|
1404
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
1405
|
+
"type": "string",
|
|
1406
|
+
"enum": [
|
|
1407
|
+
"1.0.0",
|
|
1408
|
+
"1.1.0",
|
|
1409
|
+
"1.2.0"
|
|
1410
|
+
]
|
|
1411
|
+
},
|
|
1412
|
+
"service": {
|
|
1413
|
+
"description": "Unique Business Service Identifier",
|
|
1414
|
+
"type": "string",
|
|
1415
|
+
"pattern": "^[^- @#$%^&()!]+$"
|
|
1416
|
+
},
|
|
1417
|
+
"public": {
|
|
1418
|
+
"description": "Specify if the UI can be accessed from a different space than origin development space",
|
|
1419
|
+
"type": "boolean",
|
|
1420
|
+
"default": false
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"definitions": {
|
|
1426
|
+
"definingRequest": {
|
|
1427
|
+
"type": "object",
|
|
1428
|
+
"additionalProperties": false,
|
|
1429
|
+
"required": [
|
|
1430
|
+
"dataSource",
|
|
1431
|
+
"path"
|
|
1432
|
+
],
|
|
1433
|
+
"properties": {
|
|
1434
|
+
"dataSource": {
|
|
1435
|
+
"description": "Represents reference to dataSource under sap.app",
|
|
1436
|
+
"type": "string"
|
|
1437
|
+
},
|
|
1438
|
+
"path": {
|
|
1439
|
+
"description": "Represents path to the title collection",
|
|
1440
|
+
"type": "string"
|
|
1441
|
+
},
|
|
1442
|
+
"retrieveStreams": {
|
|
1443
|
+
"description": "Represents indicator whether streams should be retrieved",
|
|
1444
|
+
"type": "boolean",
|
|
1445
|
+
"default": false
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
},
|
|
1449
|
+
"levelsDef": {
|
|
1450
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
1451
|
+
"type": "array"
|
|
1452
|
+
},
|
|
1453
|
+
"resizableLayoutVariantCardProperties": {
|
|
1454
|
+
"required": [
|
|
1455
|
+
"col",
|
|
1456
|
+
"row",
|
|
1457
|
+
"colSpan",
|
|
1458
|
+
"rowSpan"
|
|
1459
|
+
],
|
|
1460
|
+
"description": "Represents the card properties is a layout variant",
|
|
1461
|
+
"type": "object",
|
|
1462
|
+
"additionalProperties": false,
|
|
1463
|
+
"properties": {
|
|
1464
|
+
"col": {
|
|
1465
|
+
"description": "Represents the grid column",
|
|
1466
|
+
"type": "integer"
|
|
1467
|
+
},
|
|
1468
|
+
"row": {
|
|
1469
|
+
"description": "Represents the grid row",
|
|
1470
|
+
"type": "integer"
|
|
1471
|
+
},
|
|
1472
|
+
"colSpan": {
|
|
1473
|
+
"description": "Represents the column span",
|
|
1474
|
+
"type": "integer"
|
|
1475
|
+
},
|
|
1476
|
+
"rowSpan": {
|
|
1477
|
+
"description": "Represents the row span",
|
|
1478
|
+
"type": "integer"
|
|
1479
|
+
},
|
|
1480
|
+
"visible": {
|
|
1481
|
+
"description": "Represents the visibility of the card",
|
|
1482
|
+
"type": "boolean",
|
|
1483
|
+
"default": true
|
|
1484
|
+
}
|
|
1485
|
+
}
|
|
1486
|
+
},
|
|
1487
|
+
"customActionsSetting": {
|
|
1488
|
+
"description": "Represents the properties for the custom actions in the Quick View Cards",
|
|
1489
|
+
"type": "object",
|
|
1490
|
+
"additionalProperties": true,
|
|
1491
|
+
"properties": {
|
|
1492
|
+
"text": {
|
|
1493
|
+
"description": "Text displayed for extended actions in Quick View",
|
|
1494
|
+
"type": "string",
|
|
1495
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1496
|
+
},
|
|
1497
|
+
"press": {
|
|
1498
|
+
"description": "Name of the press handler for extended actions in Quick View",
|
|
1499
|
+
"type": "string",
|
|
1500
|
+
"pattern": "^[^\\W\\.\\-][\\w\\.\\-]*$"
|
|
1501
|
+
},
|
|
1502
|
+
"position": {
|
|
1503
|
+
"description": "Position of extended actions in Quick View",
|
|
1504
|
+
"type": "integer"
|
|
1505
|
+
}
|
|
1506
|
+
}
|
|
1507
|
+
},
|
|
1508
|
+
"timeAxisDef": {
|
|
1509
|
+
"description": "Represents the configuration to customize the time axis",
|
|
1510
|
+
"type": "object",
|
|
1511
|
+
"properties": {
|
|
1512
|
+
"levels": {
|
|
1513
|
+
"$ref": "#/definitions/levelsDef"
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
},
|
|
1517
|
+
"plotAreaDef": {
|
|
1518
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
1519
|
+
"type": "object",
|
|
1520
|
+
"additionalProperties": false,
|
|
1521
|
+
"properties": {
|
|
1522
|
+
"isSmoothed": {
|
|
1523
|
+
"description": "Represents whether smoother curves are required or not",
|
|
1524
|
+
"type": "boolean",
|
|
1525
|
+
"default": false
|
|
1526
|
+
},
|
|
1527
|
+
"markerSize": {
|
|
1528
|
+
"description": "Represents the size of the markers in scatter plots",
|
|
1529
|
+
"type": "integer"
|
|
1530
|
+
},
|
|
1531
|
+
"dataLabel": {
|
|
1532
|
+
"type": "object",
|
|
1533
|
+
"description": "dataLabel is a parent property that defines other properties for type",
|
|
1534
|
+
"additionalProperties": false,
|
|
1535
|
+
"properties": {
|
|
1536
|
+
"type": {
|
|
1537
|
+
"description": "Defines whether to display percentage values or actual counts in the donut chart",
|
|
1538
|
+
"type": "string",
|
|
1539
|
+
"enum": [
|
|
1540
|
+
"value",
|
|
1541
|
+
"percentage"
|
|
1542
|
+
],
|
|
1543
|
+
"default": "value"
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
}
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
"objectStreamCardsSettingsDef": {
|
|
1550
|
+
"description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards",
|
|
1551
|
+
"type": "object",
|
|
1552
|
+
"additionalProperties": true,
|
|
1553
|
+
"properties": {
|
|
1554
|
+
"showFirstActionInFooter": {
|
|
1555
|
+
"description": "Represents the flag to show first action in footer of the Quickview cards",
|
|
1556
|
+
"type": "boolean",
|
|
1557
|
+
"default": false
|
|
1558
|
+
},
|
|
1559
|
+
"customActions": {
|
|
1560
|
+
"description": "Represents the custom actions in the Quick View Cards",
|
|
1561
|
+
"type": "array",
|
|
1562
|
+
"minItems": 1,
|
|
1563
|
+
"items": {
|
|
1564
|
+
"$ref": "#/definitions/customActionsSetting"
|
|
1565
|
+
}
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
"defaultSpanDef": {
|
|
1570
|
+
"description": "Represents the card default grid size in columns and rows",
|
|
1571
|
+
"oneOf": [
|
|
1572
|
+
{
|
|
1573
|
+
"type": "object",
|
|
1574
|
+
"additionalProperties": false,
|
|
1575
|
+
"required": [
|
|
1576
|
+
"cols",
|
|
1577
|
+
"rows"
|
|
1578
|
+
],
|
|
1579
|
+
"properties": {
|
|
1580
|
+
"cols": {
|
|
1581
|
+
"description": "Represents the number of the number of grid columns",
|
|
1582
|
+
"type": "integer"
|
|
1583
|
+
},
|
|
1584
|
+
"rows": {
|
|
1585
|
+
"description": "Represents the number of the number of grid rows",
|
|
1586
|
+
"type": "integer"
|
|
1587
|
+
},
|
|
1588
|
+
"showOnlyHeader": {
|
|
1589
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
1590
|
+
"type": "boolean",
|
|
1591
|
+
"default": false
|
|
1592
|
+
},
|
|
1593
|
+
"minimumTitleRow": {
|
|
1594
|
+
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
1595
|
+
"type": "integer",
|
|
1596
|
+
"default": 1,
|
|
1597
|
+
"pattern": "^[1-3]$"
|
|
1598
|
+
},
|
|
1599
|
+
"minimumSubTitleRow": {
|
|
1600
|
+
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
1601
|
+
"type": "integer",
|
|
1602
|
+
"default": 1,
|
|
1603
|
+
"pattern": "^[12]$"
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"type": "string",
|
|
1609
|
+
"enum": [
|
|
1610
|
+
"auto"
|
|
1611
|
+
]
|
|
1612
|
+
}
|
|
1613
|
+
]
|
|
1614
|
+
},
|
|
1615
|
+
"tab_setting": {
|
|
1616
|
+
"description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
|
|
1617
|
+
"type": "object",
|
|
1618
|
+
"additionalProperties": true,
|
|
1619
|
+
"properties": {
|
|
1620
|
+
"annotationPath": {
|
|
1621
|
+
"description": "Represents the annotation path",
|
|
1622
|
+
"type": "string",
|
|
1623
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1624
|
+
},
|
|
1625
|
+
"selectionAnnotationPath": {
|
|
1626
|
+
"description": "Represents the selection annotation path",
|
|
1627
|
+
"type": "string",
|
|
1628
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1629
|
+
},
|
|
1630
|
+
"chartAnnotationPath": {
|
|
1631
|
+
"description": "Represents the chart annotation path",
|
|
1632
|
+
"type": "string",
|
|
1633
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1634
|
+
},
|
|
1635
|
+
"presentationAnnotationPath": {
|
|
1636
|
+
"description": "Represents the presentation annotation path",
|
|
1637
|
+
"type": "string",
|
|
1638
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1639
|
+
},
|
|
1640
|
+
"dataPointAnnotationPath": {
|
|
1641
|
+
"description": "Represents the data point annotation path",
|
|
1642
|
+
"type": "string",
|
|
1643
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1644
|
+
},
|
|
1645
|
+
"identificationAnnotationPath": {
|
|
1646
|
+
"description": "Represents the identification annotation path",
|
|
1647
|
+
"type": "string",
|
|
1648
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1649
|
+
},
|
|
1650
|
+
"dynamicSubtitleAnnotationPath": {
|
|
1651
|
+
"description": "Represents the dynamic subtitle annotation path",
|
|
1652
|
+
"type": "string",
|
|
1653
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1654
|
+
},
|
|
1655
|
+
"value": {
|
|
1656
|
+
"description": "Represents the drop down value to be shown",
|
|
1657
|
+
"type": "string"
|
|
1658
|
+
},
|
|
1659
|
+
"chartProperties": {
|
|
1660
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
1661
|
+
"type": "object",
|
|
1662
|
+
"additionalProperties": false,
|
|
1663
|
+
"properties": {
|
|
1664
|
+
"plotArea": {
|
|
1665
|
+
"$ref": "#/definitions/plotAreaDef"
|
|
1666
|
+
},
|
|
1667
|
+
"timeAxis": {
|
|
1668
|
+
"$ref": "#/definitions/timeAxisDef"
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
"colorPalette": {
|
|
1673
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
1674
|
+
"oneOf": [
|
|
1675
|
+
{
|
|
1676
|
+
"type": "array",
|
|
1677
|
+
"items": {
|
|
1678
|
+
"type": "object"
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"type": "object"
|
|
1683
|
+
}
|
|
1684
|
+
]
|
|
1685
|
+
}
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1688
|
+
"card_setting": {
|
|
1689
|
+
"description": "Represents the card specific properties - properties that are passed to the card",
|
|
1690
|
+
"type": "object",
|
|
1691
|
+
"required": [
|
|
1692
|
+
"title"
|
|
1693
|
+
],
|
|
1694
|
+
"additionalProperties": true,
|
|
1695
|
+
"properties": {
|
|
1696
|
+
"category": {
|
|
1697
|
+
"description": "Represents the category of the card- used in the card header",
|
|
1698
|
+
"type": "string",
|
|
1699
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1700
|
+
},
|
|
1701
|
+
"itemText": {
|
|
1702
|
+
"description": "Represents the user defined string in placeholder card",
|
|
1703
|
+
"type": "string",
|
|
1704
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1705
|
+
},
|
|
1706
|
+
"title": {
|
|
1707
|
+
"description": "Represents language-dependent title of the card - used in the card header",
|
|
1708
|
+
"type": "string",
|
|
1709
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1710
|
+
},
|
|
1711
|
+
"subTitle": {
|
|
1712
|
+
"description": "Represents language-dependent subtitle of the card - used in the card header",
|
|
1713
|
+
"type": "string",
|
|
1714
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1715
|
+
},
|
|
1716
|
+
"valueSelectionInfo": {
|
|
1717
|
+
"description": "Represents things like people, number of items",
|
|
1718
|
+
"type": "string",
|
|
1719
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1720
|
+
},
|
|
1721
|
+
"entitySet": {
|
|
1722
|
+
"description": "Represents the entity set that will be displayed in this card",
|
|
1723
|
+
"type": "string",
|
|
1724
|
+
"pattern": "^[a-zA-Z0-9_]+$"
|
|
1725
|
+
},
|
|
1726
|
+
"staticContent": {
|
|
1727
|
+
"description": "Represents the static content that will be displayed in this card",
|
|
1728
|
+
"type": "array",
|
|
1729
|
+
"items": {
|
|
1730
|
+
"type": "object"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"listFlavor": {
|
|
1734
|
+
"description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard",
|
|
1735
|
+
"type": "string",
|
|
1736
|
+
"enum": [
|
|
1737
|
+
"standard",
|
|
1738
|
+
"bar",
|
|
1739
|
+
"carousel"
|
|
1740
|
+
]
|
|
1741
|
+
},
|
|
1742
|
+
"listType": {
|
|
1743
|
+
"description": "Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card",
|
|
1744
|
+
"type": "string",
|
|
1745
|
+
"enum": [
|
|
1746
|
+
"extended",
|
|
1747
|
+
"condensed"
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"sortBy": {
|
|
1751
|
+
"description": "Represents the sort key for the entity set",
|
|
1752
|
+
"type": "string"
|
|
1753
|
+
},
|
|
1754
|
+
"sortOrder": {
|
|
1755
|
+
"description": "Represents the sort order for the entity set",
|
|
1756
|
+
"type": "string",
|
|
1757
|
+
"enum": [
|
|
1758
|
+
"ascending",
|
|
1759
|
+
"descending"
|
|
1760
|
+
]
|
|
1761
|
+
},
|
|
1762
|
+
"annotationPath": {
|
|
1763
|
+
"description": "Represents the annotation path",
|
|
1764
|
+
"type": "string",
|
|
1765
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1766
|
+
},
|
|
1767
|
+
"selectionAnnotationPath": {
|
|
1768
|
+
"description": "Represents the selection annotation path",
|
|
1769
|
+
"type": "string",
|
|
1770
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1771
|
+
},
|
|
1772
|
+
"chartAnnotationPath": {
|
|
1773
|
+
"description": "Represents the chart annotation path",
|
|
1774
|
+
"type": "string",
|
|
1775
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1776
|
+
},
|
|
1777
|
+
"presentationAnnotationPath": {
|
|
1778
|
+
"description": "Represents the presentation annotation path",
|
|
1779
|
+
"type": "string",
|
|
1780
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1781
|
+
},
|
|
1782
|
+
"dataPointAnnotationPath": {
|
|
1783
|
+
"description": "Represents the data point annotation path",
|
|
1784
|
+
"type": "string",
|
|
1785
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1786
|
+
},
|
|
1787
|
+
"identificationAnnotationPath": {
|
|
1788
|
+
"description": "Represents the identification annotation path",
|
|
1789
|
+
"type": "string",
|
|
1790
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#,]*$"
|
|
1791
|
+
},
|
|
1792
|
+
"kpiAnnotationPath": {
|
|
1793
|
+
"description": "Represents the KPI annotation path",
|
|
1794
|
+
"type": "string",
|
|
1795
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1796
|
+
},
|
|
1797
|
+
"selectionPresentationAnnotationPath": {
|
|
1798
|
+
"description": "Represents the selection presentation annotation path",
|
|
1799
|
+
"type": "string",
|
|
1800
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1801
|
+
},
|
|
1802
|
+
"dynamicSubtitleAnnotationPath": {
|
|
1803
|
+
"description": "Represents the dynamic subtitle annotation path",
|
|
1804
|
+
"type": "string",
|
|
1805
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
|
|
1806
|
+
},
|
|
1807
|
+
"ignoreSapText": {
|
|
1808
|
+
"description": "Represents the flag to indicate priority of number formatting over sap text",
|
|
1809
|
+
"type": "boolean",
|
|
1810
|
+
"default": false
|
|
1811
|
+
},
|
|
1812
|
+
"defaultSpan": {
|
|
1813
|
+
"$ref": "#/definitions/defaultSpanDef"
|
|
1814
|
+
},
|
|
1815
|
+
"requireAppAuthorization": {
|
|
1816
|
+
"description": "Represents the cards for which authorization is required",
|
|
1817
|
+
"type": "string"
|
|
1818
|
+
},
|
|
1819
|
+
"objectStreamCardsSettings": {
|
|
1820
|
+
"$ref": "#/definitions/objectStreamCardsSettingsDef"
|
|
1821
|
+
},
|
|
1822
|
+
"enableLocaleCurrencyFormatting": {
|
|
1823
|
+
"description": "Represents the flag to indicate the use of object number/smart field",
|
|
1824
|
+
"type": "boolean",
|
|
1825
|
+
"default": false
|
|
1826
|
+
},
|
|
1827
|
+
"navigation": {
|
|
1828
|
+
"description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards",
|
|
1829
|
+
"type": "string",
|
|
1830
|
+
"enum": [
|
|
1831
|
+
"dataPointNav",
|
|
1832
|
+
"chartNav",
|
|
1833
|
+
"headerNav",
|
|
1834
|
+
"noHeaderNav"
|
|
1835
|
+
]
|
|
1836
|
+
},
|
|
1837
|
+
"showFilterInHeader": {
|
|
1838
|
+
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application",
|
|
1839
|
+
"type": "boolean",
|
|
1840
|
+
"default": false
|
|
1841
|
+
},
|
|
1842
|
+
"showSortingInHeader": {
|
|
1843
|
+
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application",
|
|
1844
|
+
"type": "boolean",
|
|
1845
|
+
"default": false
|
|
1846
|
+
},
|
|
1847
|
+
"imageSupported": {
|
|
1848
|
+
"description": "Flag for enabling images in a condensed list card",
|
|
1849
|
+
"type": "boolean",
|
|
1850
|
+
"default": false
|
|
1851
|
+
},
|
|
1852
|
+
"showLineItemDetail": {
|
|
1853
|
+
"description": "Flag for show line item detail in list and table card",
|
|
1854
|
+
"type": "boolean",
|
|
1855
|
+
"default": false
|
|
1856
|
+
},
|
|
1857
|
+
"showLabelText": {
|
|
1858
|
+
"description": "This property is responsible for showing and hiding text labels on the geo spots",
|
|
1859
|
+
"type": "boolean",
|
|
1860
|
+
"default": false
|
|
1861
|
+
},
|
|
1862
|
+
"customParams": {
|
|
1863
|
+
"description": "This property is responsible for passing custom parameters present in the entity set to the navigating application",
|
|
1864
|
+
"type": "string",
|
|
1865
|
+
"pattern": "^[^\\W\\.\\-][\\w\\.\\-]*$"
|
|
1866
|
+
},
|
|
1867
|
+
"chartProperties": {
|
|
1868
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
1869
|
+
"type": "object",
|
|
1870
|
+
"additionalProperties": false,
|
|
1871
|
+
"properties": {
|
|
1872
|
+
"plotArea": {
|
|
1873
|
+
"$ref": "#/definitions/plotAreaDef"
|
|
1874
|
+
},
|
|
1875
|
+
"timeAxis": {
|
|
1876
|
+
"$ref": "#/definitions/timeAxisDef"
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1880
|
+
"colorPalette": {
|
|
1881
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
1882
|
+
"oneOf": [
|
|
1883
|
+
{
|
|
1884
|
+
"type": "array",
|
|
1885
|
+
"items": {
|
|
1886
|
+
"type": "object"
|
|
1887
|
+
}
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"type": "object"
|
|
1891
|
+
}
|
|
1892
|
+
]
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
},
|
|
1896
|
+
"resizableLayoutVariant": {
|
|
1897
|
+
"description": "Represents the resizable layout variant",
|
|
1898
|
+
"type": "object",
|
|
1899
|
+
"additionalProperties": false,
|
|
1900
|
+
"patternProperties": {
|
|
1901
|
+
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
1902
|
+
"$ref": "#/definitions/resizableLayoutVariantCardProperties"
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"card": {
|
|
1907
|
+
"description": "Represents the card attributes",
|
|
1908
|
+
"type": "object",
|
|
1909
|
+
"required": [
|
|
1910
|
+
"template"
|
|
1911
|
+
],
|
|
1912
|
+
"additionalProperties": false,
|
|
1913
|
+
"properties": {
|
|
1914
|
+
"sequencePos": {
|
|
1915
|
+
"description": "Represents the position of the card in the sequence",
|
|
1916
|
+
"type": "integer"
|
|
1917
|
+
},
|
|
1918
|
+
"model": {
|
|
1919
|
+
"description": "Represents the model for the card",
|
|
1920
|
+
"type": "string",
|
|
1921
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
|
|
1922
|
+
},
|
|
1923
|
+
"template": {
|
|
1924
|
+
"description": "Represents the card component path to use for this card",
|
|
1925
|
+
"type": "string",
|
|
1926
|
+
"pattern": "^[a-zA-Z0-9\\.]+$"
|
|
1927
|
+
},
|
|
1928
|
+
"settings": {
|
|
1929
|
+
"$ref": "#/definitions/card_setting"
|
|
1930
|
+
},
|
|
1931
|
+
"tabs": {
|
|
1932
|
+
"description": "Represents the card with view switch control",
|
|
1933
|
+
"type": "array",
|
|
1934
|
+
"minItems": 1,
|
|
1935
|
+
"items": {
|
|
1936
|
+
"$ref": "#/definitions/tab_setting"
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
}
|
|
1940
|
+
},
|
|
1941
|
+
"filterFieldName": {
|
|
1942
|
+
"type": "object",
|
|
1943
|
+
"description": "Represents the configuration object for each date filter field",
|
|
1944
|
+
"properties": {
|
|
1945
|
+
"defaultValue": {
|
|
1946
|
+
"type": "object",
|
|
1947
|
+
"description": "Represents the configuration for setting default value for the date filter field",
|
|
1948
|
+
"properties": {
|
|
1949
|
+
"operation": {
|
|
1950
|
+
"type": "string",
|
|
1951
|
+
"description": "Represents the default semantic date value to be set on the filter field"
|
|
1952
|
+
}
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"selectedValues": {
|
|
1956
|
+
"type": "string",
|
|
1957
|
+
"description": "Represents the semantic date values selected for the date filter field"
|
|
1958
|
+
},
|
|
1959
|
+
"customDateRangeImplementation": {
|
|
1960
|
+
"type": "string",
|
|
1961
|
+
"description": "Represents the custom implementation for semantic date filter field"
|
|
1962
|
+
},
|
|
1963
|
+
"exclude": {
|
|
1964
|
+
"type": "boolean",
|
|
1965
|
+
"description": "Flag to exclude values from the date picker",
|
|
1966
|
+
"default": false
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1970
|
+
"refreshStrategies_prop_def": {
|
|
1971
|
+
"type": "object",
|
|
1972
|
+
"additionalProperties": false,
|
|
1973
|
+
"properties": {
|
|
1974
|
+
"entitySets": {
|
|
1975
|
+
"description": "Represents the map of entity sets configured for refresh strategies",
|
|
1976
|
+
"type": "object"
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
"defaultLayoutType_def": {
|
|
1981
|
+
"type": "string"
|
|
1982
|
+
},
|
|
1983
|
+
"implementingComponent_def": {
|
|
1984
|
+
"oneOf": [
|
|
1985
|
+
{
|
|
1986
|
+
"type": "object",
|
|
1987
|
+
"additionalProperties": false,
|
|
1988
|
+
"required": [
|
|
1989
|
+
"componentName"
|
|
1990
|
+
],
|
|
1991
|
+
"properties": {
|
|
1992
|
+
"componentName": {
|
|
1993
|
+
"description": "Represents the name of the component to be loaded inside the canvas",
|
|
1994
|
+
"type": "string",
|
|
1995
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
1996
|
+
},
|
|
1997
|
+
"binding": {
|
|
1998
|
+
"$ref": "#/definitions/component_binding_def"
|
|
1999
|
+
},
|
|
2000
|
+
"settings": {
|
|
2001
|
+
"$ref": "#/definitions/component_setting_def"
|
|
2002
|
+
},
|
|
2003
|
+
"pages": {
|
|
2004
|
+
"$ref": "#/definitions/component_pages_def"
|
|
2005
|
+
}
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"type": "object",
|
|
2010
|
+
"additionalProperties": false,
|
|
2011
|
+
"required": [
|
|
2012
|
+
"componentUsage"
|
|
2013
|
+
],
|
|
2014
|
+
"properties": {
|
|
2015
|
+
"componentUsage": {
|
|
2016
|
+
"description": "Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages for the component to be loaded inside the canvas",
|
|
2017
|
+
"type": "string"
|
|
2018
|
+
},
|
|
2019
|
+
"binding": {
|
|
2020
|
+
"$ref": "#/definitions/component_binding_def"
|
|
2021
|
+
},
|
|
2022
|
+
"settings": {
|
|
2023
|
+
"$ref": "#/definitions/component_setting_def"
|
|
2024
|
+
},
|
|
2025
|
+
"pages": {
|
|
2026
|
+
"$ref": "#/definitions/component_pages_def"
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
]
|
|
2031
|
+
},
|
|
2032
|
+
"routingSpec_def": {
|
|
2033
|
+
"type": "object",
|
|
2034
|
+
"additionalProperties": false,
|
|
2035
|
+
"required": [
|
|
2036
|
+
"routeName"
|
|
2037
|
+
],
|
|
2038
|
+
"properties": {
|
|
2039
|
+
"routeName": {
|
|
2040
|
+
"description": "Represents the name of the route",
|
|
2041
|
+
"type": "string"
|
|
2042
|
+
},
|
|
2043
|
+
"noOData": {
|
|
2044
|
+
"description": "Represents the switch to indicate, that this route is not related to the OData service",
|
|
2045
|
+
"type": "boolean"
|
|
2046
|
+
},
|
|
2047
|
+
"binding": {
|
|
2048
|
+
"description": "Represents the binding string to indicate, how the page should be bound relative to the predecessor page or absolute",
|
|
2049
|
+
"type": "string"
|
|
2050
|
+
},
|
|
2051
|
+
"headerTitle": {
|
|
2052
|
+
"description": "Represents the the title to be shown on the page",
|
|
2053
|
+
"type": "string"
|
|
2054
|
+
},
|
|
2055
|
+
"typeImageUrl": {
|
|
2056
|
+
"description": "Represents the URL pointing to an icon, that will be shown in the navigation menu additional to the title to represent the page",
|
|
2057
|
+
"type": "string"
|
|
2058
|
+
},
|
|
2059
|
+
"noKey": {
|
|
2060
|
+
"description": "Represents the switch to indicate, whether this route is reached via a 1:1 navigation or a 1:n navigation",
|
|
2061
|
+
"type": "boolean"
|
|
2062
|
+
},
|
|
2063
|
+
"semanticKey": {
|
|
2064
|
+
"description": "Name of a semantic key field which can be used to identify an instance of this page. Only relevant if nKey is false.",
|
|
2065
|
+
"type": "string"
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
},
|
|
2069
|
+
"navigation_def": {
|
|
2070
|
+
"description": "Represents ...",
|
|
2071
|
+
"type": "object",
|
|
2072
|
+
"additionalProperties": false,
|
|
2073
|
+
"minProperties": 1,
|
|
2074
|
+
"properties": {
|
|
2075
|
+
"display": {
|
|
2076
|
+
"description": "Represents an action triggered by the user on UI: the navigation to display an object",
|
|
2077
|
+
"$ref": "#/definitions/action_prop_def"
|
|
2078
|
+
},
|
|
2079
|
+
"create": {
|
|
2080
|
+
"description": "Represents an action triggered by the user on UI: the navigation to create an object",
|
|
2081
|
+
"$ref": "#/definitions/action_prop_def"
|
|
2082
|
+
},
|
|
2083
|
+
"edit": {
|
|
2084
|
+
"description": "Represents an action triggered by the user on UI: the navigation to edit an object",
|
|
2085
|
+
"$ref": "#/definitions/action_prop_def"
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"component_def": {
|
|
2090
|
+
"type": "object",
|
|
2091
|
+
"additionalProperties": false,
|
|
2092
|
+
"required": [
|
|
2093
|
+
"name"
|
|
2094
|
+
],
|
|
2095
|
+
"properties": {
|
|
2096
|
+
"name": {
|
|
2097
|
+
"description": "The name of the component",
|
|
2098
|
+
"type": "string",
|
|
2099
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9]{0,39})(\\.[a-zA-Z][a-zA-Z0-9]{0,39})*$"
|
|
2100
|
+
},
|
|
2101
|
+
"list": {
|
|
2102
|
+
"description": "Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false",
|
|
2103
|
+
"type": "boolean"
|
|
2104
|
+
},
|
|
2105
|
+
"settings": {
|
|
2106
|
+
"$ref": "#/definitions/component_setting_def"
|
|
2107
|
+
}
|
|
2108
|
+
}
|
|
2109
|
+
},
|
|
2110
|
+
"component_pages_def": {
|
|
2111
|
+
"type": "object",
|
|
2112
|
+
"additionalProperties": false,
|
|
2113
|
+
"patternProperties": {
|
|
2114
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
2115
|
+
"$ref": "#/definitions/pages_map"
|
|
2116
|
+
}
|
|
2117
|
+
}
|
|
2118
|
+
},
|
|
2119
|
+
"component_binding_def": {
|
|
2120
|
+
"description": " Represents a binding string to indicate, how the reuse component should be bound relative to the containing page or absolute ",
|
|
2121
|
+
"type": "string"
|
|
2122
|
+
},
|
|
2123
|
+
"component_setting_def": {
|
|
2124
|
+
"description": "Represents the settings specific to one component",
|
|
2125
|
+
"type": "object"
|
|
2126
|
+
},
|
|
2127
|
+
"embeddedComponent": {
|
|
2128
|
+
"type": "object",
|
|
2129
|
+
"additionalProperties": false,
|
|
2130
|
+
"patternProperties": {
|
|
2131
|
+
"^[a-zA-Z0-9_.:-]+$": {
|
|
2132
|
+
"allOf": [
|
|
2133
|
+
{
|
|
2134
|
+
"type": "object",
|
|
2135
|
+
"required": [
|
|
2136
|
+
"id",
|
|
2137
|
+
"title"
|
|
2138
|
+
],
|
|
2139
|
+
"properties": {
|
|
2140
|
+
"id": {
|
|
2141
|
+
"description": "Represents an unique id for the instance of the reuse component inside of the object page",
|
|
2142
|
+
"type": "string",
|
|
2143
|
+
"pattern": "^([A-Za-z_][-A-Za-z0-9_.:]*)$"
|
|
2144
|
+
},
|
|
2145
|
+
"title": {
|
|
2146
|
+
"description": "Represents the title for the content of the reuse component",
|
|
2147
|
+
"type": "string",
|
|
2148
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
2149
|
+
},
|
|
2150
|
+
"binding": {
|
|
2151
|
+
"description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
|
|
2152
|
+
"type": "string"
|
|
2153
|
+
},
|
|
2154
|
+
"settings": {
|
|
2155
|
+
"description": "Represents a map to populate the API of the reuse component",
|
|
2156
|
+
"type": "object"
|
|
2157
|
+
},
|
|
2158
|
+
"hiddenByDefault": {
|
|
2159
|
+
"description": "Flag, whether the embedded component should be hidden by default",
|
|
2160
|
+
"type: ": "boolean"
|
|
2161
|
+
},
|
|
2162
|
+
"groupTitle": {
|
|
2163
|
+
"description": "Represents group title of reuse components",
|
|
2164
|
+
"type": "string"
|
|
2165
|
+
},
|
|
2166
|
+
"leadingSectionIdOrPath": {
|
|
2167
|
+
"description": "Represents a section that behaves a leading section for the group",
|
|
2168
|
+
"type": "string"
|
|
2169
|
+
}
|
|
2170
|
+
}
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"oneOf": [
|
|
2174
|
+
{
|
|
2175
|
+
"type": "object",
|
|
2176
|
+
"required": [
|
|
2177
|
+
"componentName"
|
|
2178
|
+
],
|
|
2179
|
+
"properties": {
|
|
2180
|
+
"componentName": {
|
|
2181
|
+
"description": "Represents the name of the reuse component ",
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9_]{0,39})(\\.[a-zA-Z][a-zA-Z0-9_]{0,39})*$"
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"type": "object",
|
|
2189
|
+
"required": [
|
|
2190
|
+
"componentUsage"
|
|
2191
|
+
],
|
|
2192
|
+
"properties": {
|
|
2193
|
+
"componentUsage": {
|
|
2194
|
+
"description": "Represents the reference to the name of the componentUsages defined in sap.ui5/componentUsages",
|
|
2195
|
+
"type": "string"
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"type": "object",
|
|
2201
|
+
"required": [
|
|
2202
|
+
"embeddedComponents"
|
|
2203
|
+
],
|
|
2204
|
+
"properties": {
|
|
2205
|
+
"embeddedComponents": {
|
|
2206
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
2207
|
+
}
|
|
2208
|
+
}
|
|
2209
|
+
}
|
|
2210
|
+
]
|
|
2211
|
+
}
|
|
2212
|
+
]
|
|
2213
|
+
}
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
"action_prop_def": {
|
|
2217
|
+
"type": "object",
|
|
2218
|
+
"additionalProperties": false,
|
|
2219
|
+
"required": [
|
|
2220
|
+
"path",
|
|
2221
|
+
"target"
|
|
2222
|
+
],
|
|
2223
|
+
"properties": {
|
|
2224
|
+
"path": {
|
|
2225
|
+
"description": "Represents the path in the manifest to the target to which the navigation is bound",
|
|
2226
|
+
"type": "string"
|
|
2227
|
+
},
|
|
2228
|
+
"target": {
|
|
2229
|
+
"description": "Represents the pointer to a semantic object",
|
|
2230
|
+
"type": "string"
|
|
2231
|
+
},
|
|
2232
|
+
"refreshStrategyOnAppRestore": {
|
|
2233
|
+
"description": "Represents the refresh strategies configured for external display navigation while coming back to the source app",
|
|
2234
|
+
"$ref": "#/definitions/refreshStrategies_prop_def"
|
|
2235
|
+
}
|
|
2236
|
+
}
|
|
2237
|
+
},
|
|
2238
|
+
"pages_map": {
|
|
2239
|
+
"type": "object",
|
|
2240
|
+
"additionalProperties": false,
|
|
2241
|
+
"required": [
|
|
2242
|
+
"component"
|
|
2243
|
+
],
|
|
2244
|
+
"properties": {
|
|
2245
|
+
"navigationProperty": {
|
|
2246
|
+
"description": "Represents the navigation property that leads to this page. The navigation links of the previous page (the page that calls this one) are determined through this property ",
|
|
2247
|
+
"type": "string"
|
|
2248
|
+
},
|
|
2249
|
+
"entitySet": {
|
|
2250
|
+
"description": "Represents the entity set that defines either the aggregation or the root object of the component",
|
|
2251
|
+
"type": "string"
|
|
2252
|
+
},
|
|
2253
|
+
"component": {
|
|
2254
|
+
"description": "Represents the component and its settings that makes the page",
|
|
2255
|
+
"$ref": "#/definitions/component_def"
|
|
2256
|
+
},
|
|
2257
|
+
"navigation": {
|
|
2258
|
+
"description": "Represents the different navigation targets",
|
|
2259
|
+
"$ref": "#/definitions/navigation_def"
|
|
2260
|
+
},
|
|
2261
|
+
"embeddedComponents": {
|
|
2262
|
+
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
2263
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
2264
|
+
},
|
|
2265
|
+
"routingSpec": {
|
|
2266
|
+
"description": "Represents the routing specification",
|
|
2267
|
+
"$ref": "#/definitions/routingSpec_def"
|
|
2268
|
+
},
|
|
2269
|
+
"implementingComponent": {
|
|
2270
|
+
"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",
|
|
2271
|
+
"$ref": "#/definitions/implementingComponent_def"
|
|
2272
|
+
},
|
|
2273
|
+
"defaultLayoutType": {
|
|
2274
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
2275
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2276
|
+
},
|
|
2277
|
+
"defaultLayoutTypeIfExternalNavigation": {
|
|
2278
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
2279
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2280
|
+
},
|
|
2281
|
+
"pages": {
|
|
2282
|
+
"type": "object",
|
|
2283
|
+
"additionalProperties": false,
|
|
2284
|
+
"patternProperties": {
|
|
2285
|
+
"^[a-zA-Z0-9_\\.\\-]+[\\|]?[a-zA-Z0-9_\\.\\-]+$": {
|
|
2286
|
+
"$ref": "#/definitions/pages_map"
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
}
|
|
2291
|
+
},
|
|
2292
|
+
"pages_array": {
|
|
2293
|
+
"type": "object",
|
|
2294
|
+
"additionalProperties": false,
|
|
2295
|
+
"required": [
|
|
2296
|
+
"component"
|
|
2297
|
+
],
|
|
2298
|
+
"properties": {
|
|
2299
|
+
"navigationProperty": {
|
|
2300
|
+
"description": "Represents the navigation property that leads to this page. The navigation links of the previous page (the page that calls this one) are determined through this property ",
|
|
2301
|
+
"type": "string"
|
|
2302
|
+
},
|
|
2303
|
+
"entitySet": {
|
|
2304
|
+
"description": "Represents the entity set that defines either the aggregation or the root object of the component",
|
|
2305
|
+
"type": "string"
|
|
2306
|
+
},
|
|
2307
|
+
"component": {
|
|
2308
|
+
"description": "Represents the component and its settings that makes the page",
|
|
2309
|
+
"$ref": "#/definitions/component_def"
|
|
2310
|
+
},
|
|
2311
|
+
"navigation": {
|
|
2312
|
+
"description": "Represents the different navigation targets",
|
|
2313
|
+
"$ref": "#/definitions/navigation_def"
|
|
2314
|
+
},
|
|
2315
|
+
"embeddedComponents": {
|
|
2316
|
+
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
2317
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
2318
|
+
},
|
|
2319
|
+
"routingSpec": {
|
|
2320
|
+
"description": "Represents the routing specification",
|
|
2321
|
+
"$ref": "#/definitions/routingSpec_def"
|
|
2322
|
+
},
|
|
2323
|
+
"implementingComponent": {
|
|
2324
|
+
"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",
|
|
2325
|
+
"$ref": "#/definitions/implementingComponent_def"
|
|
2326
|
+
},
|
|
2327
|
+
"defaultLayoutType": {
|
|
2328
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
|
|
2329
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2330
|
+
},
|
|
2331
|
+
"defaultLayoutTypeIfExternalNavigation": {
|
|
2332
|
+
"description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
|
|
2333
|
+
"$ref": "#/definitions/defaultLayoutType_def"
|
|
2334
|
+
},
|
|
2335
|
+
"pages": {
|
|
2336
|
+
"type": "array",
|
|
2337
|
+
"items": {
|
|
2338
|
+
"$ref": "#/definitions/pages_array"
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
}
|
|
2342
|
+
},
|
|
2343
|
+
"setting_def": {
|
|
2344
|
+
"description": "Represents global settings for the application controller",
|
|
2345
|
+
"type": "object"
|
|
2346
|
+
},
|
|
2347
|
+
"routeTargetObject": {
|
|
2348
|
+
"description": "Represents the definition of a target of a route as object.",
|
|
2349
|
+
"type": "object",
|
|
2350
|
+
"properties": {
|
|
2351
|
+
"name": {
|
|
2352
|
+
"description": "Represents the name of the routing target",
|
|
2353
|
+
"type": "string"
|
|
2354
|
+
},
|
|
2355
|
+
"prefix": {
|
|
2356
|
+
"description": "The prefix of the routing target",
|
|
2357
|
+
"type": "string"
|
|
2358
|
+
},
|
|
2359
|
+
"propagateTitle": {
|
|
2360
|
+
"description": "Indicates whether this 'Component' target should propagate it's title to this component or not",
|
|
2361
|
+
"type": "boolean",
|
|
2362
|
+
"default": "#/definitions/routing/config/propagateTitle"
|
|
2363
|
+
}
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2366
|
+
"routeWithoutName": {
|
|
2367
|
+
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
2368
|
+
"type": "object",
|
|
2369
|
+
"properties": {
|
|
2370
|
+
"pattern": {
|
|
2371
|
+
"description": "Represents the url pattern that the route is matched against",
|
|
2372
|
+
"type": "string"
|
|
2373
|
+
},
|
|
2374
|
+
"greedy": {
|
|
2375
|
+
"description": "Whether the route should be matched when another route is already matched",
|
|
2376
|
+
"type": "boolean"
|
|
2377
|
+
},
|
|
2378
|
+
"target": {
|
|
2379
|
+
"description": "Represents one or multiple names of targets which are displayed when the route is matched",
|
|
2380
|
+
"$ref": "#/definitions/routeTarget"
|
|
2381
|
+
},
|
|
2382
|
+
"titleTarget": {
|
|
2383
|
+
"description": "Represents the name of the target where the 'title' information should be taken",
|
|
2384
|
+
"type": "string"
|
|
2385
|
+
}
|
|
2386
|
+
}
|
|
2387
|
+
},
|
|
2388
|
+
"route": {
|
|
2389
|
+
"description": "Represents the definition of each route",
|
|
2390
|
+
"allOf": [
|
|
2391
|
+
{
|
|
2392
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"type": "object",
|
|
2396
|
+
"required": [
|
|
2397
|
+
"name"
|
|
2398
|
+
],
|
|
2399
|
+
"properties": {
|
|
2400
|
+
"name": {
|
|
2401
|
+
"description": "Represents the name of the route",
|
|
2402
|
+
"type": "string"
|
|
2403
|
+
}
|
|
2404
|
+
}
|
|
2405
|
+
}
|
|
2406
|
+
]
|
|
2407
|
+
},
|
|
2408
|
+
"target": {
|
|
2409
|
+
"description": "Represents the definition of each target",
|
|
2410
|
+
"type": "object",
|
|
2411
|
+
"properties": {
|
|
2412
|
+
"title": {
|
|
2413
|
+
"description": "Represents the information which is included as a parameter of the 'titleChanged' event fired on Router when this target is displayed. The title can be set with static text and can also be set with a valid property binding syntax which will be resolved under the scope of the view in the target where the title property is defined.",
|
|
2414
|
+
"type": "string"
|
|
2415
|
+
},
|
|
2416
|
+
"viewType": {
|
|
2417
|
+
"description": "Represents the type of view that is going to be created",
|
|
2418
|
+
"type": "string",
|
|
2419
|
+
"enum": [
|
|
2420
|
+
"XML",
|
|
2421
|
+
"JSON",
|
|
2422
|
+
"JS",
|
|
2423
|
+
"HTML",
|
|
2424
|
+
"Template"
|
|
2425
|
+
]
|
|
2426
|
+
},
|
|
2427
|
+
"targetParent": {
|
|
2428
|
+
"description": "Represents the id of the view that contains the control specified by the 'controlId'",
|
|
2429
|
+
"type": "string"
|
|
2430
|
+
},
|
|
2431
|
+
"controlId": {
|
|
2432
|
+
"description": "Represents the id of the control where you want to place the view created by the target",
|
|
2433
|
+
"type": "string"
|
|
2434
|
+
},
|
|
2435
|
+
"controlAggregation": {
|
|
2436
|
+
"description": "Represents the name of an aggregation of the controlId that contains the views",
|
|
2437
|
+
"type": "string"
|
|
2438
|
+
},
|
|
2439
|
+
"clearControlAggregation": {
|
|
2440
|
+
"description": "Whether the aggregation of the control should be cleared before adding the view",
|
|
2441
|
+
"type": "boolean"
|
|
2442
|
+
},
|
|
2443
|
+
"parent": {
|
|
2444
|
+
"description": "Represents the name of another target which will also be displayed once this target is displayed",
|
|
2445
|
+
"type": "string"
|
|
2446
|
+
},
|
|
2447
|
+
"viewLevel": {
|
|
2448
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
2449
|
+
"type": "number",
|
|
2450
|
+
"multipleOf": 1
|
|
2451
|
+
},
|
|
2452
|
+
"transition": {
|
|
2453
|
+
"description": "Represents the type of transition when navigating from previous view to this view",
|
|
2454
|
+
"anyOf": [
|
|
2455
|
+
{
|
|
2456
|
+
"type": "string",
|
|
2457
|
+
"default": "slide"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"type": "string",
|
|
2461
|
+
"enum": [
|
|
2462
|
+
"slide",
|
|
2463
|
+
"flip",
|
|
2464
|
+
"fade",
|
|
2465
|
+
"show"
|
|
2466
|
+
]
|
|
2467
|
+
}
|
|
2468
|
+
]
|
|
2469
|
+
},
|
|
2470
|
+
"transitionParameters": {
|
|
2471
|
+
"description": "Represents the transition parameters that are passed to the event handlers",
|
|
2472
|
+
"type": "object"
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
},
|
|
2476
|
+
"routeTarget": {
|
|
2477
|
+
"description": "Represents the definition of a target of a route.",
|
|
2478
|
+
"oneOf": [
|
|
2479
|
+
{
|
|
2480
|
+
"type": "array",
|
|
2481
|
+
"items": [
|
|
2482
|
+
{
|
|
2483
|
+
"oneOf": [
|
|
2484
|
+
{
|
|
2485
|
+
"type": "string"
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
"$ref": "#/definitions/routeTargetObject"
|
|
2489
|
+
}
|
|
2490
|
+
]
|
|
2491
|
+
}
|
|
2492
|
+
]
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"type": "string"
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"$ref": "#/definitions/routeTargetObject"
|
|
2499
|
+
}
|
|
2500
|
+
]
|
|
2501
|
+
},
|
|
2502
|
+
"enhanceWithSetting_0": {
|
|
2503
|
+
"oneOf": [
|
|
2504
|
+
{
|
|
2505
|
+
"additionalProperties": false,
|
|
2506
|
+
"required": [
|
|
2507
|
+
"bundleUrl"
|
|
2508
|
+
],
|
|
2509
|
+
"properties": {
|
|
2510
|
+
"bundleUrl": {
|
|
2511
|
+
"description": "Represents property url for model enhancement",
|
|
2512
|
+
"type": "string"
|
|
2513
|
+
},
|
|
2514
|
+
"bundleUrlRelativeTo": {
|
|
2515
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2516
|
+
"type": "string",
|
|
2517
|
+
"default": "component",
|
|
2518
|
+
"enum": [
|
|
2519
|
+
"manifest",
|
|
2520
|
+
"component"
|
|
2521
|
+
]
|
|
2522
|
+
},
|
|
2523
|
+
"fallbackLocale": {
|
|
2524
|
+
"description": "Represents the fallback locale",
|
|
2525
|
+
"type": "string"
|
|
2526
|
+
},
|
|
2527
|
+
"supportedLocales": {
|
|
2528
|
+
"description": "Represents the list of supported locales",
|
|
2529
|
+
"type": "array"
|
|
2530
|
+
},
|
|
2531
|
+
"terminologies": {
|
|
2532
|
+
"description": "Represents terminologies with additional properties files",
|
|
2533
|
+
"type": "object",
|
|
2534
|
+
"patternProperties": {
|
|
2535
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2536
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2537
|
+
}
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"required": [
|
|
2544
|
+
"bundleName"
|
|
2545
|
+
],
|
|
2546
|
+
"additionalProperties": false,
|
|
2547
|
+
"properties": {
|
|
2548
|
+
"bundleName": {
|
|
2549
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2550
|
+
"type": "string"
|
|
2551
|
+
},
|
|
2552
|
+
"supportedLocales": {
|
|
2553
|
+
"description": "Represents the list of supported locales",
|
|
2554
|
+
"type": "array"
|
|
2555
|
+
},
|
|
2556
|
+
"fallbackLocale": {
|
|
2557
|
+
"description": "Represents the fallback locale",
|
|
2558
|
+
"type": "string"
|
|
2559
|
+
},
|
|
2560
|
+
"terminologies": {
|
|
2561
|
+
"description": "Represents terminologies with additional properties files",
|
|
2562
|
+
"type": "object",
|
|
2563
|
+
"patternProperties": {
|
|
2564
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2565
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2566
|
+
}
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
]
|
|
2572
|
+
},
|
|
2573
|
+
"terminologySetting": {
|
|
2574
|
+
"oneOf": [
|
|
2575
|
+
{
|
|
2576
|
+
"additionalProperties": false,
|
|
2577
|
+
"required": [
|
|
2578
|
+
"bundleName"
|
|
2579
|
+
],
|
|
2580
|
+
"properties": {
|
|
2581
|
+
"bundleName": {
|
|
2582
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2583
|
+
"type": "string"
|
|
2584
|
+
},
|
|
2585
|
+
"supportedLocales": {
|
|
2586
|
+
"description": "Represents the list of supported locales",
|
|
2587
|
+
"type": "array"
|
|
2588
|
+
}
|
|
2589
|
+
}
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"additionalProperties": false,
|
|
2593
|
+
"required": [
|
|
2594
|
+
"bundleUrl"
|
|
2595
|
+
],
|
|
2596
|
+
"properties": {
|
|
2597
|
+
"bundleUrl": {
|
|
2598
|
+
"description": "Represents the URL for the resource bundle",
|
|
2599
|
+
"type": "string"
|
|
2600
|
+
},
|
|
2601
|
+
"bundleUrlRelativeTo": {
|
|
2602
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2603
|
+
"type": "string",
|
|
2604
|
+
"default": "component",
|
|
2605
|
+
"enum": [
|
|
2606
|
+
"manifest",
|
|
2607
|
+
"component"
|
|
2608
|
+
]
|
|
2609
|
+
},
|
|
2610
|
+
"supportedLocales": {
|
|
2611
|
+
"description": "Represents the list of supported locales",
|
|
2612
|
+
"type": "array"
|
|
2613
|
+
}
|
|
2614
|
+
}
|
|
2615
|
+
}
|
|
2616
|
+
]
|
|
2617
|
+
},
|
|
2618
|
+
"ui5setting": {
|
|
2619
|
+
"type": "object",
|
|
2620
|
+
"additionalProperties": true,
|
|
2621
|
+
"properties": {
|
|
2622
|
+
"defaultBindingMode": {
|
|
2623
|
+
"description": "Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay",
|
|
2624
|
+
"type": "string",
|
|
2625
|
+
"default": "Default",
|
|
2626
|
+
"enum": [
|
|
2627
|
+
"Default",
|
|
2628
|
+
"OneTime",
|
|
2629
|
+
"OneWay",
|
|
2630
|
+
"TwoWay"
|
|
2631
|
+
]
|
|
2632
|
+
},
|
|
2633
|
+
"bundleName": {
|
|
2634
|
+
"description": "Represents the alternative for bundleUrl",
|
|
2635
|
+
"type": "string"
|
|
2636
|
+
},
|
|
2637
|
+
"bundleUrl": {
|
|
2638
|
+
"description": "Represents the URL for the resource bundle",
|
|
2639
|
+
"type": "string"
|
|
2640
|
+
},
|
|
2641
|
+
"bundleUrlRelativeTo": {
|
|
2642
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
2643
|
+
"type": "string",
|
|
2644
|
+
"default": "component",
|
|
2645
|
+
"enum": [
|
|
2646
|
+
"manifest",
|
|
2647
|
+
"component"
|
|
2648
|
+
]
|
|
2649
|
+
},
|
|
2650
|
+
"fallbackLocale": {
|
|
2651
|
+
"description": "Represents the fallback locale",
|
|
2652
|
+
"type": "string"
|
|
2653
|
+
},
|
|
2654
|
+
"supportedLocales": {
|
|
2655
|
+
"description": "Represents the list of supported locales",
|
|
2656
|
+
"type": "array"
|
|
2657
|
+
},
|
|
2658
|
+
"terminologies": {
|
|
2659
|
+
"description": "Represents terminologies with additional properties files",
|
|
2660
|
+
"type": "object",
|
|
2661
|
+
"additionalProperties": true,
|
|
2662
|
+
"patternProperties": {
|
|
2663
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
2664
|
+
"$ref": "#/definitions/terminologySetting"
|
|
2665
|
+
}
|
|
2666
|
+
}
|
|
2667
|
+
},
|
|
2668
|
+
"enhanceWith": {
|
|
2669
|
+
"description": "Represents enhancement of UI5 resource model with additional properties files",
|
|
2670
|
+
"type": "array",
|
|
2671
|
+
"items": {
|
|
2672
|
+
"type": "object",
|
|
2673
|
+
"$ref": "#/definitions/enhanceWithSetting"
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
}
|
|
2677
|
+
},
|
|
2678
|
+
"rootView_def_flexEnabled": {
|
|
2679
|
+
"description": "Represents the root view definition when flex is enabled (requires a view id)",
|
|
2680
|
+
"type": "object",
|
|
2681
|
+
"required": [
|
|
2682
|
+
"id",
|
|
2683
|
+
"viewName"
|
|
2684
|
+
],
|
|
2685
|
+
"additionalProperties": true,
|
|
2686
|
+
"properties": {
|
|
2687
|
+
"viewName": {
|
|
2688
|
+
"description": "Represents the name of the view",
|
|
2689
|
+
"type": "string"
|
|
2690
|
+
},
|
|
2691
|
+
"type": {
|
|
2692
|
+
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
2693
|
+
"type": "string",
|
|
2694
|
+
"enum": [
|
|
2695
|
+
"XML",
|
|
2696
|
+
"JSON",
|
|
2697
|
+
"JS",
|
|
2698
|
+
"HTML",
|
|
2699
|
+
"Template"
|
|
2700
|
+
]
|
|
2701
|
+
},
|
|
2702
|
+
"id": {
|
|
2703
|
+
"description": "Represents the id of the view",
|
|
2704
|
+
"type": "string"
|
|
2705
|
+
},
|
|
2706
|
+
"async": {
|
|
2707
|
+
"description": "Configure the targets for asynchronous loading",
|
|
2708
|
+
"type": "boolean",
|
|
2709
|
+
"default": false
|
|
2710
|
+
}
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2713
|
+
"routing_flexEnabled": {
|
|
2714
|
+
"description": "Represents the configuration of routing",
|
|
2715
|
+
"type": "object",
|
|
2716
|
+
"properties": {
|
|
2717
|
+
"config": {
|
|
2718
|
+
"description": "Represents the default properties defined for route and target",
|
|
2719
|
+
"allOf": [
|
|
2720
|
+
{
|
|
2721
|
+
"type": "object",
|
|
2722
|
+
"properties": {
|
|
2723
|
+
"routerClass": {
|
|
2724
|
+
"description": "Represents the router class",
|
|
2725
|
+
"type": "string"
|
|
2726
|
+
},
|
|
2727
|
+
"async": {
|
|
2728
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
2729
|
+
"type": "boolean",
|
|
2730
|
+
"default": false
|
|
2731
|
+
},
|
|
2732
|
+
"bypassed": {
|
|
2733
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
2734
|
+
"type": "object",
|
|
2735
|
+
"additionalProperties": false,
|
|
2736
|
+
"required": [
|
|
2737
|
+
"target"
|
|
2738
|
+
],
|
|
2739
|
+
"properties": {
|
|
2740
|
+
"target": {
|
|
2741
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
2742
|
+
"$ref": "#/definitions/routeTarget"
|
|
2743
|
+
}
|
|
2744
|
+
}
|
|
2745
|
+
},
|
|
2746
|
+
"viewPath": {
|
|
2747
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2748
|
+
"type": "string"
|
|
2749
|
+
}
|
|
2750
|
+
}
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
"$ref": "#/definitions/target"
|
|
2754
|
+
}
|
|
2755
|
+
]
|
|
2756
|
+
},
|
|
2757
|
+
"routes": {
|
|
2758
|
+
"oneOf": [
|
|
2759
|
+
{
|
|
2760
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
2761
|
+
"type": "array",
|
|
2762
|
+
"items": {
|
|
2763
|
+
"$ref": "#/definitions/route"
|
|
2764
|
+
}
|
|
2765
|
+
},
|
|
2766
|
+
{
|
|
2767
|
+
"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",
|
|
2768
|
+
"type": "object",
|
|
2769
|
+
"patternProperties": {
|
|
2770
|
+
"[\\s\\S]*": {
|
|
2771
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
2772
|
+
}
|
|
2773
|
+
}
|
|
2774
|
+
}
|
|
2775
|
+
]
|
|
2776
|
+
},
|
|
2777
|
+
"targets": {
|
|
2778
|
+
"description": "Represents the definition of targets",
|
|
2779
|
+
"type": "object",
|
|
2780
|
+
"patternProperties": {
|
|
2781
|
+
"[\\s\\S]*": {
|
|
2782
|
+
"oneOf": [
|
|
2783
|
+
{
|
|
2784
|
+
"allOf": [
|
|
2785
|
+
{
|
|
2786
|
+
"$ref": "#/definitions/target"
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"type": "object",
|
|
2790
|
+
"required": [
|
|
2791
|
+
"viewName",
|
|
2792
|
+
"viewId"
|
|
2793
|
+
],
|
|
2794
|
+
"properties": {
|
|
2795
|
+
"viewName": {
|
|
2796
|
+
"description": "Represents the name of a view that will be created",
|
|
2797
|
+
"type": "string"
|
|
2798
|
+
},
|
|
2799
|
+
"viewId": {
|
|
2800
|
+
"description": "Represents the id of the created view",
|
|
2801
|
+
"type": "string"
|
|
2802
|
+
},
|
|
2803
|
+
"viewPath": {
|
|
2804
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2805
|
+
"type": "string"
|
|
2806
|
+
}
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
]
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"allOf": [
|
|
2813
|
+
{
|
|
2814
|
+
"$ref": "#/definitions/target"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"oneOf": [
|
|
2818
|
+
{
|
|
2819
|
+
"type": "object",
|
|
2820
|
+
"required": [
|
|
2821
|
+
"name",
|
|
2822
|
+
"id"
|
|
2823
|
+
],
|
|
2824
|
+
"properties": {
|
|
2825
|
+
"name": {
|
|
2826
|
+
"description": "Represents the name of a view or component that will be created",
|
|
2827
|
+
"type": "string"
|
|
2828
|
+
},
|
|
2829
|
+
"id": {
|
|
2830
|
+
"description": "Represents the id of the created view or component",
|
|
2831
|
+
"type": "string"
|
|
2832
|
+
},
|
|
2833
|
+
"path": {
|
|
2834
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
2835
|
+
"type": "string"
|
|
2836
|
+
},
|
|
2837
|
+
"type": {
|
|
2838
|
+
"description": "Represents the type of the type View or Component",
|
|
2839
|
+
"type": "string",
|
|
2840
|
+
"enum": [
|
|
2841
|
+
"View",
|
|
2842
|
+
"Component"
|
|
2843
|
+
]
|
|
2844
|
+
}
|
|
2845
|
+
}
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"type": "object",
|
|
2849
|
+
"required": [
|
|
2850
|
+
"usage",
|
|
2851
|
+
"id",
|
|
2852
|
+
"type"
|
|
2853
|
+
],
|
|
2854
|
+
"properties": {
|
|
2855
|
+
"usage": {
|
|
2856
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
2857
|
+
"type": "string"
|
|
2858
|
+
},
|
|
2859
|
+
"id": {
|
|
2860
|
+
"description": "Represents the id of the created view or component",
|
|
2861
|
+
"type": "string"
|
|
2862
|
+
},
|
|
2863
|
+
"type": {
|
|
2864
|
+
"description": "Represents the type of the type Component",
|
|
2865
|
+
"type": "string",
|
|
2866
|
+
"enum": [
|
|
2867
|
+
"Component"
|
|
2868
|
+
]
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
}
|
|
2872
|
+
]
|
|
2873
|
+
}
|
|
2874
|
+
]
|
|
2875
|
+
}
|
|
2876
|
+
]
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
}
|
|
2880
|
+
}
|
|
2881
|
+
},
|
|
2882
|
+
"rootView_def": {
|
|
2883
|
+
"description": "Represents the root view definition being either the name of the view or the view definition object",
|
|
2884
|
+
"oneOf": [
|
|
2885
|
+
{
|
|
2886
|
+
"type": "string"
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
"type": "object",
|
|
2890
|
+
"required": [
|
|
2891
|
+
"viewName"
|
|
2892
|
+
],
|
|
2893
|
+
"additionalProperties": true,
|
|
2894
|
+
"properties": {
|
|
2895
|
+
"viewName": {
|
|
2896
|
+
"description": "Represents the name of the view",
|
|
2897
|
+
"type": "string"
|
|
2898
|
+
},
|
|
2899
|
+
"type": {
|
|
2900
|
+
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
2901
|
+
"type": "string",
|
|
2902
|
+
"enum": [
|
|
2903
|
+
"XML",
|
|
2904
|
+
"JSON",
|
|
2905
|
+
"JS",
|
|
2906
|
+
"HTML",
|
|
2907
|
+
"Template"
|
|
2908
|
+
]
|
|
2909
|
+
},
|
|
2910
|
+
"id": {
|
|
2911
|
+
"description": "Represents the id of the view",
|
|
2912
|
+
"type": "string"
|
|
2913
|
+
}
|
|
2914
|
+
}
|
|
2915
|
+
}
|
|
2916
|
+
]
|
|
2917
|
+
},
|
|
2918
|
+
"routing": {
|
|
2919
|
+
"description": "Represents the configuration of routing",
|
|
2920
|
+
"type": "object",
|
|
2921
|
+
"properties": {
|
|
2922
|
+
"config": {
|
|
2923
|
+
"description": "Represents the default properties defined for route and target",
|
|
2924
|
+
"allOf": [
|
|
2925
|
+
{
|
|
2926
|
+
"type": "object",
|
|
2927
|
+
"properties": {
|
|
2928
|
+
"routerClass": {
|
|
2929
|
+
"description": "Represents the router class",
|
|
2930
|
+
"type": "string"
|
|
2931
|
+
},
|
|
2932
|
+
"async": {
|
|
2933
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
2934
|
+
"type": "boolean",
|
|
2935
|
+
"default": false
|
|
2936
|
+
},
|
|
2937
|
+
"propagateTitle": {
|
|
2938
|
+
"description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
|
|
2939
|
+
"type": "boolean",
|
|
2940
|
+
"default": false
|
|
2941
|
+
},
|
|
2942
|
+
"bypassed": {
|
|
2943
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
2944
|
+
"type": "object",
|
|
2945
|
+
"additionalProperties": false,
|
|
2946
|
+
"required": [
|
|
2947
|
+
"target"
|
|
2948
|
+
],
|
|
2949
|
+
"properties": {
|
|
2950
|
+
"target": {
|
|
2951
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
2952
|
+
"$ref": "#/definitions/routeTarget"
|
|
2953
|
+
}
|
|
2954
|
+
}
|
|
2955
|
+
},
|
|
2956
|
+
"viewPath": {
|
|
2957
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2958
|
+
"type": "string"
|
|
2959
|
+
}
|
|
2960
|
+
}
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"$ref": "#/definitions/target"
|
|
2964
|
+
}
|
|
2965
|
+
]
|
|
2966
|
+
},
|
|
2967
|
+
"routes": {
|
|
2968
|
+
"oneOf": [
|
|
2969
|
+
{
|
|
2970
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
2971
|
+
"type": "array",
|
|
2972
|
+
"items": {
|
|
2973
|
+
"$ref": "#/definitions/route"
|
|
2974
|
+
}
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"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",
|
|
2978
|
+
"type": "object",
|
|
2979
|
+
"patternProperties": {
|
|
2980
|
+
"[\\s\\S]*": {
|
|
2981
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
}
|
|
2985
|
+
]
|
|
2986
|
+
},
|
|
2987
|
+
"targets": {
|
|
2988
|
+
"description": "Represents the definition of targets",
|
|
2989
|
+
"type": "object",
|
|
2990
|
+
"patternProperties": {
|
|
2991
|
+
"[\\s\\S]*": {
|
|
2992
|
+
"oneOf": [
|
|
2993
|
+
{
|
|
2994
|
+
"allOf": [
|
|
2995
|
+
{
|
|
2996
|
+
"$ref": "#/definitions/target"
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
"type": "object",
|
|
3000
|
+
"required": [
|
|
3001
|
+
"viewName"
|
|
3002
|
+
],
|
|
3003
|
+
"properties": {
|
|
3004
|
+
"viewName": {
|
|
3005
|
+
"description": "Represents the name of a view that will be created",
|
|
3006
|
+
"type": "string"
|
|
3007
|
+
},
|
|
3008
|
+
"viewId": {
|
|
3009
|
+
"description": "Represents the id of the created view",
|
|
3010
|
+
"type": "string"
|
|
3011
|
+
},
|
|
3012
|
+
"viewPath": {
|
|
3013
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
3014
|
+
"type": "string"
|
|
3015
|
+
}
|
|
3016
|
+
}
|
|
3017
|
+
}
|
|
3018
|
+
]
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
"allOf": [
|
|
3022
|
+
{
|
|
3023
|
+
"$ref": "#/definitions/target"
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
"oneOf": [
|
|
3027
|
+
{
|
|
3028
|
+
"type": "object",
|
|
3029
|
+
"required": [
|
|
3030
|
+
"name"
|
|
3031
|
+
],
|
|
3032
|
+
"properties": {
|
|
3033
|
+
"name": {
|
|
3034
|
+
"description": "Represents the name of a view or component that will be created",
|
|
3035
|
+
"type": "string"
|
|
3036
|
+
},
|
|
3037
|
+
"id": {
|
|
3038
|
+
"description": "Represents the id of the created view or component",
|
|
3039
|
+
"type": "string"
|
|
3040
|
+
},
|
|
3041
|
+
"path": {
|
|
3042
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
3043
|
+
"type": "string"
|
|
3044
|
+
},
|
|
3045
|
+
"type": {
|
|
3046
|
+
"description": "Represents the type of the type View or Component",
|
|
3047
|
+
"type": "string",
|
|
3048
|
+
"enum": [
|
|
3049
|
+
"View",
|
|
3050
|
+
"Component"
|
|
3051
|
+
]
|
|
3052
|
+
}
|
|
3053
|
+
}
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
"type": "object",
|
|
3057
|
+
"required": [
|
|
3058
|
+
"usage",
|
|
3059
|
+
"type"
|
|
3060
|
+
],
|
|
3061
|
+
"properties": {
|
|
3062
|
+
"usage": {
|
|
3063
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
3064
|
+
"type": "string"
|
|
3065
|
+
},
|
|
3066
|
+
"id": {
|
|
3067
|
+
"description": "Represents the id of the created view or component",
|
|
3068
|
+
"type": "string"
|
|
3069
|
+
},
|
|
3070
|
+
"type": {
|
|
3071
|
+
"description": "Represents the type of the type Component",
|
|
3072
|
+
"type": "string",
|
|
3073
|
+
"enum": [
|
|
3074
|
+
"Component"
|
|
3075
|
+
]
|
|
3076
|
+
}
|
|
3077
|
+
}
|
|
3078
|
+
}
|
|
3079
|
+
]
|
|
3080
|
+
}
|
|
3081
|
+
]
|
|
3082
|
+
}
|
|
3083
|
+
]
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
}
|
|
3088
|
+
},
|
|
3089
|
+
"command": {
|
|
3090
|
+
"description": "Represents a UI5 shortcut command.",
|
|
3091
|
+
"additionalProperties": false,
|
|
3092
|
+
"type": "object",
|
|
3093
|
+
"properties": {
|
|
3094
|
+
"shortcut": {
|
|
3095
|
+
"description": "A string describing a shortcut key combination that, when used by the user, will trigger the command.",
|
|
3096
|
+
"type": "string",
|
|
3097
|
+
"patternTransformCode": "''.split('').map(function(char) { console.log(char); if (/[a-z]/i.test(char)) { return `[${char.toUpperCase()}${char.toLowerCase()}]`; } else { return char; } } ).join('')",
|
|
3098
|
+
"patternFromRuntime": "^((Ctrl|Shift|Alt)(\\+)?){0,3}([A-Za-z0-9\\.,\\-\\*\\/=]|Plus|Tab|Space|Enter|Backspace|Home|Delete|End|Pageup|Pagedown|Escape|ArrowUp|ArrowDown|ArrowLeft|ArrowRight|F[1-9]|F1[0-2])$",
|
|
3099
|
+
"pattern": "^(([Cc][Tt][Rr][Ll]|[Ss][Hh][Ii][Ff][Tt]|[Aa][Ll][Tt])(\\+)?){0,3}([A-Za-z0-9\\.,\\-\\*\\/=]|[Pp][Ll][Uu][Ss]|[Tt][Aa][Bb]|[Ss][Pp][Aa][Cc][Ee]|[Ee][Nn][Tt][Ee][Rr]|[Bb][Aa][Cc][Kk][Ss][Pp][Aa][Cc][Ee]|[Hh][Oo][Mm][Ee]|[Dd][Ee][Ll][Ee][Tt][Ee]|[Ee][Nn][Dd]|[Pp][Aa][Gg][Ee][Uu][Pp]|[Pp][Aa][Gg][Ee][Dd][Oo][Ww][Nn]|[Ee][Ss][Cc][Aa][Pp][Ee]|[Aa][Rr][Rr][Oo][Ww][Uu][Pp]|[Aa][Rr][Rr][Oo][Ww][Dd][Oo][Ww][Nn]|[Aa][Rr][Rr][Oo][Ww][Ll][Ee][Ff][Tt]|[Aa][Rr][Rr][Oo][Ww][Rr][Ii][Gg][Hh][Tt]|F[1-9]|F1[0-2])$"
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
3103
|
+
"service": {
|
|
3104
|
+
"description": "Represents the definition of each service",
|
|
3105
|
+
"type": "object",
|
|
3106
|
+
"required": [
|
|
3107
|
+
"factoryName"
|
|
3108
|
+
],
|
|
3109
|
+
"additionalProperties": true,
|
|
3110
|
+
"properties": {
|
|
3111
|
+
"factoryName": {
|
|
3112
|
+
"description": "Represents the name of the service factory ",
|
|
3113
|
+
"type": "string",
|
|
3114
|
+
"pattern": "^([a-z_$][a-z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
3115
|
+
},
|
|
3116
|
+
"optional": {
|
|
3117
|
+
"description": "Indicates whether the service optional or not ",
|
|
3118
|
+
"type": "boolean",
|
|
3119
|
+
"default": false
|
|
3120
|
+
}
|
|
3121
|
+
}
|
|
3122
|
+
},
|
|
3123
|
+
"version": {
|
|
3124
|
+
"type": "string"
|
|
3125
|
+
},
|
|
3126
|
+
"id_def_0": {
|
|
3127
|
+
"type": "string"
|
|
3128
|
+
},
|
|
3129
|
+
"config": {
|
|
3130
|
+
"oneOf": [
|
|
3131
|
+
{
|
|
3132
|
+
"type": "array",
|
|
3133
|
+
"items": {
|
|
3134
|
+
"$ref": "#/definitions/config"
|
|
3135
|
+
}
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
"type": "string"
|
|
3139
|
+
},
|
|
3140
|
+
{
|
|
3141
|
+
"type": "boolean"
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"type": "number"
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"type": "object"
|
|
3148
|
+
}
|
|
3149
|
+
]
|
|
3150
|
+
},
|
|
3151
|
+
"resourceRoot": {
|
|
3152
|
+
"type": "string",
|
|
3153
|
+
"pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
|
|
3154
|
+
},
|
|
3155
|
+
"model": {
|
|
3156
|
+
"description": "Represents sapui5 model name",
|
|
3157
|
+
"type": "object",
|
|
3158
|
+
"additionalProperties": false,
|
|
3159
|
+
"properties": {
|
|
3160
|
+
"type": {
|
|
3161
|
+
"description": "Represents model class name",
|
|
3162
|
+
"type": "string"
|
|
3163
|
+
},
|
|
3164
|
+
"dataSource": {
|
|
3165
|
+
"description": "Represents string of key/alias from sap.app dataSources to reference an existing data source",
|
|
3166
|
+
"type": "string"
|
|
3167
|
+
},
|
|
3168
|
+
"uri": {
|
|
3169
|
+
"description": "Represents URI for the model",
|
|
3170
|
+
"type": "string"
|
|
3171
|
+
},
|
|
3172
|
+
"preload": {
|
|
3173
|
+
"description": "Indicates that the model will be immediately created after the manifest is loaded by Component Factory and before the Component instance is created",
|
|
3174
|
+
"type": "boolean",
|
|
3175
|
+
"default": false
|
|
3176
|
+
},
|
|
3177
|
+
"settings": {
|
|
3178
|
+
"$ref": "#/definitions/ui5setting"
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
3181
|
+
},
|
|
3182
|
+
"component": {
|
|
3183
|
+
"description": "Represents sapui5 component name",
|
|
3184
|
+
"type": "object",
|
|
3185
|
+
"properties": {
|
|
3186
|
+
"minVersion": {
|
|
3187
|
+
"description": "Represents minimal version of ui5 component",
|
|
3188
|
+
"$ref": "#/definitions/version"
|
|
3189
|
+
},
|
|
3190
|
+
"lazy": {
|
|
3191
|
+
"description": "Represents Indicator to lazy loading component",
|
|
3192
|
+
"type": "boolean",
|
|
3193
|
+
"default": false
|
|
3194
|
+
}
|
|
3195
|
+
}
|
|
3196
|
+
},
|
|
3197
|
+
"lib": {
|
|
3198
|
+
"description": "Represents sapui5 library name",
|
|
3199
|
+
"type": "object",
|
|
3200
|
+
"properties": {
|
|
3201
|
+
"minVersion": {
|
|
3202
|
+
"description": "Represents minimal version of ui5 library",
|
|
3203
|
+
"$ref": "#/definitions/version"
|
|
3204
|
+
},
|
|
3205
|
+
"lazy": {
|
|
3206
|
+
"description": "Represents Indicator to lazy loading lib",
|
|
3207
|
+
"type": "boolean",
|
|
3208
|
+
"default": false
|
|
3209
|
+
}
|
|
3210
|
+
}
|
|
3211
|
+
},
|
|
3212
|
+
"componentUsages": {
|
|
3213
|
+
"description": "Represents component name for usage",
|
|
3214
|
+
"type": "object",
|
|
3215
|
+
"required": [
|
|
3216
|
+
"name"
|
|
3217
|
+
],
|
|
3218
|
+
"additionalProperties": false,
|
|
3219
|
+
"properties": {
|
|
3220
|
+
"name": {
|
|
3221
|
+
"description": "Represents name of reuse component",
|
|
3222
|
+
"type": "string",
|
|
3223
|
+
"pattern": "^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
3224
|
+
},
|
|
3225
|
+
"componentData": {
|
|
3226
|
+
"description": "Represents component data for the Component",
|
|
3227
|
+
"$ref": "#/definitions/config"
|
|
3228
|
+
},
|
|
3229
|
+
"settings": {
|
|
3230
|
+
"description": "Represents settings for the Component",
|
|
3231
|
+
"$ref": "#/definitions/config"
|
|
3232
|
+
},
|
|
3233
|
+
"lazy": {
|
|
3234
|
+
"description": "Represents Indicator to lazy loading component usage, default true",
|
|
3235
|
+
"type": "boolean",
|
|
3236
|
+
"default": true
|
|
3237
|
+
}
|
|
3238
|
+
}
|
|
3239
|
+
},
|
|
3240
|
+
"resource": {
|
|
3241
|
+
"type": "object",
|
|
3242
|
+
"properties": {
|
|
3243
|
+
"js": {
|
|
3244
|
+
"type": "array",
|
|
3245
|
+
"items": {
|
|
3246
|
+
"type": "object",
|
|
3247
|
+
"required": [
|
|
3248
|
+
"uri"
|
|
3249
|
+
],
|
|
3250
|
+
"properties": {
|
|
3251
|
+
"uri": {
|
|
3252
|
+
"type": "string"
|
|
3253
|
+
}
|
|
3254
|
+
}
|
|
3255
|
+
}
|
|
3256
|
+
},
|
|
3257
|
+
"css": {
|
|
3258
|
+
"type": "array",
|
|
3259
|
+
"items": {
|
|
3260
|
+
"type": "object",
|
|
3261
|
+
"required": [
|
|
3262
|
+
"uri"
|
|
3263
|
+
],
|
|
3264
|
+
"properties": {
|
|
3265
|
+
"uri": {
|
|
3266
|
+
"type": "string"
|
|
3267
|
+
},
|
|
3268
|
+
"id": {
|
|
3269
|
+
"type": "string"
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3272
|
+
}
|
|
3273
|
+
}
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
"deviceType": {
|
|
3277
|
+
"type": "object",
|
|
3278
|
+
"description": "Represents device types on which the app is running",
|
|
3279
|
+
"additionalProperties": false,
|
|
3280
|
+
"properties": {
|
|
3281
|
+
"desktop": {
|
|
3282
|
+
"description": "Represents indicator whether desktop device is supported, default true",
|
|
3283
|
+
"type": "boolean"
|
|
3284
|
+
},
|
|
3285
|
+
"tablet": {
|
|
3286
|
+
"description": "Represents indicator whether tablet device is supported, default true",
|
|
3287
|
+
"type": "boolean"
|
|
3288
|
+
},
|
|
3289
|
+
"phone": {
|
|
3290
|
+
"description": "Represents indicator whether phone device is supported, default true",
|
|
3291
|
+
"type": "boolean"
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
"setting": {
|
|
3296
|
+
"type": "object",
|
|
3297
|
+
"additionalProperties": true,
|
|
3298
|
+
"properties": {
|
|
3299
|
+
"odataVersion": {
|
|
3300
|
+
"description": "Represents version of OData: 2.0 is default",
|
|
3301
|
+
"type": "string",
|
|
3302
|
+
"enum": [
|
|
3303
|
+
"2.0",
|
|
3304
|
+
"4.0"
|
|
3305
|
+
]
|
|
3306
|
+
},
|
|
3307
|
+
"localUri": {
|
|
3308
|
+
"description": "Represents path to local meta data document or annotation uri",
|
|
3309
|
+
"type": "string"
|
|
3310
|
+
},
|
|
3311
|
+
"annotations": {
|
|
3312
|
+
"description": "Represents array of annotation which references an existing data source of type ODataAnnotation",
|
|
3313
|
+
"type": "array",
|
|
3314
|
+
"items": {
|
|
3315
|
+
"type": "string"
|
|
3316
|
+
}
|
|
3317
|
+
}
|
|
3318
|
+
},
|
|
3319
|
+
"objects": {
|
|
3320
|
+
"type": "object",
|
|
3321
|
+
"description": "Dictionary of (catalog) objects offered by the datasource",
|
|
3322
|
+
"additionalProperties": {
|
|
3323
|
+
"type": "object",
|
|
3324
|
+
"description": "A (catalog) object of an InA DataSource",
|
|
3325
|
+
"properties": {
|
|
3326
|
+
"objectName": {
|
|
3327
|
+
"$ref": "#/definitions/objectName"
|
|
3328
|
+
},
|
|
3329
|
+
"objectType": {
|
|
3330
|
+
"$ref": "#/definitions/objectType"
|
|
3331
|
+
},
|
|
3332
|
+
"packageName": {
|
|
3333
|
+
"type": "string"
|
|
3334
|
+
},
|
|
3335
|
+
"schemaName": {
|
|
3336
|
+
"type": "string"
|
|
3337
|
+
}
|
|
3338
|
+
},
|
|
3339
|
+
"additionalProperties": false,
|
|
3340
|
+
"required": [
|
|
3341
|
+
"objectName",
|
|
3342
|
+
"objectType"
|
|
3343
|
+
]
|
|
3344
|
+
}
|
|
3345
|
+
}
|
|
3346
|
+
},
|
|
3347
|
+
"openSource": {
|
|
3348
|
+
"type": "object",
|
|
3349
|
+
"additionalProperties": false,
|
|
3350
|
+
"required": [
|
|
3351
|
+
"name"
|
|
3352
|
+
],
|
|
3353
|
+
"properties": {
|
|
3354
|
+
"name": {
|
|
3355
|
+
"description": "Represents a name of the open source as appears on the web",
|
|
3356
|
+
"type": "string"
|
|
3357
|
+
},
|
|
3358
|
+
"version": {
|
|
3359
|
+
"description": "Represents a version of the open source (if part of app, version must be specified, if part of UI5 dist layer, version is empty)",
|
|
3360
|
+
"type": "string"
|
|
3361
|
+
},
|
|
3362
|
+
"packagedWithMySelf": {
|
|
3363
|
+
"description": "Indicates, whether it is part of the app or not",
|
|
3364
|
+
"type": "boolean"
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3367
|
+
},
|
|
3368
|
+
"dataSource": {
|
|
3369
|
+
"type": "object",
|
|
3370
|
+
"additionalProperties": false,
|
|
3371
|
+
"required": [
|
|
3372
|
+
"uri"
|
|
3373
|
+
],
|
|
3374
|
+
"properties": {
|
|
3375
|
+
"uri": {
|
|
3376
|
+
"description": "Represents the uri of the data source, should always be given in lower case",
|
|
3377
|
+
"type": "string"
|
|
3378
|
+
},
|
|
3379
|
+
"type": {
|
|
3380
|
+
"description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON, FHIR, WebSocket, http",
|
|
3381
|
+
"type": "string",
|
|
3382
|
+
"enum": [
|
|
3383
|
+
"OData",
|
|
3384
|
+
"ODataAnnotation",
|
|
3385
|
+
"INA",
|
|
3386
|
+
"XML",
|
|
3387
|
+
"JSON",
|
|
3388
|
+
"FHIR",
|
|
3389
|
+
"WebSocket",
|
|
3390
|
+
"http"
|
|
3391
|
+
],
|
|
3392
|
+
"default": "OData"
|
|
3393
|
+
},
|
|
3394
|
+
"settings": {
|
|
3395
|
+
"description": "Represents data source type specific attributes (key, value pairs)",
|
|
3396
|
+
"$ref": "#/definitions/setting"
|
|
3397
|
+
}
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
"enhanceWithSetting": {
|
|
3401
|
+
"oneOf": [
|
|
3402
|
+
{
|
|
3403
|
+
"additionalProperties": false,
|
|
3404
|
+
"required": [
|
|
3405
|
+
"bundleUrl"
|
|
3406
|
+
],
|
|
3407
|
+
"properties": {
|
|
3408
|
+
"bundleUrl": {
|
|
3409
|
+
"description": "Represents property url for model enhancement",
|
|
3410
|
+
"type": "string"
|
|
3411
|
+
},
|
|
3412
|
+
"bundleUrlRelativeTo": {
|
|
3413
|
+
"description": "Indicates whether url is relative to component (default) or manifest",
|
|
3414
|
+
"type": "string",
|
|
3415
|
+
"default": "component",
|
|
3416
|
+
"enum": [
|
|
3417
|
+
"manifest",
|
|
3418
|
+
"component"
|
|
3419
|
+
]
|
|
3420
|
+
},
|
|
3421
|
+
"fallbackLocale": {
|
|
3422
|
+
"description": "Represents the fallback locale",
|
|
3423
|
+
"type": "string"
|
|
3424
|
+
},
|
|
3425
|
+
"supportedLocales": {
|
|
3426
|
+
"description": "Represents the list of supported locales",
|
|
3427
|
+
"type": "array"
|
|
3428
|
+
},
|
|
3429
|
+
"terminologies": {
|
|
3430
|
+
"description": "Represents terminologies with additional properties files",
|
|
3431
|
+
"type": "object",
|
|
3432
|
+
"additionalProperties": false,
|
|
3433
|
+
"patternProperties": {
|
|
3434
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
3435
|
+
"$ref": "#/definitions/terminologySetting"
|
|
3436
|
+
}
|
|
3437
|
+
}
|
|
3438
|
+
}
|
|
3439
|
+
}
|
|
3440
|
+
},
|
|
3441
|
+
{
|
|
3442
|
+
"required": [
|
|
3443
|
+
"bundleName"
|
|
3444
|
+
],
|
|
3445
|
+
"additionalProperties": false,
|
|
3446
|
+
"properties": {
|
|
3447
|
+
"bundleName": {
|
|
3448
|
+
"description": "Represents the alternative for bundleUrl",
|
|
3449
|
+
"type": "string"
|
|
3450
|
+
},
|
|
3451
|
+
"fallbackLocale": {
|
|
3452
|
+
"description": "Represents the fallback locale",
|
|
3453
|
+
"type": "string"
|
|
3454
|
+
},
|
|
3455
|
+
"supportedLocales": {
|
|
3456
|
+
"description": "Represents the list of supported locales",
|
|
3457
|
+
"type": "array"
|
|
3458
|
+
},
|
|
3459
|
+
"terminologies": {
|
|
3460
|
+
"description": "Represents terminologies with additional properties files",
|
|
3461
|
+
"type": "object",
|
|
3462
|
+
"additionalProperties": false,
|
|
3463
|
+
"patternProperties": {
|
|
3464
|
+
"^[a-zA-Z0-9_\\-]*$": {
|
|
3465
|
+
"$ref": "#/definitions/terminologySetting"
|
|
3466
|
+
}
|
|
3467
|
+
}
|
|
3468
|
+
}
|
|
3469
|
+
}
|
|
3470
|
+
}
|
|
3471
|
+
]
|
|
3472
|
+
},
|
|
3473
|
+
"id_def": {
|
|
3474
|
+
"type": "string",
|
|
3475
|
+
"maxLength": 70
|
|
3476
|
+
}
|
|
3477
|
+
}
|
|
3478
|
+
}
|