@ui5/manifest 1.4.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 +7 -0
- package/LICENSE.txt +203 -0
- package/LICENSES/Apache-2.0.txt +208 -0
- package/README.md +21 -0
- package/REUSE.toml +10 -0
- package/mapping.json +7 -0
- package/package.json +24 -0
- package/schema.json +2052 -0
- package/schema_cil.json +1668 -0
- package/types/manifest.d.ts +1400 -0
package/schema.json
ADDED
|
@@ -0,0 +1,2052 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "SAP JSON schema for Web Application Manifest File",
|
|
3
|
+
"$schema": "http://json-schema.org/draft-04/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
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"start_url": {
|
|
23
|
+
"description": "Represents the URL that the developer would prefer the user agent load when the user launches the web application",
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"sap.app": {
|
|
27
|
+
"title": "JSON schema for SAP.APP Namespace",
|
|
28
|
+
"description": "Represents general application attributes",
|
|
29
|
+
"type": "object",
|
|
30
|
+
"additionalProperties": false,
|
|
31
|
+
"required": [
|
|
32
|
+
"id",
|
|
33
|
+
"type",
|
|
34
|
+
"title",
|
|
35
|
+
"applicationVersion"
|
|
36
|
+
],
|
|
37
|
+
"properties": {
|
|
38
|
+
"_version": {
|
|
39
|
+
"description": "Application attributes format version. It is managed by namespace owner",
|
|
40
|
+
"type": "string",
|
|
41
|
+
"enum": [
|
|
42
|
+
"1.1.0",
|
|
43
|
+
"1.2.0",
|
|
44
|
+
"1.3.0",
|
|
45
|
+
"1.4.0"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"sourceTemplate": {
|
|
49
|
+
"description": "Represents the template from which the app was generated",
|
|
50
|
+
"type": "object",
|
|
51
|
+
"required": [
|
|
52
|
+
"id",
|
|
53
|
+
"version"
|
|
54
|
+
],
|
|
55
|
+
"properties": {
|
|
56
|
+
"id": {
|
|
57
|
+
"description": "Represents id of the template from which the app was generated ",
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"version": {
|
|
61
|
+
"description": "Represents the version of the template from which the app was generated",
|
|
62
|
+
"type": "string"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"id": {
|
|
67
|
+
"description": "Represents mandatory unique app identifier which must correspond to component 'id/namespace'",
|
|
68
|
+
"$ref": "#/definitions/id_def"
|
|
69
|
+
},
|
|
70
|
+
"type": {
|
|
71
|
+
"description": "Represents type of an application and can be application or component or library",
|
|
72
|
+
"type": "string",
|
|
73
|
+
"enum": [
|
|
74
|
+
"application",
|
|
75
|
+
"component",
|
|
76
|
+
"library"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
"i18n": {
|
|
80
|
+
"description": "Represents path inside the app to the properties file containing text symbols for the Descriptor",
|
|
81
|
+
"type": "string",
|
|
82
|
+
"default": "i18n/i18n.properties"
|
|
83
|
+
},
|
|
84
|
+
"applicationVersion": {
|
|
85
|
+
"description": "Represents mandatory version of the app",
|
|
86
|
+
"type": "object",
|
|
87
|
+
"required": [
|
|
88
|
+
"version"
|
|
89
|
+
],
|
|
90
|
+
"properties": {
|
|
91
|
+
"version": {
|
|
92
|
+
"$ref": "#/definitions/version"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"embeds": {
|
|
97
|
+
"description": "Represents array of relative paths to the nested manifest.json's (mandatory if it contains nested 'manifest.json')",
|
|
98
|
+
"type": "array",
|
|
99
|
+
"items": {
|
|
100
|
+
"type": "string"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"embeddedBy": {
|
|
104
|
+
"description": "Represents relative path back to the manifest.json of an embedding component or library (mandatory for nested 'manifest.json')",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
"title": {
|
|
108
|
+
"description": "Represents language-dependent mandatory title",
|
|
109
|
+
"$ref": "#/definitions/i18n_key"
|
|
110
|
+
},
|
|
111
|
+
"subTitle": {
|
|
112
|
+
"description": "Represents language-dependent additional information to the title",
|
|
113
|
+
"$ref": "#/definitions/i18n_key"
|
|
114
|
+
},
|
|
115
|
+
"description": {
|
|
116
|
+
"description": "Represents language-dependent description",
|
|
117
|
+
"$ref": "#/definitions/i18n_key"
|
|
118
|
+
},
|
|
119
|
+
"tags": {
|
|
120
|
+
"description": "Represents array of keywords",
|
|
121
|
+
"type": "object",
|
|
122
|
+
"additionalProperties": true,
|
|
123
|
+
"required": [
|
|
124
|
+
"keywords"
|
|
125
|
+
],
|
|
126
|
+
"properties": {
|
|
127
|
+
"keywords": {
|
|
128
|
+
"$ref": "#/definitions/tag"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"ach": {
|
|
133
|
+
"description": "Represents application component hierarchy",
|
|
134
|
+
"type": "string",
|
|
135
|
+
"pattern": "^([a-zA-Z]{2,3})(\\-[a-zA-Z0-9]{1,6})*$"
|
|
136
|
+
},
|
|
137
|
+
"dataSources": {
|
|
138
|
+
"description": "Represents used data sources with a unique key/alias",
|
|
139
|
+
"type": "object",
|
|
140
|
+
"additionalProperties": false,
|
|
141
|
+
"patternProperties": {
|
|
142
|
+
"^[\\w\\.\\-]*$": {
|
|
143
|
+
"$ref": "#/definitions/dataSource"
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"cdsViews": {
|
|
148
|
+
"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",
|
|
149
|
+
"type": "array",
|
|
150
|
+
"items": {
|
|
151
|
+
"type": "string"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"resources": {
|
|
155
|
+
"description": "Represents reference to a file (naming convention is resources.json) which contains list with all resources which the app needs",
|
|
156
|
+
"type": "string",
|
|
157
|
+
"enum": [
|
|
158
|
+
"resources.json"
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
"destination": {
|
|
162
|
+
"description": "Represents a system alias",
|
|
163
|
+
"type": "object",
|
|
164
|
+
"required": [
|
|
165
|
+
"name"
|
|
166
|
+
],
|
|
167
|
+
"additionalProperties": false,
|
|
168
|
+
"properties": {
|
|
169
|
+
"name": {
|
|
170
|
+
"description": "Represents an alias for the system",
|
|
171
|
+
"type": "string"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"openSourceComponents": {
|
|
176
|
+
"description": "Represents a collection of directly used open source libs (not when used via UI5 capsulation)",
|
|
177
|
+
"type": "array",
|
|
178
|
+
"items": {
|
|
179
|
+
"$ref": "#/definitions/openSource"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"offline": {
|
|
183
|
+
"description": "Represents indicator whether the app is running offline. Possible values are true or false (default)",
|
|
184
|
+
"type": "boolean",
|
|
185
|
+
"default": false
|
|
186
|
+
},
|
|
187
|
+
"crossNavigation": {
|
|
188
|
+
"description": "Represents cross navigation for inbound and outbound targets",
|
|
189
|
+
"type": "object",
|
|
190
|
+
"required": [
|
|
191
|
+
"inbounds"
|
|
192
|
+
],
|
|
193
|
+
"properties": {
|
|
194
|
+
"scopes": {
|
|
195
|
+
"description": "Represents scopes of a site",
|
|
196
|
+
"type": "object",
|
|
197
|
+
"additionalProperties": false,
|
|
198
|
+
"patternProperties": {
|
|
199
|
+
"^[\\w\\.\\-]+$": {
|
|
200
|
+
"description": "Represents unique id of the site",
|
|
201
|
+
"type": "object",
|
|
202
|
+
"required": [
|
|
203
|
+
"value"
|
|
204
|
+
],
|
|
205
|
+
"properties": {
|
|
206
|
+
"value": {
|
|
207
|
+
"type": "string"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"inbounds": {
|
|
214
|
+
"description": "Represents cross navigation for inbound target",
|
|
215
|
+
"$ref": "#/definitions/inbound"
|
|
216
|
+
},
|
|
217
|
+
"outbounds": {
|
|
218
|
+
"description": "Represents cross navigation for outbound target",
|
|
219
|
+
"$ref": "#/definitions/outbound"
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"definitions": {
|
|
225
|
+
"parameter": {
|
|
226
|
+
"type": "object",
|
|
227
|
+
"properties": {
|
|
228
|
+
"name": {
|
|
229
|
+
"type": "string"
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"sap.ui": {
|
|
236
|
+
"title": "JSON schema for SAP.UI Namespace",
|
|
237
|
+
"description": "Represents general ui attributes",
|
|
238
|
+
"type": "object",
|
|
239
|
+
"required": [
|
|
240
|
+
"technology",
|
|
241
|
+
"deviceTypes"
|
|
242
|
+
],
|
|
243
|
+
"properties": {
|
|
244
|
+
"_version": {
|
|
245
|
+
"description": "Represents UI attributes format version. It is managed by namespace owner",
|
|
246
|
+
"type": "string",
|
|
247
|
+
"enum": [
|
|
248
|
+
"1.1.0",
|
|
249
|
+
"1.2.0",
|
|
250
|
+
"1.3.0",
|
|
251
|
+
"1.4.0"
|
|
252
|
+
]
|
|
253
|
+
},
|
|
254
|
+
"technology": {
|
|
255
|
+
"description": "Represents UI technology. The possible values are UI5 (default), WDA, NWBC and URL",
|
|
256
|
+
"type": "string",
|
|
257
|
+
"enum": [
|
|
258
|
+
"UI5",
|
|
259
|
+
"WDA",
|
|
260
|
+
"NWBC",
|
|
261
|
+
"GUI",
|
|
262
|
+
"URL"
|
|
263
|
+
],
|
|
264
|
+
"default": "UI5"
|
|
265
|
+
},
|
|
266
|
+
"icons": {
|
|
267
|
+
"description": "Represents icons which used in application",
|
|
268
|
+
"type": "object",
|
|
269
|
+
"additionalProperties": false,
|
|
270
|
+
"properties": {
|
|
271
|
+
"icon": {
|
|
272
|
+
"description": "Represents icon of the app",
|
|
273
|
+
"type": "string"
|
|
274
|
+
},
|
|
275
|
+
"favIcon": {
|
|
276
|
+
"description": "Represents ICO file to be used inside the browser and for desktop shortcuts",
|
|
277
|
+
"type": "string"
|
|
278
|
+
},
|
|
279
|
+
"phone": {
|
|
280
|
+
"description": "Represents 57x57 pixel version for non-retina iPhones",
|
|
281
|
+
"type": "string"
|
|
282
|
+
},
|
|
283
|
+
"phone@2": {
|
|
284
|
+
"description": "Represents 114x114 pixel version for non-retina iPhones",
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"tablet": {
|
|
288
|
+
"description": "Represents 72x72 pixel version for non-retina iPads",
|
|
289
|
+
"type": "string"
|
|
290
|
+
},
|
|
291
|
+
"tablet@2": {
|
|
292
|
+
"description": "Represents 144x144 pixel version for non-retina iPads",
|
|
293
|
+
"type": "string"
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"deviceTypes": {
|
|
298
|
+
"description": "Represents device types on which application is running. Supported device types are desktop, tablet and phone",
|
|
299
|
+
"allOf": [
|
|
300
|
+
{
|
|
301
|
+
"$ref": "#/definitions/deviceType"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"required": [
|
|
305
|
+
"desktop",
|
|
306
|
+
"tablet",
|
|
307
|
+
"phone"
|
|
308
|
+
]
|
|
309
|
+
}
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
"supportedThemes": {
|
|
313
|
+
"description": "Represents array of supported SAP themes such as sap_hcb, sap_bluecrystal",
|
|
314
|
+
"type": "array",
|
|
315
|
+
"items": {
|
|
316
|
+
"type": "string"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"fullWidth": {
|
|
320
|
+
"description": "Indicates whether app should run in full screen mode: possible values: true or false ",
|
|
321
|
+
"type": "boolean"
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"sap.ui5": {
|
|
326
|
+
"title": "JSON schema for SAP.UI5 Namespace",
|
|
327
|
+
"description": "Represents sapui5 attributes",
|
|
328
|
+
"type": "object",
|
|
329
|
+
"additionalProperties": false,
|
|
330
|
+
"required": [
|
|
331
|
+
"dependencies",
|
|
332
|
+
"contentDensities"
|
|
333
|
+
],
|
|
334
|
+
"properties": {
|
|
335
|
+
"_version": {
|
|
336
|
+
"description": " Represents SAPUI5 attributes format version. It is managed by namespace owner",
|
|
337
|
+
"type": "string",
|
|
338
|
+
"enum": [
|
|
339
|
+
"1.1.0",
|
|
340
|
+
"1.2.0",
|
|
341
|
+
"1.3.0"
|
|
342
|
+
]
|
|
343
|
+
},
|
|
344
|
+
"resources": {
|
|
345
|
+
"description": "Represents paths to JavaScript/CSS resources that your app needs (app internal), formerly called '.includes'",
|
|
346
|
+
"$ref": "#/definitions/resource"
|
|
347
|
+
},
|
|
348
|
+
"dependencies": {
|
|
349
|
+
"description": "Represents external dependences such as libraries or components, that will be loaded by UI5 Core in the initialization phase of your Component and can be used after it",
|
|
350
|
+
"type": "object",
|
|
351
|
+
"additionalProperties": false,
|
|
352
|
+
"required": [
|
|
353
|
+
"minUI5Version"
|
|
354
|
+
],
|
|
355
|
+
"properties": {
|
|
356
|
+
"minUI5Version": {
|
|
357
|
+
"description": "Represents the minimum version of SAP UI5 that your component requires",
|
|
358
|
+
"$ref": "#/definitions/version"
|
|
359
|
+
},
|
|
360
|
+
"incompatibleLimitation": {
|
|
361
|
+
"description": "Represents ...",
|
|
362
|
+
"type": "boolean",
|
|
363
|
+
"default": false
|
|
364
|
+
},
|
|
365
|
+
"libs": {
|
|
366
|
+
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
367
|
+
"type": "object",
|
|
368
|
+
"additionalProperties": false,
|
|
369
|
+
"patternProperties": {
|
|
370
|
+
"^([a-z][a-z0-9]{0,39})(\\.[a-z][a-z0-9]{0,39})*$": {
|
|
371
|
+
"$ref": "#/definitions/lib"
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"components": {
|
|
376
|
+
"description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
|
|
377
|
+
"type": "object",
|
|
378
|
+
"additionalProperties": false,
|
|
379
|
+
"patternProperties": {
|
|
380
|
+
"^([a-z_$][a-z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$": {
|
|
381
|
+
"$ref": "#/definitions/component"
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
"models": {
|
|
388
|
+
"description": "Represents models which should be created/destroyed with the life-cycle of the component",
|
|
389
|
+
"type": "object",
|
|
390
|
+
"additionalProperties": false,
|
|
391
|
+
"patternProperties": {
|
|
392
|
+
"^[a-zA-Z0-9_\\.\\-\\|\\@]*$": {
|
|
393
|
+
"$ref": "#/definitions/model"
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"resourceRoots": {
|
|
398
|
+
"description": "Represents relative path to the resource. Only relative path allowed, no '../' ",
|
|
399
|
+
"type": "object",
|
|
400
|
+
"additionalProperties": false,
|
|
401
|
+
"patternProperties": {
|
|
402
|
+
"^[a-zA-Z0-9_\\.\\-]*$": {
|
|
403
|
+
"$ref": "#/definitions/resourceRoot"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"rootView": {
|
|
408
|
+
"description": "Represents the name of the root view",
|
|
409
|
+
"$ref": "#/definitions/rootView_def"
|
|
410
|
+
},
|
|
411
|
+
"handleValidation": {
|
|
412
|
+
"description": "Represents the usage of validation handling by MessageManager for this component (enable/disable)",
|
|
413
|
+
"type": "boolean",
|
|
414
|
+
"default": false
|
|
415
|
+
},
|
|
416
|
+
"config": {
|
|
417
|
+
"description": "Represents the static configuration for components",
|
|
418
|
+
"type": "object",
|
|
419
|
+
"additionalProperties": false,
|
|
420
|
+
"patternProperties": {
|
|
421
|
+
"[\\s\\S]*": {
|
|
422
|
+
"$ref": "#/definitions/config"
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"routing": {
|
|
427
|
+
"description": "Represents the configuration of routing",
|
|
428
|
+
"type": "object",
|
|
429
|
+
"properties": {
|
|
430
|
+
"config": {
|
|
431
|
+
"description": "Represents the default properties defined for route and target",
|
|
432
|
+
"allOf": [
|
|
433
|
+
{
|
|
434
|
+
"type": "object",
|
|
435
|
+
"properties": {
|
|
436
|
+
"routerClass": {
|
|
437
|
+
"description": "Represents the router class",
|
|
438
|
+
"type": "string"
|
|
439
|
+
},
|
|
440
|
+
"async": {
|
|
441
|
+
"description": "Indicates whether the Views in routing are loaded asyncly",
|
|
442
|
+
"type": "boolean",
|
|
443
|
+
"default": false
|
|
444
|
+
},
|
|
445
|
+
"bypassed": {
|
|
446
|
+
"description": "Represents information about targets to display when no route is matched",
|
|
447
|
+
"type": "object",
|
|
448
|
+
"additionalProperties": false,
|
|
449
|
+
"required": [
|
|
450
|
+
"target"
|
|
451
|
+
],
|
|
452
|
+
"properties": {
|
|
453
|
+
"target": {
|
|
454
|
+
"description": "Represents one or multiple names of targets that are displayed when no route is matched",
|
|
455
|
+
"$ref": "#/definitions/arrayOrString"
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"$ref": "#/definitions/target"
|
|
463
|
+
}
|
|
464
|
+
]
|
|
465
|
+
},
|
|
466
|
+
"routes": {
|
|
467
|
+
"oneOf": [
|
|
468
|
+
{
|
|
469
|
+
"description": "Represents the definition of routes by providing an array with elements which contain the configuration for each route",
|
|
470
|
+
"type": "array",
|
|
471
|
+
"items": {
|
|
472
|
+
"$ref": "#/definitions/route"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"description": "Represents the definition of routes by providing an object with the route's name as the key and other route options in an object as the value",
|
|
477
|
+
"type": "object",
|
|
478
|
+
"patternProperties": {
|
|
479
|
+
"[\\s\\S]*": {
|
|
480
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
]
|
|
485
|
+
},
|
|
486
|
+
"targets": {
|
|
487
|
+
"description": "Represents the definition of targets",
|
|
488
|
+
"type": "object",
|
|
489
|
+
"patternProperties": {
|
|
490
|
+
"[\\s\\S]*": {
|
|
491
|
+
"allOf": [
|
|
492
|
+
{
|
|
493
|
+
"$ref": "#/definitions/target"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"type": "object",
|
|
497
|
+
"required": [
|
|
498
|
+
"viewName"
|
|
499
|
+
],
|
|
500
|
+
"properties": {
|
|
501
|
+
"viewName": {
|
|
502
|
+
"description": "Represents the name of a view that will be created",
|
|
503
|
+
"type": "string"
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"type": "object",
|
|
509
|
+
"properties": {
|
|
510
|
+
"viewID": {
|
|
511
|
+
"description": "Represents the id of the created view",
|
|
512
|
+
"type": "string"
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
]
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"extends": {
|
|
523
|
+
"description": "Represents the extension of an additional component",
|
|
524
|
+
"type": "object",
|
|
525
|
+
"additionalProperties": false,
|
|
526
|
+
"properties": {
|
|
527
|
+
"component": {
|
|
528
|
+
"description": "Represents the component name",
|
|
529
|
+
"$ref": "#/definitions/id_def"
|
|
530
|
+
},
|
|
531
|
+
"minVersion": {
|
|
532
|
+
"description": "Represents minimal version of the component",
|
|
533
|
+
"$ref": "#/definitions/version"
|
|
534
|
+
},
|
|
535
|
+
"extensions": {
|
|
536
|
+
"description": "Represents extensions of the component",
|
|
537
|
+
"type": "object"
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"contentDensities": {
|
|
542
|
+
"description": "Represents object with content density modes the app is supporting. Supported density modes are 'cozy' and 'compact'",
|
|
543
|
+
"type": "object",
|
|
544
|
+
"additionalProperties": false,
|
|
545
|
+
"required": [
|
|
546
|
+
"compact",
|
|
547
|
+
"cozy"
|
|
548
|
+
],
|
|
549
|
+
"properties": {
|
|
550
|
+
"compact": {
|
|
551
|
+
"description": "Represents indicator whether compact mode is supported",
|
|
552
|
+
"type": "boolean"
|
|
553
|
+
},
|
|
554
|
+
"cozy": {
|
|
555
|
+
"description": "Represents indicator whether cozy mode is supported",
|
|
556
|
+
"type": "boolean"
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"componentName": {
|
|
561
|
+
"description": "Represents a name of the UI5 component",
|
|
562
|
+
"type": "string",
|
|
563
|
+
"pattern": "^([a-z_$][a-z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
564
|
+
},
|
|
565
|
+
"autoPrefixId": {
|
|
566
|
+
"description": "Enables the auto prefixing of IDs of ManagedObjects (e.g. Controls) which are created in context of the Component (e.g. createContent invocation)",
|
|
567
|
+
"type": "boolean"
|
|
568
|
+
},
|
|
569
|
+
"appVariantId": {
|
|
570
|
+
"description": "Represents the identifier of an application variant. The value will be calculated and should not be set manually",
|
|
571
|
+
"type": "string"
|
|
572
|
+
},
|
|
573
|
+
"services": {
|
|
574
|
+
"description": "Represents a list of the services ",
|
|
575
|
+
"type": "object",
|
|
576
|
+
"additionalProperties": false,
|
|
577
|
+
"patternProperties": {
|
|
578
|
+
"[\\s\\S]*": {
|
|
579
|
+
"$ref": "#/definitions/service"
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"definitions": {
|
|
585
|
+
"deviceType": {
|
|
586
|
+
"type": "object",
|
|
587
|
+
"description": "Represents device types on which the app is running",
|
|
588
|
+
"additionalProperties": false,
|
|
589
|
+
"properties": {
|
|
590
|
+
"desktop": {
|
|
591
|
+
"description": "Represents indicator whether desktop device is supported, default true",
|
|
592
|
+
"type": "boolean"
|
|
593
|
+
},
|
|
594
|
+
"tablet": {
|
|
595
|
+
"description": "Represents indicator whether tablet device is supported, default true",
|
|
596
|
+
"type": "boolean"
|
|
597
|
+
},
|
|
598
|
+
"phone": {
|
|
599
|
+
"description": "Represents indicator whether phone device is supported, default true",
|
|
600
|
+
"type": "boolean"
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"sap.platform.abap": {
|
|
607
|
+
"title": "JSON schema for SAP.PLATFORM.ABAP Namespace",
|
|
608
|
+
"description": "Represents ABAP platform specific attributes",
|
|
609
|
+
"type": "object",
|
|
610
|
+
"additionalProperties": false,
|
|
611
|
+
"properties": {
|
|
612
|
+
"_version": {
|
|
613
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
614
|
+
"type": "string",
|
|
615
|
+
"enum": [
|
|
616
|
+
"1.1.0",
|
|
617
|
+
"1.2.0"
|
|
618
|
+
]
|
|
619
|
+
},
|
|
620
|
+
"uri": {
|
|
621
|
+
"description": "Represents the uri of the app in the ABAP system",
|
|
622
|
+
"type": "string"
|
|
623
|
+
},
|
|
624
|
+
"uriNwbc": {
|
|
625
|
+
"description": "Represents the alternative uri of the app in the ABAP system for starting the application",
|
|
626
|
+
"type": "string"
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"sap.platform.hcp": {
|
|
631
|
+
"title": "JSON schema for SAP.PLATFORM.HCP Namespace",
|
|
632
|
+
"description": "Represents HANA Cloud Platform platform specific attributes",
|
|
633
|
+
"type": "object",
|
|
634
|
+
"additionalProperties": false,
|
|
635
|
+
"properties": {
|
|
636
|
+
"_version": {
|
|
637
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
638
|
+
"type": "string",
|
|
639
|
+
"enum": [
|
|
640
|
+
"1.1.0",
|
|
641
|
+
"1.2.0",
|
|
642
|
+
"1.3.0"
|
|
643
|
+
]
|
|
644
|
+
},
|
|
645
|
+
"uri": {
|
|
646
|
+
"description": "Represents the uri of the app in the HANA Cloud Platform",
|
|
647
|
+
"type": "string"
|
|
648
|
+
},
|
|
649
|
+
"uriNwbc": {
|
|
650
|
+
"description": "Represents the alternative uri of the app in the ABAP system for starting the application",
|
|
651
|
+
"type": "string"
|
|
652
|
+
},
|
|
653
|
+
"providerAccount": {
|
|
654
|
+
"description": "Represents the provider account of the HTML5 application",
|
|
655
|
+
"type": "string"
|
|
656
|
+
},
|
|
657
|
+
"appName": {
|
|
658
|
+
"description": "Represents the HTML5 application name",
|
|
659
|
+
"type": "string",
|
|
660
|
+
"pattern": "^[a-z][a-z0-9]{0,29}$"
|
|
661
|
+
},
|
|
662
|
+
"appVersion": {
|
|
663
|
+
"description": "Represents the version of the HTML5 application",
|
|
664
|
+
"type": "string"
|
|
665
|
+
},
|
|
666
|
+
"multiVersionApp": {
|
|
667
|
+
"description": "Indicates that HCP application is multi-version enabled",
|
|
668
|
+
"type": "boolean"
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
"sap.fiori": {
|
|
673
|
+
"title": "JSON schema for SAP.FIORI Namespace",
|
|
674
|
+
"description": "Represents SAP Fiori specific attributes",
|
|
675
|
+
"type": "object",
|
|
676
|
+
"required": [
|
|
677
|
+
"registrationIds",
|
|
678
|
+
"archeType"
|
|
679
|
+
],
|
|
680
|
+
"additionalProperties": false,
|
|
681
|
+
"properties": {
|
|
682
|
+
"_version": {
|
|
683
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
684
|
+
"type": "string",
|
|
685
|
+
"enum": [
|
|
686
|
+
"1.1.0"
|
|
687
|
+
]
|
|
688
|
+
},
|
|
689
|
+
"registrationIds": {
|
|
690
|
+
"description": "Represents array of registration ids, i.e. for Fiori apps fiori id(s)",
|
|
691
|
+
"type": "array",
|
|
692
|
+
"items": {
|
|
693
|
+
"type": "string"
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
"archeType": {
|
|
697
|
+
"description": "Represents architecture type of an application. The supported types are transactional or analytical or factsheet or reusecomponent or fpmwebdynpro or designstudio",
|
|
698
|
+
"type": "string",
|
|
699
|
+
"enum": [
|
|
700
|
+
"transactional",
|
|
701
|
+
"analytical",
|
|
702
|
+
"factsheet",
|
|
703
|
+
"reusecomponent",
|
|
704
|
+
"fpmwebdynpro",
|
|
705
|
+
"designstudio"
|
|
706
|
+
]
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
"sap.ui.generic.app": {
|
|
711
|
+
"title": "JSON schema for SAP.UI.GENERIC.APP Namespace",
|
|
712
|
+
"description": "Represents GENERIC APP specific attributes",
|
|
713
|
+
"type": "object",
|
|
714
|
+
"additionalProperties": false,
|
|
715
|
+
"properties": {
|
|
716
|
+
"_version": {
|
|
717
|
+
"type": "string",
|
|
718
|
+
"enum": [
|
|
719
|
+
"1.1.0",
|
|
720
|
+
"1.2.0"
|
|
721
|
+
]
|
|
722
|
+
},
|
|
723
|
+
"settings": {
|
|
724
|
+
"description": "Represents global settings for the application controller",
|
|
725
|
+
"$ref": "#/definitions/setting_def"
|
|
726
|
+
},
|
|
727
|
+
"pages": {
|
|
728
|
+
"description": "Represents one ore more pages of an application. UI5 routing is created from the definitions in this section",
|
|
729
|
+
"type": "array",
|
|
730
|
+
"items": {
|
|
731
|
+
"$ref": "#/definitions/page"
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"sap.flp": {
|
|
737
|
+
"title": "JSON schema for SAP.FLP Namespace",
|
|
738
|
+
"description": "Represents FLP specific attributes",
|
|
739
|
+
"type": "object",
|
|
740
|
+
"required": [
|
|
741
|
+
"type",
|
|
742
|
+
"config"
|
|
743
|
+
],
|
|
744
|
+
"additionalProperties": false,
|
|
745
|
+
"properties": {
|
|
746
|
+
"_version": {
|
|
747
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
748
|
+
"type": "string",
|
|
749
|
+
"enum": [
|
|
750
|
+
"1.1.0",
|
|
751
|
+
"1.2.0"
|
|
752
|
+
]
|
|
753
|
+
},
|
|
754
|
+
"tileSize": {
|
|
755
|
+
"description": "Represents size of the tile",
|
|
756
|
+
"type": "string",
|
|
757
|
+
"enum": [
|
|
758
|
+
"1x1",
|
|
759
|
+
"1x2"
|
|
760
|
+
]
|
|
761
|
+
},
|
|
762
|
+
"type": {
|
|
763
|
+
"description": "Represents the type of FLP entry. It must be 'application' or 'tile' or 'plugin'",
|
|
764
|
+
"type": "string",
|
|
765
|
+
"enum": [
|
|
766
|
+
"application",
|
|
767
|
+
"tile",
|
|
768
|
+
"plugin"
|
|
769
|
+
]
|
|
770
|
+
},
|
|
771
|
+
"config": {
|
|
772
|
+
"description": "Represents configuration parameters of the FLP entry",
|
|
773
|
+
"type": "object",
|
|
774
|
+
"additionalProperties": false,
|
|
775
|
+
"patternProperties": {
|
|
776
|
+
"^[a-zA-Z0-9\\_\\.\\-]*$": {
|
|
777
|
+
"description": "Represents the configuration key and values",
|
|
778
|
+
"type": "object"
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"sap.ovp": {
|
|
785
|
+
"title": "JSON schema for SAP.OVP Namespace",
|
|
786
|
+
"description": "Represents OVP specific attributes",
|
|
787
|
+
"type": "object",
|
|
788
|
+
"required": [
|
|
789
|
+
"cards"
|
|
790
|
+
],
|
|
791
|
+
"dependencies": {
|
|
792
|
+
"globalFilterModel": [
|
|
793
|
+
"globalFilterEntityType"
|
|
794
|
+
],
|
|
795
|
+
"globalFilterEntityType": [
|
|
796
|
+
"globalFilterModel"
|
|
797
|
+
]
|
|
798
|
+
},
|
|
799
|
+
"additionalProperties": false,
|
|
800
|
+
"properties": {
|
|
801
|
+
"_version": {
|
|
802
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
803
|
+
"type": "string",
|
|
804
|
+
"enum": [
|
|
805
|
+
"1.1.0",
|
|
806
|
+
"1.2.0"
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
"globalFilterModel": {
|
|
810
|
+
"description": "Represents the name of global filter OData model, which contains entities definition that are relevant for global filters",
|
|
811
|
+
"type": "string",
|
|
812
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
813
|
+
},
|
|
814
|
+
"globalFilterEntityType": {
|
|
815
|
+
"description": "Represents the entity to use as global filter in the smart filter bar control",
|
|
816
|
+
"type": "string",
|
|
817
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
818
|
+
},
|
|
819
|
+
"containerLayout": {
|
|
820
|
+
"description": "Represents the layout of the card container",
|
|
821
|
+
"type": "string",
|
|
822
|
+
"default": "easyScan",
|
|
823
|
+
"enum": [
|
|
824
|
+
"easyScan",
|
|
825
|
+
"dashboard"
|
|
826
|
+
]
|
|
827
|
+
},
|
|
828
|
+
"cards": {
|
|
829
|
+
"type": "object",
|
|
830
|
+
"additionalProperties": false,
|
|
831
|
+
"patternProperties": {
|
|
832
|
+
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
833
|
+
"$ref": "#/definitions/card"
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
"dashboardLayout": {
|
|
838
|
+
"type": "object",
|
|
839
|
+
"additionalProperties": false,
|
|
840
|
+
"patternProperties": {
|
|
841
|
+
"^cols_[0-9]+$": {
|
|
842
|
+
"$ref": "#/definitions/dashboardLayoutVariant"
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"sap.wda": {
|
|
849
|
+
"title": "JSON schema for SAP.WDA Namespace",
|
|
850
|
+
"description": "Represents WDA specific attributes",
|
|
851
|
+
"type": "object",
|
|
852
|
+
"required": [
|
|
853
|
+
"applicationId"
|
|
854
|
+
],
|
|
855
|
+
"additionalProperties": false,
|
|
856
|
+
"properties": {
|
|
857
|
+
"_version": {
|
|
858
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
859
|
+
"type": "string",
|
|
860
|
+
"enum": [
|
|
861
|
+
"1.1.0",
|
|
862
|
+
"1.2.0"
|
|
863
|
+
]
|
|
864
|
+
},
|
|
865
|
+
"applicationId": {
|
|
866
|
+
"description": "Represents ID of an application",
|
|
867
|
+
"type": "string",
|
|
868
|
+
"pattern": "^[a-zA-Z0-9\\/\\_]{1,30}$"
|
|
869
|
+
},
|
|
870
|
+
"configId": {
|
|
871
|
+
"description": "Represents ID of an application configuration",
|
|
872
|
+
"type": "string",
|
|
873
|
+
"pattern": "^[a-zA-Z0-9\\/\\_]{1,32}$"
|
|
874
|
+
},
|
|
875
|
+
"flavorId": {
|
|
876
|
+
"description": "Represents SAP Screen Personas Flavor ID",
|
|
877
|
+
"type": "string",
|
|
878
|
+
"pattern": "^[A-F0-9]{1,32}$"
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
"sap.apf": {
|
|
883
|
+
"title": "JSON schema for SAP.APF Namespace",
|
|
884
|
+
"description": "Represents APF specific attributes",
|
|
885
|
+
"type": "object",
|
|
886
|
+
"additionalProperties": false,
|
|
887
|
+
"properties": {
|
|
888
|
+
"_version": {
|
|
889
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
890
|
+
"type": "string",
|
|
891
|
+
"enum": [
|
|
892
|
+
"1.1.0"
|
|
893
|
+
]
|
|
894
|
+
},
|
|
895
|
+
"activateFilterReduction": {
|
|
896
|
+
"description": "Represents a switch to activate filter reduction so that filters in OData requests can be represented as ABAP select options",
|
|
897
|
+
"type": "boolean",
|
|
898
|
+
"default": false
|
|
899
|
+
},
|
|
900
|
+
"activateLrep": {
|
|
901
|
+
"description": "Represents a switch to activate LREP as the persistence for configurations and texts",
|
|
902
|
+
"type": "boolean",
|
|
903
|
+
"default": false
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
"sap.cloud.portal": {
|
|
908
|
+
"title": "JSON schema for SAP.CLOUD.PORTAL Namespace",
|
|
909
|
+
"description": "Represents Cloud Portal specific attributes",
|
|
910
|
+
"type": "object"
|
|
911
|
+
},
|
|
912
|
+
"sap.gui": {
|
|
913
|
+
"title": "JSON schema for SAP.GUI Namespace",
|
|
914
|
+
"description": "Represents GUI specific attributes",
|
|
915
|
+
"type": "object",
|
|
916
|
+
"required": [
|
|
917
|
+
"transaction"
|
|
918
|
+
],
|
|
919
|
+
"additionalProperties": false,
|
|
920
|
+
"properties": {
|
|
921
|
+
"_version": {
|
|
922
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
923
|
+
"type": "string",
|
|
924
|
+
"enum": [
|
|
925
|
+
"1.1.0",
|
|
926
|
+
"1.2.0"
|
|
927
|
+
]
|
|
928
|
+
},
|
|
929
|
+
"transaction": {
|
|
930
|
+
"description": "Represents transaction of an application",
|
|
931
|
+
"type": "string",
|
|
932
|
+
"pattern": "^[a-zA-Z0-9\\/\\_]{1,20}$"
|
|
933
|
+
},
|
|
934
|
+
"flavorId": {
|
|
935
|
+
"description": "Represents SAP Screen Personas Flavor ID",
|
|
936
|
+
"type": "string",
|
|
937
|
+
"pattern": "^[A-F0-9]{1,32}$"
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
"sap.ui.smartbusiness.app": {
|
|
942
|
+
"title": "JSON schema for SAP.UI.SMARTBUSINESS.APP Namespace",
|
|
943
|
+
"description": "Represents specific attributes for Smart Business ",
|
|
944
|
+
"type": "object"
|
|
945
|
+
},
|
|
946
|
+
"sap.mobile": {
|
|
947
|
+
"title": "JSON schema for SAP.MOBILE Namespace",
|
|
948
|
+
"description": "Represents mobile specific attributes",
|
|
949
|
+
"type": "object",
|
|
950
|
+
"required": [
|
|
951
|
+
"definingRequests"
|
|
952
|
+
],
|
|
953
|
+
"properties": {
|
|
954
|
+
"_version": {
|
|
955
|
+
"description": "Represents attributes format version. It is managed by namespace owner",
|
|
956
|
+
"type": "string",
|
|
957
|
+
"enum": [
|
|
958
|
+
"1.1.0"
|
|
959
|
+
]
|
|
960
|
+
},
|
|
961
|
+
"definingRequests": {
|
|
962
|
+
"description": "Represents mobile specific attributes",
|
|
963
|
+
"type": "object",
|
|
964
|
+
"additionalProperties": false,
|
|
965
|
+
"patternProperties": {
|
|
966
|
+
"^[a-zA-Z0-9_\\.\\-]*": {
|
|
967
|
+
"$ref": "#/definitions/definingRequest"
|
|
968
|
+
}
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"definitions": {
|
|
975
|
+
"definingRequest": {
|
|
976
|
+
"type": "object",
|
|
977
|
+
"additionalProperties": false,
|
|
978
|
+
"required": [
|
|
979
|
+
"dataSource",
|
|
980
|
+
"path"
|
|
981
|
+
],
|
|
982
|
+
"properties": {
|
|
983
|
+
"dataSource": {
|
|
984
|
+
"description": "Represents reference to dataSource under sap.app",
|
|
985
|
+
"type": "string"
|
|
986
|
+
},
|
|
987
|
+
"path": {
|
|
988
|
+
"description": "Represents path to the title collection",
|
|
989
|
+
"type": "string"
|
|
990
|
+
},
|
|
991
|
+
"retrieveStreams": {
|
|
992
|
+
"description": "Represents indicator whether streams should be retrieved",
|
|
993
|
+
"type": "boolean",
|
|
994
|
+
"default": false
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
"dashboardLayoutVariantCardProperties": {
|
|
999
|
+
"required": [
|
|
1000
|
+
"col",
|
|
1001
|
+
"row",
|
|
1002
|
+
"colSpan",
|
|
1003
|
+
"rowSpan"
|
|
1004
|
+
],
|
|
1005
|
+
"description": "Represents the card properties is a layout variant",
|
|
1006
|
+
"type": "object",
|
|
1007
|
+
"additionalProperties": false,
|
|
1008
|
+
"properties": {
|
|
1009
|
+
"col": {
|
|
1010
|
+
"description": "Represents the grid column",
|
|
1011
|
+
"type": "integer"
|
|
1012
|
+
},
|
|
1013
|
+
"row": {
|
|
1014
|
+
"description": "Represents the grid row",
|
|
1015
|
+
"type": "integer"
|
|
1016
|
+
},
|
|
1017
|
+
"colSpan": {
|
|
1018
|
+
"description": "Represents the column span",
|
|
1019
|
+
"type": "integer"
|
|
1020
|
+
},
|
|
1021
|
+
"rowSpan": {
|
|
1022
|
+
"description": "Represents the row span",
|
|
1023
|
+
"type": "integer"
|
|
1024
|
+
},
|
|
1025
|
+
"visible": {
|
|
1026
|
+
"description": "Represents the visibility of the card",
|
|
1027
|
+
"type": "boolean",
|
|
1028
|
+
"default": true
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"defaultSpanDef": {
|
|
1033
|
+
"description": "Represents the card default grid size in columns and rows",
|
|
1034
|
+
"oneOf": [
|
|
1035
|
+
{
|
|
1036
|
+
"type": "object",
|
|
1037
|
+
"additionalProperties": false,
|
|
1038
|
+
"required": [
|
|
1039
|
+
"cols",
|
|
1040
|
+
"rows"
|
|
1041
|
+
],
|
|
1042
|
+
"properties": {
|
|
1043
|
+
"cols": {
|
|
1044
|
+
"description": "Represents the number of the number of grid columns",
|
|
1045
|
+
"type": "integer"
|
|
1046
|
+
},
|
|
1047
|
+
"rows": {
|
|
1048
|
+
"description": "Represents the number of the number of grid rows",
|
|
1049
|
+
"type": "integer"
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"type": "string",
|
|
1055
|
+
"enum": [
|
|
1056
|
+
"auto"
|
|
1057
|
+
]
|
|
1058
|
+
}
|
|
1059
|
+
]
|
|
1060
|
+
},
|
|
1061
|
+
"tab_setting": {
|
|
1062
|
+
"description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
|
|
1063
|
+
"type": "object",
|
|
1064
|
+
"additionalProperties": true,
|
|
1065
|
+
"properties": {
|
|
1066
|
+
"annotationPath": {
|
|
1067
|
+
"description": "Represents the annotation path",
|
|
1068
|
+
"type": "string",
|
|
1069
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1070
|
+
},
|
|
1071
|
+
"selectionAnnotationPath": {
|
|
1072
|
+
"description": "Represents the selection annotation path",
|
|
1073
|
+
"type": "string",
|
|
1074
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1075
|
+
},
|
|
1076
|
+
"chartAnnotationPath": {
|
|
1077
|
+
"description": "Represents the chart annotation path",
|
|
1078
|
+
"type": "string",
|
|
1079
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1080
|
+
},
|
|
1081
|
+
"presentationAnnotationPath": {
|
|
1082
|
+
"description": "Represents the presentation annotation path",
|
|
1083
|
+
"type": "string",
|
|
1084
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1085
|
+
},
|
|
1086
|
+
"dataPointAnnotationPath": {
|
|
1087
|
+
"description": "Represents the data point annotation path",
|
|
1088
|
+
"type": "string",
|
|
1089
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1090
|
+
},
|
|
1091
|
+
"identificationAnnotationPath": {
|
|
1092
|
+
"description": "Represents the identification annotation path",
|
|
1093
|
+
"type": "string",
|
|
1094
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1095
|
+
},
|
|
1096
|
+
"value": {
|
|
1097
|
+
"description": "Represents the drop down value to be shown",
|
|
1098
|
+
"type": "string"
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"card_setting": {
|
|
1103
|
+
"description": "Represents the card specific properties - properties that are passed to the card",
|
|
1104
|
+
"type": "object",
|
|
1105
|
+
"additionalProperties": true,
|
|
1106
|
+
"properties": {
|
|
1107
|
+
"category": {
|
|
1108
|
+
"description": "Represents the category of the card- used in the card header",
|
|
1109
|
+
"type": "string",
|
|
1110
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1111
|
+
},
|
|
1112
|
+
"title": {
|
|
1113
|
+
"description": "Represents language-dependent title of the card - used in the card header",
|
|
1114
|
+
"type": "string",
|
|
1115
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1116
|
+
},
|
|
1117
|
+
"subTitle": {
|
|
1118
|
+
"description": "Represents language-dependent subtitle of the card - used in the card header",
|
|
1119
|
+
"type": "string",
|
|
1120
|
+
"pattern": "^\\{\\{[^\\W\\.\\-][\\w\\.\\-]*\\}\\}$"
|
|
1121
|
+
},
|
|
1122
|
+
"entitySet": {
|
|
1123
|
+
"description": "Represents the entity set that will be displayed in this card",
|
|
1124
|
+
"type": "string",
|
|
1125
|
+
"pattern": "^[a-zA-Z0-9\\_]+$"
|
|
1126
|
+
},
|
|
1127
|
+
"staticContent": {
|
|
1128
|
+
"description": "Represents the static content that will be displayed in this card",
|
|
1129
|
+
"type": "array",
|
|
1130
|
+
"items": {
|
|
1131
|
+
"type": "object"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"listFlavor": {
|
|
1135
|
+
"description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard",
|
|
1136
|
+
"type": "string",
|
|
1137
|
+
"enum": [
|
|
1138
|
+
"standard",
|
|
1139
|
+
"bar",
|
|
1140
|
+
"carousel"
|
|
1141
|
+
]
|
|
1142
|
+
},
|
|
1143
|
+
"listType": {
|
|
1144
|
+
"description": "Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card",
|
|
1145
|
+
"type": "string",
|
|
1146
|
+
"enum": [
|
|
1147
|
+
"extended",
|
|
1148
|
+
"condensed"
|
|
1149
|
+
]
|
|
1150
|
+
},
|
|
1151
|
+
"sortBy": {
|
|
1152
|
+
"description": "Represents the sort key for the entity set",
|
|
1153
|
+
"type": "string"
|
|
1154
|
+
},
|
|
1155
|
+
"sortOrder": {
|
|
1156
|
+
"description": "Represents the sort order for the entity set",
|
|
1157
|
+
"type": "string",
|
|
1158
|
+
"enum": [
|
|
1159
|
+
"ascending",
|
|
1160
|
+
"descending"
|
|
1161
|
+
]
|
|
1162
|
+
},
|
|
1163
|
+
"annotationPath": {
|
|
1164
|
+
"description": "Represents the annotation path",
|
|
1165
|
+
"type": "string",
|
|
1166
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1167
|
+
},
|
|
1168
|
+
"selectionAnnotationPath": {
|
|
1169
|
+
"description": "Represents the selection annotation path",
|
|
1170
|
+
"type": "string",
|
|
1171
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1172
|
+
},
|
|
1173
|
+
"chartAnnotationPath": {
|
|
1174
|
+
"description": "Represents the chart annotation path",
|
|
1175
|
+
"type": "string",
|
|
1176
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1177
|
+
},
|
|
1178
|
+
"presentationAnnotationPath": {
|
|
1179
|
+
"description": "Represents the presentation annotation path",
|
|
1180
|
+
"type": "string",
|
|
1181
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1182
|
+
},
|
|
1183
|
+
"dataPointAnnotationPath": {
|
|
1184
|
+
"description": "Represents the data point annotation path",
|
|
1185
|
+
"type": "string",
|
|
1186
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1187
|
+
},
|
|
1188
|
+
"identificationAnnotationPath": {
|
|
1189
|
+
"description": "Represents the identification annotation path",
|
|
1190
|
+
"type": "string",
|
|
1191
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1192
|
+
},
|
|
1193
|
+
"ignoreSapText": {
|
|
1194
|
+
"description": "Represents the flag to indicate priority of number formatting over sap text",
|
|
1195
|
+
"type": "boolean",
|
|
1196
|
+
"default": false
|
|
1197
|
+
},
|
|
1198
|
+
"defaultSpan": {
|
|
1199
|
+
"$ref": "#/definitions/defaultSpanDef"
|
|
1200
|
+
},
|
|
1201
|
+
"requireAppAuthorization": {
|
|
1202
|
+
"description": "Represents the cards for which authorization is required",
|
|
1203
|
+
"type": "string",
|
|
1204
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
"dashboardLayoutVariant": {
|
|
1209
|
+
"description": "Represents the dashboard layout variant",
|
|
1210
|
+
"type": "object",
|
|
1211
|
+
"additionalProperties": false,
|
|
1212
|
+
"patternProperties": {
|
|
1213
|
+
"^[a-zA-Z0-9_\\.\\-]+$": {
|
|
1214
|
+
"$ref": "#/definitions/dashboardLayoutVariantCardProperties"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"card": {
|
|
1219
|
+
"description": "Represents the card attributes",
|
|
1220
|
+
"type": "object",
|
|
1221
|
+
"required": [
|
|
1222
|
+
"template"
|
|
1223
|
+
],
|
|
1224
|
+
"additionalProperties": false,
|
|
1225
|
+
"properties": {
|
|
1226
|
+
"sequencePos": {
|
|
1227
|
+
"description": "Represents the position of the card in the sequence",
|
|
1228
|
+
"type": "integer"
|
|
1229
|
+
},
|
|
1230
|
+
"model": {
|
|
1231
|
+
"description": "Represents the model for the card",
|
|
1232
|
+
"type": "string",
|
|
1233
|
+
"pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
|
|
1234
|
+
},
|
|
1235
|
+
"template": {
|
|
1236
|
+
"description": "Represents the card component path to use for this card",
|
|
1237
|
+
"type": "string",
|
|
1238
|
+
"pattern": "^[a-zA-Z0-9\\.]+$"
|
|
1239
|
+
},
|
|
1240
|
+
"settings": {
|
|
1241
|
+
"$ref": "#/definitions/card_setting"
|
|
1242
|
+
},
|
|
1243
|
+
"tabs": {
|
|
1244
|
+
"description": "Represents the card with view switch control",
|
|
1245
|
+
"type": "array",
|
|
1246
|
+
"minItems": 1,
|
|
1247
|
+
"items": {
|
|
1248
|
+
"$ref": "#/definitions/tab_setting"
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1253
|
+
"component_setting_def": {
|
|
1254
|
+
"description": "Represents the settings specific to one component",
|
|
1255
|
+
"type": "object"
|
|
1256
|
+
},
|
|
1257
|
+
"navigation_def": {
|
|
1258
|
+
"description": "Represents ...",
|
|
1259
|
+
"type": "object",
|
|
1260
|
+
"additionalProperties": false,
|
|
1261
|
+
"minProperties": 1,
|
|
1262
|
+
"properties": {
|
|
1263
|
+
"display": {
|
|
1264
|
+
"description": "Represents an action triggered by the user on UI: the navigation to display an object",
|
|
1265
|
+
"$ref": "#/definitions/action_prop_def"
|
|
1266
|
+
},
|
|
1267
|
+
"create": {
|
|
1268
|
+
"description": "Represents an action triggered by the user on UI: the navigation to create an object",
|
|
1269
|
+
"$ref": "#/definitions/action_prop_def"
|
|
1270
|
+
},
|
|
1271
|
+
"edit": {
|
|
1272
|
+
"description": "Represents an action triggered by the user on UI: the navigation to edit an object",
|
|
1273
|
+
"$ref": "#/definitions/action_prop_def"
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
"component_def": {
|
|
1278
|
+
"type": "object",
|
|
1279
|
+
"additionalProperties": false,
|
|
1280
|
+
"required": [
|
|
1281
|
+
"name"
|
|
1282
|
+
],
|
|
1283
|
+
"properties": {
|
|
1284
|
+
"name": {
|
|
1285
|
+
"description": "The name of the component",
|
|
1286
|
+
"type": "string",
|
|
1287
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9]{0,39})(\\.[a-zA-Z][a-zA-Z0-9]{0,39})*$"
|
|
1288
|
+
},
|
|
1289
|
+
"list": {
|
|
1290
|
+
"description": "Switch to create a route for a list (aggregation) if true and routing for an entity if not set or false",
|
|
1291
|
+
"type": "boolean"
|
|
1292
|
+
},
|
|
1293
|
+
"settings": {
|
|
1294
|
+
"$ref": "#/definitions/component_setting_def"
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
"embeddedComponent": {
|
|
1299
|
+
"type": "object",
|
|
1300
|
+
"additionalProperties": false,
|
|
1301
|
+
"patternProperties": {
|
|
1302
|
+
"^[a-zA-Z0-9_\\.\\-\\:]+$": {
|
|
1303
|
+
"allOf": [
|
|
1304
|
+
{
|
|
1305
|
+
"type": "object",
|
|
1306
|
+
"required": [
|
|
1307
|
+
"id",
|
|
1308
|
+
"title"
|
|
1309
|
+
],
|
|
1310
|
+
"properties": {
|
|
1311
|
+
"id": {
|
|
1312
|
+
"description": "Represents an unique id for the instance of the reuse component inside of the object page",
|
|
1313
|
+
"type": "string",
|
|
1314
|
+
"pattern": "^([A-Za-z_][\\-A-Za-z0-9_\\.\\:]*)$"
|
|
1315
|
+
},
|
|
1316
|
+
"title": {
|
|
1317
|
+
"description": "Represents the title for the content of the reuse component",
|
|
1318
|
+
"type": "string",
|
|
1319
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
1320
|
+
},
|
|
1321
|
+
"binding": {
|
|
1322
|
+
"description": "Represents an optional element binding for the ComponentContainer that hosts the reuse component",
|
|
1323
|
+
"type": "string"
|
|
1324
|
+
},
|
|
1325
|
+
"settings": {
|
|
1326
|
+
"description": "Represents a map to populate the API of the reuse component",
|
|
1327
|
+
"type": "object"
|
|
1328
|
+
}
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"oneOf": [
|
|
1333
|
+
{
|
|
1334
|
+
"type": "object",
|
|
1335
|
+
"required": [
|
|
1336
|
+
"componentName"
|
|
1337
|
+
],
|
|
1338
|
+
"properties": {
|
|
1339
|
+
"componentName": {
|
|
1340
|
+
"description": "Represents the name of the reuse component ",
|
|
1341
|
+
"type": "string",
|
|
1342
|
+
"pattern": "^([a-zA-Z][a-zA-Z0-9]{0,39})(\\.[a-zA-Z][a-zA-Z0-9]{0,39})*$"
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"type": "object",
|
|
1348
|
+
"required": [
|
|
1349
|
+
"embeddedComponents"
|
|
1350
|
+
],
|
|
1351
|
+
"properties": {
|
|
1352
|
+
"embeddedComponents": {
|
|
1353
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
]
|
|
1358
|
+
}
|
|
1359
|
+
]
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
},
|
|
1363
|
+
"action_prop_def": {
|
|
1364
|
+
"type": "object",
|
|
1365
|
+
"additionalProperties": false,
|
|
1366
|
+
"required": [
|
|
1367
|
+
"path",
|
|
1368
|
+
"target"
|
|
1369
|
+
],
|
|
1370
|
+
"properties": {
|
|
1371
|
+
"path": {
|
|
1372
|
+
"description": "Represents the path in the manifest to the target to which the navigation is bound",
|
|
1373
|
+
"type": "string"
|
|
1374
|
+
},
|
|
1375
|
+
"target": {
|
|
1376
|
+
"description": "Represents the pointer to a semantic object",
|
|
1377
|
+
"type": "string"
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
},
|
|
1381
|
+
"page": {
|
|
1382
|
+
"type": "object",
|
|
1383
|
+
"additionalProperties": false,
|
|
1384
|
+
"required": [
|
|
1385
|
+
"entitySet",
|
|
1386
|
+
"component"
|
|
1387
|
+
],
|
|
1388
|
+
"properties": {
|
|
1389
|
+
"navigationProperty": {
|
|
1390
|
+
"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 ",
|
|
1391
|
+
"type": "string"
|
|
1392
|
+
},
|
|
1393
|
+
"entitySet": {
|
|
1394
|
+
"description": "Represents the entity set that defines either the aggregation or the root object of the component",
|
|
1395
|
+
"type": "string"
|
|
1396
|
+
},
|
|
1397
|
+
"component": {
|
|
1398
|
+
"description": "Represents the component and its settings that makes the page",
|
|
1399
|
+
"$ref": "#/definitions/component_def"
|
|
1400
|
+
},
|
|
1401
|
+
"navigation": {
|
|
1402
|
+
"description": "Represents the different navigation targets",
|
|
1403
|
+
"$ref": "#/definitions/navigation_def"
|
|
1404
|
+
},
|
|
1405
|
+
"embeddedComponents": {
|
|
1406
|
+
"description": "Represent reuse components that should be appended at the end of the template component",
|
|
1407
|
+
"$ref": "#/definitions/embeddedComponent"
|
|
1408
|
+
},
|
|
1409
|
+
"pages": {
|
|
1410
|
+
"type": "array",
|
|
1411
|
+
"items": {
|
|
1412
|
+
"$ref": "#/definitions/page"
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
"setting_def": {
|
|
1418
|
+
"description": "Represents global settings for the application controller",
|
|
1419
|
+
"type": "object"
|
|
1420
|
+
},
|
|
1421
|
+
"ui5setting": {
|
|
1422
|
+
"type": "object",
|
|
1423
|
+
"additionalProperties": true,
|
|
1424
|
+
"properties": {
|
|
1425
|
+
"defaultBindingMode": {
|
|
1426
|
+
"description": "Represents default binding mode and must be a string value from sap.ui.model.BindingMode. Possible values: Default, OneTime, OneWay, TwoWay",
|
|
1427
|
+
"type": "string",
|
|
1428
|
+
"default": "Default",
|
|
1429
|
+
"enum": [
|
|
1430
|
+
"Default",
|
|
1431
|
+
"OneTime",
|
|
1432
|
+
"OneWay",
|
|
1433
|
+
"TwoWay"
|
|
1434
|
+
]
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
"service": {
|
|
1439
|
+
"description": "Represents the definition of each service",
|
|
1440
|
+
"type": "object",
|
|
1441
|
+
"required": [
|
|
1442
|
+
"factoryName"
|
|
1443
|
+
],
|
|
1444
|
+
"additionalProperties": true,
|
|
1445
|
+
"properties": {
|
|
1446
|
+
"factoryName": {
|
|
1447
|
+
"description": "Represents the name of the service factory ",
|
|
1448
|
+
"type": "string",
|
|
1449
|
+
"pattern": "^([a-z_$][a-z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$"
|
|
1450
|
+
},
|
|
1451
|
+
"optional": {
|
|
1452
|
+
"description": "Indicates whether the service optional or not ",
|
|
1453
|
+
"type": "boolean",
|
|
1454
|
+
"default": false
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"id_def_0": {
|
|
1459
|
+
"type": "string"
|
|
1460
|
+
},
|
|
1461
|
+
"routeWithoutName": {
|
|
1462
|
+
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
1463
|
+
"type": "object",
|
|
1464
|
+
"properties": {
|
|
1465
|
+
"pattern": {
|
|
1466
|
+
"description": "Represents the url pattern that the route is matched against",
|
|
1467
|
+
"type": "string"
|
|
1468
|
+
},
|
|
1469
|
+
"greedy": {
|
|
1470
|
+
"description": "Whether the route should be matched when another route is already matched",
|
|
1471
|
+
"type": "boolean"
|
|
1472
|
+
},
|
|
1473
|
+
"target": {
|
|
1474
|
+
"description": "Represents one or multiple names of targets which are displayed when the route is matched",
|
|
1475
|
+
"$ref": "#/definitions/arrayOrString"
|
|
1476
|
+
}
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1479
|
+
"route": {
|
|
1480
|
+
"description": "Represents the definition of each route",
|
|
1481
|
+
"allOf": [
|
|
1482
|
+
{
|
|
1483
|
+
"$ref": "#/definitions/routeWithoutName"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"type": "object",
|
|
1487
|
+
"required": [
|
|
1488
|
+
"name"
|
|
1489
|
+
],
|
|
1490
|
+
"properties": {
|
|
1491
|
+
"name": {
|
|
1492
|
+
"description": "Represents the name of the route",
|
|
1493
|
+
"type": "string"
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
]
|
|
1498
|
+
},
|
|
1499
|
+
"target": {
|
|
1500
|
+
"description": "Represents the definition of each target",
|
|
1501
|
+
"type": "object",
|
|
1502
|
+
"properties": {
|
|
1503
|
+
"viewType": {
|
|
1504
|
+
"description": "Represents the type of view that is going to be created",
|
|
1505
|
+
"type": "string",
|
|
1506
|
+
"enum": [
|
|
1507
|
+
"XML",
|
|
1508
|
+
"JSON",
|
|
1509
|
+
"JS",
|
|
1510
|
+
"HTML",
|
|
1511
|
+
"Template"
|
|
1512
|
+
]
|
|
1513
|
+
},
|
|
1514
|
+
"viewPath": {
|
|
1515
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
1516
|
+
"type": "string"
|
|
1517
|
+
},
|
|
1518
|
+
"targetParent": {
|
|
1519
|
+
"description": "Represents the id of the view that contains the control specified by the 'controlId'",
|
|
1520
|
+
"type": "string"
|
|
1521
|
+
},
|
|
1522
|
+
"controlId": {
|
|
1523
|
+
"description": "Represents the id of the control where you want to place the view created by the target",
|
|
1524
|
+
"type": "string"
|
|
1525
|
+
},
|
|
1526
|
+
"controlAggregation": {
|
|
1527
|
+
"description": "Represents the name of an aggregation of the controlId that contains the views",
|
|
1528
|
+
"type": "string"
|
|
1529
|
+
},
|
|
1530
|
+
"clearControlAggregation": {
|
|
1531
|
+
"description": "Whether the aggregation of the control should be cleared before adding the view",
|
|
1532
|
+
"type": "boolean"
|
|
1533
|
+
},
|
|
1534
|
+
"parent": {
|
|
1535
|
+
"description": "Represents the name of another target which will also be displayed once this target is displayed",
|
|
1536
|
+
"type": "string"
|
|
1537
|
+
},
|
|
1538
|
+
"viewLevel": {
|
|
1539
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
1540
|
+
"type": "number",
|
|
1541
|
+
"multipleOf": 1
|
|
1542
|
+
},
|
|
1543
|
+
"transition": {
|
|
1544
|
+
"description": "Represents the type of transition when navigating from previous view to this view",
|
|
1545
|
+
"anyOf": [
|
|
1546
|
+
{
|
|
1547
|
+
"type": "string",
|
|
1548
|
+
"default": "slide"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
"type": "string",
|
|
1552
|
+
"enum": [
|
|
1553
|
+
"slide",
|
|
1554
|
+
"flip",
|
|
1555
|
+
"fade",
|
|
1556
|
+
"show"
|
|
1557
|
+
]
|
|
1558
|
+
}
|
|
1559
|
+
]
|
|
1560
|
+
},
|
|
1561
|
+
"transitionParameters": {
|
|
1562
|
+
"description": "Represents the transition parameters that are passed to the event handlers",
|
|
1563
|
+
"type": "object"
|
|
1564
|
+
}
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"arrayOrString": {
|
|
1568
|
+
"oneOf": [
|
|
1569
|
+
{
|
|
1570
|
+
"type": "array",
|
|
1571
|
+
"items": {
|
|
1572
|
+
"type": "string"
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"type": "string"
|
|
1577
|
+
}
|
|
1578
|
+
]
|
|
1579
|
+
},
|
|
1580
|
+
"config": {
|
|
1581
|
+
"oneOf": [
|
|
1582
|
+
{
|
|
1583
|
+
"type": "array",
|
|
1584
|
+
"items": {
|
|
1585
|
+
"type": "string"
|
|
1586
|
+
}
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"type": "string"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"type": "boolean"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"type": "number"
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"type": "object"
|
|
1599
|
+
}
|
|
1600
|
+
]
|
|
1601
|
+
},
|
|
1602
|
+
"rootView_def": {
|
|
1603
|
+
"oneOf": [
|
|
1604
|
+
{
|
|
1605
|
+
"type": "string"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"type": "object",
|
|
1609
|
+
"required": [
|
|
1610
|
+
"viewName"
|
|
1611
|
+
],
|
|
1612
|
+
"additionalProperties": true,
|
|
1613
|
+
"properties": {
|
|
1614
|
+
"viewName": {
|
|
1615
|
+
"description": "Represents the name of the view",
|
|
1616
|
+
"type": "string"
|
|
1617
|
+
},
|
|
1618
|
+
"type": {
|
|
1619
|
+
"description": "Represents the type of the view. Possible Values: XML, JSON, JS, HTML, Template",
|
|
1620
|
+
"type": "string",
|
|
1621
|
+
"enum": [
|
|
1622
|
+
"XML",
|
|
1623
|
+
"JSON",
|
|
1624
|
+
"JS",
|
|
1625
|
+
"HTML",
|
|
1626
|
+
"Template"
|
|
1627
|
+
]
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
}
|
|
1631
|
+
]
|
|
1632
|
+
},
|
|
1633
|
+
"resourceRoot": {
|
|
1634
|
+
"type": "string",
|
|
1635
|
+
"pattern": "^((\\.(?!\\.)\\/)?\\w+\\/?)+$"
|
|
1636
|
+
},
|
|
1637
|
+
"model": {
|
|
1638
|
+
"description": "Represents sapui5 model name",
|
|
1639
|
+
"type": "object",
|
|
1640
|
+
"additionalProperties": false,
|
|
1641
|
+
"properties": {
|
|
1642
|
+
"type": {
|
|
1643
|
+
"description": "Represents model class name",
|
|
1644
|
+
"type": "string"
|
|
1645
|
+
},
|
|
1646
|
+
"dataSource": {
|
|
1647
|
+
"description": "Represents string of key/alias from sap.app dataSources to reference an existing data source",
|
|
1648
|
+
"type": "string"
|
|
1649
|
+
},
|
|
1650
|
+
"uri": {
|
|
1651
|
+
"description": "Represents URI for the model",
|
|
1652
|
+
"type": "string"
|
|
1653
|
+
},
|
|
1654
|
+
"preload": {
|
|
1655
|
+
"description": "Indicates that the model will be immediately created after the manifest is loaded by Component Factory and before the Component instance is created",
|
|
1656
|
+
"type": "boolean",
|
|
1657
|
+
"default": false
|
|
1658
|
+
},
|
|
1659
|
+
"settings": {
|
|
1660
|
+
"$ref": "#/definitions/ui5setting"
|
|
1661
|
+
}
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1664
|
+
"component": {
|
|
1665
|
+
"description": "Represents sapui5 component name",
|
|
1666
|
+
"type": "object",
|
|
1667
|
+
"properties": {
|
|
1668
|
+
"minVersion": {
|
|
1669
|
+
"description": "Represents minimal version of ui5 component",
|
|
1670
|
+
"$ref": "#/definitions/version"
|
|
1671
|
+
},
|
|
1672
|
+
"lazy": {
|
|
1673
|
+
"description": "Represents ...",
|
|
1674
|
+
"type": "boolean",
|
|
1675
|
+
"default": false
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
},
|
|
1679
|
+
"lib": {
|
|
1680
|
+
"description": "Represents sapui5 library name",
|
|
1681
|
+
"type": "object",
|
|
1682
|
+
"properties": {
|
|
1683
|
+
"minVersion": {
|
|
1684
|
+
"description": "Represents minimal version of ui5 library",
|
|
1685
|
+
"$ref": "#/definitions/version"
|
|
1686
|
+
},
|
|
1687
|
+
"lazy": {
|
|
1688
|
+
"description": "Represents ...",
|
|
1689
|
+
"type": "boolean",
|
|
1690
|
+
"default": false
|
|
1691
|
+
}
|
|
1692
|
+
}
|
|
1693
|
+
},
|
|
1694
|
+
"version": {
|
|
1695
|
+
"type": "string"
|
|
1696
|
+
},
|
|
1697
|
+
"resource": {
|
|
1698
|
+
"type": "object",
|
|
1699
|
+
"properties": {
|
|
1700
|
+
"js": {
|
|
1701
|
+
"type": "array",
|
|
1702
|
+
"items": {
|
|
1703
|
+
"type": "object",
|
|
1704
|
+
"required": [
|
|
1705
|
+
"uri"
|
|
1706
|
+
],
|
|
1707
|
+
"properties": {
|
|
1708
|
+
"uri": {
|
|
1709
|
+
"type": "string"
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1713
|
+
},
|
|
1714
|
+
"css": {
|
|
1715
|
+
"type": "array",
|
|
1716
|
+
"items": {
|
|
1717
|
+
"type": "object",
|
|
1718
|
+
"required": [
|
|
1719
|
+
"uri"
|
|
1720
|
+
],
|
|
1721
|
+
"properties": {
|
|
1722
|
+
"uri": {
|
|
1723
|
+
"type": "string"
|
|
1724
|
+
},
|
|
1725
|
+
"id": {
|
|
1726
|
+
"type": "string"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"deviceType": {
|
|
1734
|
+
"type": "object",
|
|
1735
|
+
"description": "Represents device types on which the app is running",
|
|
1736
|
+
"additionalProperties": false,
|
|
1737
|
+
"properties": {
|
|
1738
|
+
"desktop": {
|
|
1739
|
+
"description": "Represents indicator whether desktop device is supported, default true",
|
|
1740
|
+
"type": "boolean"
|
|
1741
|
+
},
|
|
1742
|
+
"tablet": {
|
|
1743
|
+
"description": "Represents indicator whether tablet device is supported, default true",
|
|
1744
|
+
"type": "boolean"
|
|
1745
|
+
},
|
|
1746
|
+
"phone": {
|
|
1747
|
+
"description": "Represents indicator whether phone device is supported, default true",
|
|
1748
|
+
"type": "boolean"
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1752
|
+
"signature_def": {
|
|
1753
|
+
"description": "Represents signature for inbound targets ",
|
|
1754
|
+
"type": "object",
|
|
1755
|
+
"required": [
|
|
1756
|
+
"parameters",
|
|
1757
|
+
"additionalParameters"
|
|
1758
|
+
],
|
|
1759
|
+
"additionalProperties": false,
|
|
1760
|
+
"properties": {
|
|
1761
|
+
"parameters": {
|
|
1762
|
+
"type": "object",
|
|
1763
|
+
"additionalProperties": false,
|
|
1764
|
+
"patternProperties": {
|
|
1765
|
+
"^[\\w\\.\\-]+$": {
|
|
1766
|
+
"type": "object",
|
|
1767
|
+
"additionalProperties": false,
|
|
1768
|
+
"properties": {
|
|
1769
|
+
"defaultValue": {
|
|
1770
|
+
"type": "object",
|
|
1771
|
+
"description": " Represents a default Value",
|
|
1772
|
+
"additionalProperties": false,
|
|
1773
|
+
"required": [
|
|
1774
|
+
"value"
|
|
1775
|
+
],
|
|
1776
|
+
"properties": {
|
|
1777
|
+
"value": {
|
|
1778
|
+
"description": "Represents a depending on format either a verbatim default value or a reference",
|
|
1779
|
+
"type": "string"
|
|
1780
|
+
},
|
|
1781
|
+
"format": {
|
|
1782
|
+
"description": "Indicates how 'value' is to be interpreted: ('plain': the 'value' is taken as a literal string value| 'reference': the 'value' is a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is used)",
|
|
1783
|
+
"type": "string",
|
|
1784
|
+
"enum": [
|
|
1785
|
+
"plain",
|
|
1786
|
+
"reference"
|
|
1787
|
+
]
|
|
1788
|
+
}
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
"filter": {
|
|
1792
|
+
"description": "Represents a filter , only if input parameter matches filter",
|
|
1793
|
+
"type": "object",
|
|
1794
|
+
"additionalProperties": false,
|
|
1795
|
+
"required": [
|
|
1796
|
+
"value"
|
|
1797
|
+
],
|
|
1798
|
+
"properties": {
|
|
1799
|
+
"value": {
|
|
1800
|
+
"description": "Represents a depending on format either a verbatim filter value, a regular expression or a reference",
|
|
1801
|
+
"type": "string"
|
|
1802
|
+
},
|
|
1803
|
+
"format": {
|
|
1804
|
+
"type": "string",
|
|
1805
|
+
"description": "Indicates how 'value' is to be interpreted: ('plain': the actual value must match the 'value' property directly| 'regexp': the 'value' represents a regexp which must be present in the actual value| 'reference' : the 'value' represents a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is then directly compared with the actual value)",
|
|
1806
|
+
"enum": [
|
|
1807
|
+
"plain",
|
|
1808
|
+
"regexp",
|
|
1809
|
+
"reference"
|
|
1810
|
+
]
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
},
|
|
1814
|
+
"required": {
|
|
1815
|
+
"type": "boolean"
|
|
1816
|
+
},
|
|
1817
|
+
"renameTo": {
|
|
1818
|
+
"description": "Represents the parameter name in legacy ABAP application, e.g. 'RF05L-BUKRS' for parameter 'CompanyCode'",
|
|
1819
|
+
"type": "string"
|
|
1820
|
+
}
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
}
|
|
1824
|
+
},
|
|
1825
|
+
"additionalParameters": {
|
|
1826
|
+
"description": "Indicates how additional parameters to the declared signature are treated: ('ignored': parameters are not passed on to application | 'allowed': parameters are passed on to application | 'notallowed': additional parameters are not allowed)",
|
|
1827
|
+
"type": "string",
|
|
1828
|
+
"enum": [
|
|
1829
|
+
"ignored",
|
|
1830
|
+
"allowed",
|
|
1831
|
+
"notallowed"
|
|
1832
|
+
]
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1836
|
+
"setting": {
|
|
1837
|
+
"type": "object",
|
|
1838
|
+
"additionalProperties": false,
|
|
1839
|
+
"properties": {
|
|
1840
|
+
"odataVersion": {
|
|
1841
|
+
"description": "Represents version of OData: 2.0 is default",
|
|
1842
|
+
"type": "string",
|
|
1843
|
+
"enum": [
|
|
1844
|
+
"2.0",
|
|
1845
|
+
"4.0"
|
|
1846
|
+
]
|
|
1847
|
+
},
|
|
1848
|
+
"localUri": {
|
|
1849
|
+
"description": "Represents path to local meta data document or annotation uri",
|
|
1850
|
+
"type": "string"
|
|
1851
|
+
},
|
|
1852
|
+
"annotations": {
|
|
1853
|
+
"description": "Represents array of annotation which references an existing data source of type ODataAnnotation",
|
|
1854
|
+
"type": "array",
|
|
1855
|
+
"items": {
|
|
1856
|
+
"type": "string"
|
|
1857
|
+
}
|
|
1858
|
+
},
|
|
1859
|
+
"maxAge": {
|
|
1860
|
+
"description": "Indicates that the client is unwilling to accept a response whose age is greater than the number of seconds specified in this field",
|
|
1861
|
+
"type": "number",
|
|
1862
|
+
"multipleOf": 1
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
},
|
|
1866
|
+
"outbound": {
|
|
1867
|
+
"type": "object",
|
|
1868
|
+
"additionalProperties": false,
|
|
1869
|
+
"patternProperties": {
|
|
1870
|
+
"^[\\w\\.\\-]+$": {
|
|
1871
|
+
"type": "object",
|
|
1872
|
+
"additionalProperties": false,
|
|
1873
|
+
"required": [
|
|
1874
|
+
"semanticObject",
|
|
1875
|
+
"action"
|
|
1876
|
+
],
|
|
1877
|
+
"properties": {
|
|
1878
|
+
"semanticObject": {
|
|
1879
|
+
"description": "Represents semantic object",
|
|
1880
|
+
"type": "string",
|
|
1881
|
+
"pattern": "^[\\w\\*]{0,30}$"
|
|
1882
|
+
},
|
|
1883
|
+
"action": {
|
|
1884
|
+
"description": "Represents action an the semantic object",
|
|
1885
|
+
"type": "string",
|
|
1886
|
+
"pattern": "^[\\w\\*]{0,60}$"
|
|
1887
|
+
},
|
|
1888
|
+
"parameters": {
|
|
1889
|
+
"description": "Represents parameters for outbound targets",
|
|
1890
|
+
"type": "object",
|
|
1891
|
+
"additionalProperties": false,
|
|
1892
|
+
"patternProperties": {
|
|
1893
|
+
"^[\\w\\.\\-]+$": {
|
|
1894
|
+
"type": "object"
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
"inbound": {
|
|
1903
|
+
"type": "object",
|
|
1904
|
+
"additionalProperties": false,
|
|
1905
|
+
"patternProperties": {
|
|
1906
|
+
"^[\\w\\.\\-]+$": {
|
|
1907
|
+
"type": "object",
|
|
1908
|
+
"additionalProperties": false,
|
|
1909
|
+
"required": [
|
|
1910
|
+
"semanticObject",
|
|
1911
|
+
"action"
|
|
1912
|
+
],
|
|
1913
|
+
"properties": {
|
|
1914
|
+
"semanticObject": {
|
|
1915
|
+
"description": "Represents semantic object",
|
|
1916
|
+
"type": "string",
|
|
1917
|
+
"pattern": "^[\\w\\*]{0,30}$"
|
|
1918
|
+
},
|
|
1919
|
+
"action": {
|
|
1920
|
+
"description": "Represents action an the semantic object",
|
|
1921
|
+
"type": "string",
|
|
1922
|
+
"pattern": "^[\\w\\*]{0,60}$"
|
|
1923
|
+
},
|
|
1924
|
+
"icon": {
|
|
1925
|
+
"description": "Represents icon",
|
|
1926
|
+
"type": "string"
|
|
1927
|
+
},
|
|
1928
|
+
"title": {
|
|
1929
|
+
"description": "Represents language-dependent - different languages via server API or on client",
|
|
1930
|
+
"oneOf": [
|
|
1931
|
+
{
|
|
1932
|
+
"$ref": "#/definitions/i18n_key"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"type": "string",
|
|
1936
|
+
"pattern": "^[^\\W][\\w\\.\\-]*$"
|
|
1937
|
+
}
|
|
1938
|
+
]
|
|
1939
|
+
},
|
|
1940
|
+
"subTitle": {
|
|
1941
|
+
"description": "Represents language-dependent additional information to the title and can overwrite subTitle from sap.app definition",
|
|
1942
|
+
"oneOf": [
|
|
1943
|
+
{
|
|
1944
|
+
"$ref": "#/definitions/i18n_key"
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"type": "string",
|
|
1948
|
+
"pattern": "^[^\\W][\\w\\.\\-]*$"
|
|
1949
|
+
}
|
|
1950
|
+
]
|
|
1951
|
+
},
|
|
1952
|
+
"info": {
|
|
1953
|
+
"description": "Represents language-dependent additional information to the title",
|
|
1954
|
+
"$ref": "#/definitions/i18n_key"
|
|
1955
|
+
},
|
|
1956
|
+
"indicatorDataSource": {
|
|
1957
|
+
"description": "Represents data source",
|
|
1958
|
+
"type": "object",
|
|
1959
|
+
"required": [
|
|
1960
|
+
"dataSource",
|
|
1961
|
+
"path"
|
|
1962
|
+
],
|
|
1963
|
+
"properties": {
|
|
1964
|
+
"dataSource": {
|
|
1965
|
+
"type": "string"
|
|
1966
|
+
},
|
|
1967
|
+
"path": {
|
|
1968
|
+
"type": "string"
|
|
1969
|
+
},
|
|
1970
|
+
"refresh": {
|
|
1971
|
+
"description": "Represents refresh interval",
|
|
1972
|
+
"type": "number"
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1976
|
+
"deviceTypes": {
|
|
1977
|
+
"description": "Represents device types for which application is developed",
|
|
1978
|
+
"$ref": "#/definitions/deviceType"
|
|
1979
|
+
},
|
|
1980
|
+
"signature": {
|
|
1981
|
+
"$ref": "#/definitions/signature_def"
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
"openSource": {
|
|
1988
|
+
"type": "object",
|
|
1989
|
+
"additionalProperties": false,
|
|
1990
|
+
"required": [
|
|
1991
|
+
"name"
|
|
1992
|
+
],
|
|
1993
|
+
"properties": {
|
|
1994
|
+
"name": {
|
|
1995
|
+
"description": "Represents a name of the open source as appears on the web",
|
|
1996
|
+
"type": "string"
|
|
1997
|
+
},
|
|
1998
|
+
"version": {
|
|
1999
|
+
"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)",
|
|
2000
|
+
"type": "string"
|
|
2001
|
+
},
|
|
2002
|
+
"packagedWithMySelf": {
|
|
2003
|
+
"description": "Indicates, whether it is part of the app or not",
|
|
2004
|
+
"type": "boolean"
|
|
2005
|
+
}
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
"dataSource": {
|
|
2009
|
+
"type": "object",
|
|
2010
|
+
"additionalProperties": false,
|
|
2011
|
+
"required": [
|
|
2012
|
+
"uri"
|
|
2013
|
+
],
|
|
2014
|
+
"properties": {
|
|
2015
|
+
"uri": {
|
|
2016
|
+
"description": "Represents uri of the data source",
|
|
2017
|
+
"type": "string"
|
|
2018
|
+
},
|
|
2019
|
+
"type": {
|
|
2020
|
+
"description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON",
|
|
2021
|
+
"type": "string",
|
|
2022
|
+
"enum": [
|
|
2023
|
+
"OData",
|
|
2024
|
+
"ODataAnnotation",
|
|
2025
|
+
"INA",
|
|
2026
|
+
"XML",
|
|
2027
|
+
"JSON"
|
|
2028
|
+
],
|
|
2029
|
+
"default": "OData"
|
|
2030
|
+
},
|
|
2031
|
+
"settings": {
|
|
2032
|
+
"description": "Represents data source type specific attributes (key, value pairs)",
|
|
2033
|
+
"$ref": "#/definitions/setting"
|
|
2034
|
+
}
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
2037
|
+
"tag": {
|
|
2038
|
+
"type": "array",
|
|
2039
|
+
"items": {
|
|
2040
|
+
"$ref": "#/definitions/i18n_key"
|
|
2041
|
+
}
|
|
2042
|
+
},
|
|
2043
|
+
"i18n_key": {
|
|
2044
|
+
"type": "string",
|
|
2045
|
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-]*\\}\\}$"
|
|
2046
|
+
},
|
|
2047
|
+
"id_def": {
|
|
2048
|
+
"type": "string",
|
|
2049
|
+
"maxLength": 70
|
|
2050
|
+
}
|
|
2051
|
+
}
|
|
2052
|
+
}
|