@ui5/manifest 1.17.0 → 1.28.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/schema.json CHANGED
@@ -29,7 +29,18 @@
29
29
  "1.14.0",
30
30
  "1.15.0",
31
31
  "1.16.0",
32
- "1.17.0"
32
+ "1.17.0",
33
+ "1.18.0",
34
+ "1.19.0",
35
+ "1.20.0",
36
+ "1.21.0",
37
+ "1.22.0",
38
+ "1.23.0",
39
+ "1.24.0",
40
+ "1.25.0",
41
+ "1.26.0",
42
+ "1.27.0",
43
+ "1.28.0"
33
44
  ]
34
45
  },
35
46
  "start_url": {
@@ -60,7 +71,12 @@
60
71
  "1.6.0",
61
72
  "1.7.0",
62
73
  "1.8.0",
63
- "1.9.0"
74
+ "1.9.0",
75
+ "1.10.0",
76
+ "1.11.0",
77
+ "1.12.0",
78
+ "1.13.0",
79
+ "1.14.0"
64
80
  ]
65
81
  },
66
82
  "sourceTemplate": {
@@ -96,9 +112,101 @@
96
112
  ]
97
113
  },
98
114
  "i18n": {
99
- "description": "Represents path inside the app to the properties file containing text symbols for the Descriptor",
100
- "type": "string",
101
- "default": "i18n/i18n.properties"
115
+ "default": "i18n/i18n.properties",
116
+ "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)",
117
+ "oneOf": [
118
+ {
119
+ "default": "i18n/i18n.properties",
120
+ "type": "string"
121
+ },
122
+ {
123
+ "type": "object",
124
+ "required": [
125
+ "bundleName"
126
+ ],
127
+ "additionalProperties": false,
128
+ "properties": {
129
+ "bundleName": {
130
+ "description": "Represents the alternative for bundleUrl",
131
+ "type": "string"
132
+ },
133
+ "fallbackLocale": {
134
+ "description": "Represents the fallback locale",
135
+ "type": "string"
136
+ },
137
+ "supportedLocales": {
138
+ "description": "Represents the list of supported locales",
139
+ "type": "array"
140
+ },
141
+ "terminologies": {
142
+ "description": "Represents terminologies with additional properties files",
143
+ "type": "object",
144
+ "additionalProperties": false,
145
+ "patternProperties": {
146
+ "^[a-zA-Z0-9_\\-]*$": {
147
+ "$ref": "#/definitions/terminologySetting"
148
+ }
149
+ }
150
+ },
151
+ "enhanceWith": {
152
+ "description": "Represents enhancement of UI5 resource model with additional properties files",
153
+ "type": "array",
154
+ "items": {
155
+ "type": "object",
156
+ "$ref": "#/definitions/enhanceWithSetting"
157
+ }
158
+ }
159
+ }
160
+ },
161
+ {
162
+ "type": "object",
163
+ "additionalProperties": false,
164
+ "required": [
165
+ "bundleUrl"
166
+ ],
167
+ "properties": {
168
+ "bundleUrl": {
169
+ "description": "Represents the URL for the resource bundle",
170
+ "type": "string"
171
+ },
172
+ "bundleUrlRelativeTo": {
173
+ "description": "Indicates whether url is relative to component (default) or manifest",
174
+ "type": "string",
175
+ "default": "component",
176
+ "enum": [
177
+ "manifest",
178
+ "component"
179
+ ]
180
+ },
181
+ "supportedLocales": {
182
+ "description": "Represents the list of supported locales",
183
+ "type": "array"
184
+ },
185
+ "fallbackLocale": {
186
+ "description": "Represents the fallback locale",
187
+ "type": "string"
188
+ },
189
+ "terminologies": {
190
+ "description": "Represents terminologies with additional properties files",
191
+ "type": "object",
192
+ "additionalProperties": false,
193
+ "patternProperties": {
194
+ "^[a-zA-Z0-9_\\-]*$": {
195
+ "$ref": "#/definitions/terminologySetting"
196
+ }
197
+ }
198
+ },
199
+ "enhanceWith": {
200
+ "description": "Represents enhancement of UI5 resource model with additional properties files",
201
+ "type": "array",
202
+ "items": {
203
+ "type": "object",
204
+ "$ref": "#/definitions/enhanceWithSetting"
205
+ }
206
+ }
207
+ }
208
+ }
209
+ ]
102
210
  },
103
211
  "applicationVersion": {
104
212
  "description": "Represents mandatory version of the app",
@@ -124,24 +232,24 @@
124
232
  "type": "string"
125
233
  },
126
234
  "title": {
127
- "description": "Represents language-dependent mandatory title",
128
- "$ref": "#/definitions/i18n_key"
235
+ "description": "Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
236
+ "type": "string"
129
237
  },
130
238
  "subTitle": {
131
- "description": "Represents language-dependent additional information to the title",
132
- "$ref": "#/definitions/i18n_key"
239
+ "description": "Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
240
+ "type": "string"
133
241
  },
134
242
  "shortTitle": {
135
- "description": "Represents shorter version of the title (language-dependent )",
136
- "$ref": "#/definitions/i18n_key"
243
+ "description": "Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
244
+ "type": "string"
137
245
  },
138
246
  "info": {
139
- "description": "Represents language-dependent additional information to the title",
140
- "$ref": "#/definitions/i18n_key"
247
+ "description": "Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
248
+ "type": "string"
141
249
  },
142
250
  "description": {
143
- "description": "Represents language-dependent description",
144
- "$ref": "#/definitions/i18n_key"
251
+ "description": "Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
252
+ "type": "string"
145
253
  },
146
254
  "tags": {
147
255
  "description": "Represents array of keywords",
@@ -166,7 +274,7 @@
166
274
  "ach": {
167
275
  "description": "Represents application component hierarchy",
168
276
  "type": "string",
169
- "pattern": "^([a-zA-Z0-9]{2,3})(\\-[a-zA-Z0-9]{1,6})*$"
277
+ "pattern": "^([a-zA-Z0-9]{2,3})(-[a-zA-Z0-9]{1,6})*$"
170
278
  },
171
279
  "dataSources": {
172
280
  "description": "Represents used data sources with a unique key/alias",
@@ -256,13 +364,17 @@
256
364
  "$ref": "#/definitions/inbound"
257
365
  },
258
366
  "outbounds": {
259
- "description": "Represents cross navigation for outbound target",
367
+ "description": "Describes intents that can be triggered from the application to navigate",
260
368
  "$ref": "#/definitions/outbound"
261
369
  }
262
370
  }
263
371
  }
264
372
  },
265
373
  "definitions": {
374
+ "i18n_key": {
375
+ "type": "string",
376
+ "pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
377
+ },
266
378
  "parameter": {
267
379
  "type": "object",
268
380
  "properties": {
@@ -387,7 +499,11 @@
387
499
  "1.5.0",
388
500
  "1.6.0",
389
501
  "1.7.0",
390
- "1.8.0"
502
+ "1.8.0",
503
+ "1.9.0",
504
+ "1.10.0",
505
+ "1.11.0",
506
+ "1.12.0"
391
507
  ]
392
508
  },
393
509
  "resources": {
@@ -448,7 +564,7 @@
448
564
  "type": "object",
449
565
  "additionalProperties": false,
450
566
  "patternProperties": {
451
- "^[a-zA-Z0-9_\\.\\-\\|\\@]*$": {
567
+ "^[a-zA-Z0-9_\\.\\-\\|@]*$": {
452
568
  "$ref": "#/definitions/model"
453
569
  }
454
570
  }
@@ -590,10 +706,15 @@
590
706
  "type": "object",
591
707
  "additionalProperties": false,
592
708
  "patternProperties": {
593
- "^[A-Za-z_][A-Za-z0-9_\\-\\|\\@]+$": {
709
+ "^[A-Za-z_][A-Za-z0-9_\\-\\|@]+$": {
594
710
  "$ref": "#/definitions/command"
595
711
  }
596
712
  }
713
+ },
714
+ "flexExtensionPointEnabled": {
715
+ "description": "Represents an indicator whether app variant is flex extension point enabled",
716
+ "type": "boolean",
717
+ "default": false
597
718
  }
598
719
  }
599
720
  },
@@ -773,6 +894,25 @@
773
894
  }
774
895
  }
775
896
  },
897
+ "sap.platform.mobilecards": {
898
+ "title": "JSON schema for SAP.PLATFORM.MOBILECARDS Namespace",
899
+ "description": "Represents Mobile Cards platform specific attributes",
900
+ "type": "object",
901
+ "additionalProperties": true,
902
+ "properties": {
903
+ "_version": {
904
+ "description": "Represents attributes format version. It is managed by namespace owner",
905
+ "type": "string",
906
+ "enum": [
907
+ "1.0.0"
908
+ ]
909
+ },
910
+ "compatible": {
911
+ "description": "Represents the compatibility of this app with the Mobile Cards platform.",
912
+ "type": "boolean"
913
+ }
914
+ }
915
+ },
776
916
  "sap.fiori": {
777
917
  "title": "JSON schema for SAP.FIORI Namespace",
778
918
  "description": "Represents SAP Fiori specific attributes",
@@ -822,7 +962,8 @@
822
962
  "enum": [
823
963
  "1.1.0",
824
964
  "1.2.0",
825
- "1.3.0"
965
+ "1.3.0",
966
+ "1.4.0"
826
967
  ]
827
968
  },
828
969
  "settings": {
@@ -945,17 +1086,17 @@
945
1086
  "globalFilterModel": {
946
1087
  "description": "Represents the name of global filter OData model, which contains entities definition that are relevant for global filters",
947
1088
  "type": "string",
948
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
1089
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
949
1090
  },
950
1091
  "globalFilterEntityType": {
951
1092
  "description": "Represents the entity to use as global filter in the smart filter bar control",
952
1093
  "type": "string",
953
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
1094
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
954
1095
  },
955
1096
  "globalFilterEntitySet": {
956
1097
  "description": "Represents the entity set to use as global filter in the smart filter bar control",
957
1098
  "type": "string",
958
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
1099
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
959
1100
  },
960
1101
  "showBasicSearch": {
961
1102
  "description": "Represents a switch to include basic search in the global filters",
@@ -1056,7 +1197,7 @@
1056
1197
  "applicationId": {
1057
1198
  "description": "Represents ID of an application",
1058
1199
  "type": "string",
1059
- "pattern": "^[a-zA-Z0-9\\/\\_]{1,30}$"
1200
+ "pattern": "^[a-zA-Z0-9\\/_]{1,30}$"
1060
1201
  },
1061
1202
  "configId": {
1062
1203
  "description": "Represents ID of an application configuration",
@@ -1131,7 +1272,7 @@
1131
1272
  "transaction": {
1132
1273
  "description": "Represents transaction of an application",
1133
1274
  "type": "string",
1134
- "pattern": "^[a-zA-Z0-9\\/\\_]{1,20}$"
1275
+ "pattern": "^[a-zA-Z0-9\\/_]{1,20}$"
1135
1276
  },
1136
1277
  "flavorId": {
1137
1278
  "description": "Represents SAP Screen Personas Flavor ID",
@@ -1207,7 +1348,7 @@
1207
1348
  "wcf-target-id": {
1208
1349
  "description": "Represents the target technical id for a WCF Application",
1209
1350
  "type": "string",
1210
- "pattern": "^[a-zA-Z0-9\\/\\_]{1,10}$"
1351
+ "pattern": "^[a-zA-Z0-9\\/_]{1,10}$"
1211
1352
  }
1212
1353
  }
1213
1354
  },
@@ -1381,12 +1522,14 @@
1381
1522
  "type": "string",
1382
1523
  "enum": [
1383
1524
  "1.0.0",
1384
- "1.1.0"
1525
+ "1.1.0",
1526
+ "1.2.0"
1385
1527
  ]
1386
1528
  },
1387
1529
  "service": {
1388
1530
  "description": "Unique Business Service Identifier",
1389
- "type": "string"
1531
+ "type": "string",
1532
+ "pattern": "^[^- @#$%^&()!]+$"
1390
1533
  },
1391
1534
  "public": {
1392
1535
  "description": "Specify if the UI can be accessed from a different space than origin development space",
@@ -1414,13 +1557,62 @@
1414
1557
  "1.4.0",
1415
1558
  "1.5.0",
1416
1559
  "1.6.0",
1417
- "1.7.0"
1560
+ "1.7.0",
1561
+ "1.8.0",
1562
+ "1.9.0",
1563
+ "1.10.0",
1564
+ "1.11.0",
1565
+ "1.13.0",
1566
+ "1.14.0",
1567
+ "1.15.0"
1418
1568
  ]
1419
1569
  },
1570
+ "designtime": {
1571
+ "description": "The path to the design time folder with assets files.",
1572
+ "type": "string"
1573
+ },
1420
1574
  "configuration": {
1421
- "description": "Represents configuration with parameters, which can be used inside the Card",
1575
+ "description": "Represents configuration with parameters, destinations, and filters, which can be used inside the card",
1422
1576
  "type": "object",
1423
- "additionalProperties": true
1577
+ "additionalProperties": false,
1578
+ "properties": {
1579
+ "enableMarkdown": {
1580
+ "description": "Markdown enablement for Adaptive Content.",
1581
+ "type": "boolean"
1582
+ },
1583
+ "parameters": {
1584
+ "description": "Map of parameters.",
1585
+ "type": "object",
1586
+ "additionalProperties": {
1587
+ "$ref": "#/definitions/Configuration.Parameter"
1588
+ }
1589
+ },
1590
+ "filters": {
1591
+ "description": "Map of filters.",
1592
+ "type": "object",
1593
+ "additionalProperties": {
1594
+ "$ref": "#/definitions/Configuration.Filter"
1595
+ }
1596
+ },
1597
+ "destinations": {
1598
+ "description": "Describes what destinations are used by the card.",
1599
+ "type": "object",
1600
+ "additionalProperties": {
1601
+ "$ref": "#/definitions/Configuration.Destinations"
1602
+ }
1603
+ },
1604
+ "actionHandlers": {
1605
+ "description": "Holds configuration for the default action handlers.",
1606
+ "type": "object",
1607
+ "additionalProperties": false,
1608
+ "properties": {
1609
+ "submit": {
1610
+ "description": "Configuration for the submit action handler.",
1611
+ "type": "object"
1612
+ }
1613
+ }
1614
+ }
1615
+ }
1424
1616
  },
1425
1617
  "type": {
1426
1618
  "description": "Represents the type of the card's content",
@@ -1431,7 +1623,9 @@
1431
1623
  "Table",
1432
1624
  "Object",
1433
1625
  "Timeline",
1434
- "Component"
1626
+ "Component",
1627
+ "Calendar",
1628
+ "AdaptiveCard"
1435
1629
  ]
1436
1630
  },
1437
1631
  "data": {
@@ -1459,6 +1653,10 @@
1459
1653
  },
1460
1654
  "content": {
1461
1655
  "description": "Represents card content attributes. Content type should be the same as card type e.g. if card type List is used the content type should also be List"
1656
+ },
1657
+ "extension": {
1658
+ "description": "[Experimental] A path to an Extension implementation. It is resolved relatively to the manifest.",
1659
+ "type": "string"
1462
1660
  }
1463
1661
  },
1464
1662
  "oneOf": [
@@ -1583,6 +1781,46 @@
1583
1781
  }
1584
1782
  }
1585
1783
  ]
1784
+ },
1785
+ {
1786
+ "allOf": [
1787
+ {
1788
+ "properties": {
1789
+ "type": {
1790
+ "enum": [
1791
+ "Calendar"
1792
+ ]
1793
+ }
1794
+ }
1795
+ },
1796
+ {
1797
+ "properties": {
1798
+ "content": {
1799
+ "$ref": "#/definitions/ContentType.Calendar"
1800
+ }
1801
+ }
1802
+ }
1803
+ ]
1804
+ },
1805
+ {
1806
+ "allOf": [
1807
+ {
1808
+ "properties": {
1809
+ "type": {
1810
+ "enum": [
1811
+ "AdaptiveCard"
1812
+ ]
1813
+ }
1814
+ }
1815
+ },
1816
+ {
1817
+ "properties": {
1818
+ "content": {
1819
+ "$ref": "#/definitions/ContentType.AdaptiveCard"
1820
+ }
1821
+ }
1822
+ }
1823
+ ]
1586
1824
  }
1587
1825
  ],
1588
1826
  "definitions": {
@@ -1591,107 +1829,691 @@
1591
1829
  "pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
1592
1830
  }
1593
1831
  }
1594
- }
1595
- },
1596
- "definitions": {
1597
- "parameters": {
1598
- "description": "Represents parameters that are passed in the actions",
1599
- "type": "object",
1600
- "additionalProperties": true
1601
- },
1602
- "service_0": {
1603
- "description": "Represents service that will be used for an actions",
1604
- "oneOf": [
1605
- {
1606
- "description": "Represents name of the Service to be used for the action",
1607
- "type": "string"
1608
- },
1609
- {
1610
- "type": "object",
1611
- "additionalProperties": false,
1612
- "properties": {
1613
- "name": {
1614
- "description": "Represents name of the Service to be used for the action",
1615
- "type": "string"
1616
- },
1617
- "parameters": {
1618
- "$ref": "#/definitions/parameters"
1619
- }
1620
- }
1621
- }
1622
- ]
1623
1832
  },
1624
- "request": {
1625
- "description": "Represents request attributes",
1833
+ "sap.package": {
1834
+ "title": "JSON schema for SAP.PACKAGE Namespace",
1835
+ "description": "Represents general package attributes. Experimental, will be detailed in the future",
1626
1836
  "type": "object",
1627
- "additionalProperties": false,
1837
+ "additionalProperties": true,
1628
1838
  "required": [
1629
- "url"
1839
+ "id",
1840
+ "title",
1841
+ "description",
1842
+ "packageVersion",
1843
+ "vendor",
1844
+ "support"
1630
1845
  ],
1631
1846
  "properties": {
1632
- "mode": {
1633
- "description": "The mode of the request",
1847
+ "_version": {
1848
+ "description": "Represents SAP.PACKAGE attributes format version. It is managed by namespace owner",
1634
1849
  "type": "string",
1635
- "oneOf": [
1636
- {
1637
- "enum": [
1638
- "no-cors",
1639
- "same-origin",
1640
- "cors"
1641
- ],
1642
- "default": "cors"
1643
- },
1644
- {
1645
- "$ref": "#/definitions/simpleBinding"
1646
- }
1850
+ "enum": [
1851
+ "1.0.0",
1852
+ "1.1.0"
1647
1853
  ]
1648
1854
  },
1649
- "url": {
1650
- "description": "The URL to make the request to",
1651
- "type": "string"
1855
+ "id": {
1856
+ "description": "Represents mandatory unique package identifier",
1857
+ "$ref": "#/definitions/iddef"
1652
1858
  },
1653
- "method": {
1654
- "description": "The HTTP method",
1655
- "type": "string",
1859
+ "i18n": {
1860
+ "default": "i18n/i18n.properties",
1861
+ "description": "Represents path inside the package to the properties file containing text symbols for the packages texts",
1656
1862
  "oneOf": [
1657
1863
  {
1658
- "enum": [
1659
- "GET",
1660
- "POST"
1661
- ],
1662
- "default": "GET"
1663
- },
1664
- {
1665
- "$ref": "#/definitions/simpleBinding"
1864
+ "default": "i18n/i18n.properties",
1865
+ "type": "string"
1666
1866
  }
1667
1867
  ]
1668
1868
  },
1669
- "parameters": {
1670
- "description": "Represents the request parameters. If it is a POST request the parameters will be put as key/value pairs into the body of the request",
1671
- "$ref": "#/definitions/parameters"
1672
- },
1673
- "headers": {
1674
- "description": "Represents HTTP headers",
1869
+ "packageVersion": {
1870
+ "description": "Represents mandatory semantic version of the package information and optional the upgrade notification",
1675
1871
  "type": "object",
1676
- "additionalProperties": true
1677
- },
1678
- "withCredentials": {
1679
- "description": "Indicates whether cross-site requests should be made using credentials.",
1680
- "oneOf": [
1681
- {
1682
- "type": "boolean",
1683
- "default": false
1872
+ "required": [
1873
+ "version"
1874
+ ],
1875
+ "properties": {
1876
+ "version": {
1877
+ "description": "Represents mandatory semantic version of the package",
1878
+ "$ref": "#/definitions/semanticversion"
1684
1879
  },
1685
- {
1686
- "$ref": "#/definitions/simpleBinding"
1880
+ "upgradeNotification": {
1881
+ "description": "Represents optional upgrade notification once the package is available. none - no notification, package will be installed automatically for any version. major - notification before a new major version is installed. major.minor - notification before a major and minor version is installed. all - notification before any new version is installed, including patches",
1882
+ "type": "string",
1883
+ "default": "all",
1884
+ "enum": [
1885
+ "none",
1886
+ "major",
1887
+ "major.minor",
1888
+ "all"
1889
+ ]
1687
1890
  }
1891
+ }
1892
+ },
1893
+ "type": {
1894
+ "description": "Represents type of an package and can be card, workflow, workspace-template",
1895
+ "type": "string",
1896
+ "enum": [
1897
+ "card",
1898
+ "workflow",
1899
+ "workspace-template"
1688
1900
  ]
1689
- }
1690
- }
1691
- },
1692
- "statusTextFormatter": {
1693
- "type": "object",
1694
- "description": "Defines fields for dynamic status formatting.",
1901
+ },
1902
+ "title": {
1903
+ "description": "Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1904
+ "type": "string"
1905
+ },
1906
+ "subTitle": {
1907
+ "description": "Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1908
+ "type": "string"
1909
+ },
1910
+ "shortTitle": {
1911
+ "description": "Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1912
+ "type": "string"
1913
+ },
1914
+ "info": {
1915
+ "description": "Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1916
+ "type": "string"
1917
+ },
1918
+ "description": {
1919
+ "description": "Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1920
+ "type": "string"
1921
+ },
1922
+ "icon": {
1923
+ "description": "Represents icon name or source URL for the package",
1924
+ "type": "string"
1925
+ },
1926
+ "tags": {
1927
+ "description": "Represents array of keywords used to find the package",
1928
+ "type": "object",
1929
+ "additionalProperties": true,
1930
+ "required": [
1931
+ "keywords"
1932
+ ],
1933
+ "properties": {
1934
+ "keywords": {
1935
+ "$ref": "#/definitions/tag"
1936
+ },
1937
+ "technicalAttributes": {
1938
+ "type": "array",
1939
+ "items": {
1940
+ "type": "string",
1941
+ "pattern": "^[A-Z0-9_\\-\\/]+$"
1942
+ }
1943
+ }
1944
+ }
1945
+ },
1946
+ "vendor": {
1947
+ "description": "Represents the support information",
1948
+ "$ref": "#/definitions/vendor"
1949
+ },
1950
+ "homepage": {
1951
+ "description": "Represents the homepage information",
1952
+ "$ref": "#/definitions/infolink"
1953
+ },
1954
+ "support": {
1955
+ "description": "Represents the support information",
1956
+ "$ref": "#/definitions/infolink"
1957
+ },
1958
+ "documentation": {
1959
+ "description": "Represents the documentation information",
1960
+ "$ref": "#/definitions/infolink"
1961
+ },
1962
+ "contents": {
1963
+ "type": "array",
1964
+ "items": {
1965
+ "description": "Represents the artifacts contained in the package",
1966
+ "$ref": "#/definitions/contentitem"
1967
+ }
1968
+ },
1969
+ "consumption": {
1970
+ "description": "Represents list of product ids that are allowed to consume this package. if not defined all products that are capable of installing this package are allowed",
1971
+ "type": "array",
1972
+ "items": {
1973
+ "description": "Represents the id of the product that can consume this package.",
1974
+ "type": "string"
1975
+ }
1976
+ },
1977
+ "dependencies": {
1978
+ "description": "Represents the products and service that the pacakge depends on",
1979
+ "type": "object",
1980
+ "properties": {
1981
+ "products": {
1982
+ "description": "List of products that this package depends on",
1983
+ "type": "array",
1984
+ "items": {
1985
+ "type": "string"
1986
+ }
1987
+ },
1988
+ "services": {
1989
+ "description": "List of services that this package depends on",
1990
+ "type": "array",
1991
+ "items": {
1992
+ "type": "string"
1993
+ }
1994
+ }
1995
+ }
1996
+ }
1997
+ }
1998
+ },
1999
+ "sap.artifact": {
2000
+ "title": "JSON schema for SAP.ARTIFACT Namespace",
2001
+ "description": "Represents general artifact attributes.",
2002
+ "type": "object",
2003
+ "additionalProperties": true,
2004
+ "required": [
2005
+ "id",
2006
+ "type",
2007
+ "title",
2008
+ "description",
2009
+ "artifactVersion"
2010
+ ],
2011
+ "properties": {
2012
+ "_version": {
2013
+ "description": "Represents SAP.ARTIFACT attributes format version. It is managed by namespace owner",
2014
+ "type": "string",
2015
+ "enum": [
2016
+ "1.0.0",
2017
+ "1.1.0"
2018
+ ]
2019
+ },
2020
+ "id": {
2021
+ "description": "Represents mandatory unique artifact identifier",
2022
+ "$ref": "#/definitions/iddef"
2023
+ },
2024
+ "i18n": {
2025
+ "default": "i18n/i18n.properties",
2026
+ "description": "Represents path inside the artifact to the properties file containing text symbols for the artifacts texts",
2027
+ "oneOf": [
2028
+ {
2029
+ "default": "i18n/i18n.properties",
2030
+ "type": "string"
2031
+ }
2032
+ ]
2033
+ },
2034
+ "artifactVersion": {
2035
+ "description": "Represents mandatory semantic version of the artifact",
2036
+ "type": "object",
2037
+ "required": [
2038
+ "version"
2039
+ ],
2040
+ "properties": {
2041
+ "version": {
2042
+ "$ref": "#/definitions/semanticversion"
2043
+ }
2044
+ }
2045
+ },
2046
+ "type": {
2047
+ "description": "Represents type of an artifact and can be card, workflow, workspace-template",
2048
+ "type": "string",
2049
+ "enum": [
2050
+ "card",
2051
+ "workflow",
2052
+ "workspace-template"
2053
+ ]
2054
+ },
2055
+ "title": {
2056
+ "description": "Represents mandatory title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2057
+ "type": "string"
2058
+ },
2059
+ "subTitle": {
2060
+ "description": "Represents subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2061
+ "type": "string"
2062
+ },
2063
+ "shortTitle": {
2064
+ "description": "Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2065
+ "type": "string"
2066
+ },
2067
+ "info": {
2068
+ "description": "Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2069
+ "type": "string"
2070
+ },
2071
+ "description": {
2072
+ "description": "Represents description; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2073
+ "type": "string"
2074
+ },
2075
+ "icon": {
2076
+ "description": "Represents icon name or source URL for the artifact",
2077
+ "type": "string"
2078
+ },
2079
+ "tags": {
2080
+ "description": "Represents array of keywords used to find the artifact",
2081
+ "type": "object",
2082
+ "additionalProperties": true,
2083
+ "required": [
2084
+ "keywords"
2085
+ ],
2086
+ "properties": {
2087
+ "keywords": {
2088
+ "$ref": "#/definitions/tag"
2089
+ },
2090
+ "technicalAttributes": {
2091
+ "type": "array",
2092
+ "items": {
2093
+ "type": "string",
2094
+ "pattern": "^[A-Z0-9_\\-\\/]+$"
2095
+ }
2096
+ }
2097
+ }
2098
+ }
2099
+ }
2100
+ }
2101
+ },
2102
+ "definitions": {
2103
+ "tag": {
2104
+ "type": "array",
2105
+ "items": {
2106
+ "description": "Represents a tag; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2107
+ "type": "string"
2108
+ }
2109
+ },
2110
+ "semanticversion": {
2111
+ "description": "The version number of the schema in major.minor.patch format.",
2112
+ "type": "string",
2113
+ "pattern": "^[0-9]{1,}.[0-9]{1,}.[0-9]{1,}$"
2114
+ },
2115
+ "iddef": {
2116
+ "type": "string",
2117
+ "maxLength": 70,
2118
+ "pattern": "^[A-Za-z]{2,}.[A-Za-z]{2,}"
2119
+ },
2120
+ "contentitem": {
2121
+ "description": "Represents an item of the content list defining the sub manifest and baseurl",
2122
+ "type": "object",
2123
+ "properties": {
2124
+ "baseURL": {
2125
+ "description": "Relative url to the artifact within the folder in this package",
2126
+ "type": "string"
2127
+ },
2128
+ "manifest": {
2129
+ "description": "Wraps the child manifest",
2130
+ "type": "object",
2131
+ "properties": {
2132
+ "sap.artifact": {
2133
+ "description": "The artifacts manifest",
2134
+ "type": "object"
2135
+ }
2136
+ }
2137
+ }
2138
+ }
2139
+ },
2140
+ "infolink": {
2141
+ "description": "Represents a link information with text and url",
2142
+ "type": "object",
2143
+ "required": [
2144
+ "url",
2145
+ "text"
2146
+ ],
2147
+ "properties": {
2148
+ "url": {
2149
+ "description": "Represents a target url",
2150
+ "type": "string",
2151
+ "format": "uri-template"
2152
+ },
2153
+ "text": {
2154
+ "description": "Represents a descriptive text for the target",
2155
+ "type": "string"
2156
+ }
2157
+ }
2158
+ },
2159
+ "vendor": {
2160
+ "description": "Represents the vendor information",
2161
+ "type": "object",
2162
+ "required": [
2163
+ "id",
2164
+ "name",
2165
+ "url"
2166
+ ],
2167
+ "properties": {
2168
+ "id": {
2169
+ "description": "Represents the vendor id",
2170
+ "type": "string"
2171
+ },
2172
+ "name": {
2173
+ "description": "Represents the vendor name",
2174
+ "type": "string"
2175
+ },
2176
+ "lineOfBusiness": {
2177
+ "description": "Represents the vendor line of business within the vendors organization if any",
2178
+ "type": "string"
2179
+ },
2180
+ "url": {
2181
+ "description": "Represents a target url",
2182
+ "type": "string",
2183
+ "format": "uri-template"
2184
+ }
2185
+ }
2186
+ },
2187
+ "Microchart.StackedBar.Bar": {
2188
+ "type": "object",
2189
+ "additionalProperties": false,
2190
+ "properties": {
2191
+ "value": {
2192
+ "description": "The actual value shown as a colored horizontal bar",
2193
+ "oneOf": [
2194
+ {
2195
+ "type": "number"
2196
+ },
2197
+ {
2198
+ "$ref": "#/definitions/simpleBinding"
2199
+ }
2200
+ ]
2201
+ },
2202
+ "displayValue": {
2203
+ "description": "The value, which will be displayed as a text in the tooltip of the bar",
2204
+ "type": "string"
2205
+ },
2206
+ "legendTitle": {
2207
+ "description": "Title, which will be displayed in the legend",
2208
+ "type": "string"
2209
+ },
2210
+ "color": {
2211
+ "description": "The color of the bar",
2212
+ "type": "string",
2213
+ "oneOf": [
2214
+ {
2215
+ "$ref": "#/definitions/Enums.ValueColor"
2216
+ },
2217
+ {
2218
+ "type": "string"
2219
+ }
2220
+ ]
2221
+ }
2222
+ }
2223
+ },
2224
+ "Microchart.Bullet.Threshold": {
2225
+ "type": "object",
2226
+ "additionalProperties": false,
2227
+ "properties": {
2228
+ "value": {
2229
+ "description": "The value of the threshold",
2230
+ "oneOf": [
2231
+ {
2232
+ "type": "number"
2233
+ },
2234
+ {
2235
+ "$ref": "#/definitions/simpleBinding"
2236
+ }
2237
+ ]
2238
+ },
2239
+ "color": {
2240
+ "description": "The state color of the threshold",
2241
+ "type": "string",
2242
+ "oneOf": [
2243
+ {
2244
+ "$ref": "#/definitions/Enums.ValueColor"
2245
+ },
2246
+ {
2247
+ "$ref": "#/definitions/simpleBinding"
2248
+ }
2249
+ ]
2250
+ }
2251
+ }
2252
+ },
2253
+ "Microchart.StackedBar": {
2254
+ "type": "object",
2255
+ "additionalProperties": false,
2256
+ "required": [
2257
+ "type"
2258
+ ],
2259
+ "properties": {
2260
+ "type": {
2261
+ "description": "Represents the type of the Microchart.",
2262
+ "type": "string",
2263
+ "const": "StackedBar"
2264
+ },
2265
+ "maxValue": {
2266
+ "description": "The maximum scale value for the bar chart",
2267
+ "oneOf": [
2268
+ {
2269
+ "type": "number"
2270
+ },
2271
+ {
2272
+ "$ref": "#/definitions/simpleBinding"
2273
+ }
2274
+ ]
2275
+ },
2276
+ "displayValue": {
2277
+ "description": "The value, which will be displayed as a text next to the bar",
2278
+ "type": "string"
2279
+ },
2280
+ "bars": {
2281
+ "description": "The bars of the chart.",
2282
+ "type": "array",
2283
+ "items": {
2284
+ "$ref": "#/definitions/Microchart.StackedBar.Bar"
2285
+ }
2286
+ }
2287
+ }
2288
+ },
2289
+ "Microchart.Bullet": {
2290
+ "type": "object",
2291
+ "additionalProperties": false,
2292
+ "required": [
2293
+ "type"
2294
+ ],
2295
+ "properties": {
2296
+ "type": {
2297
+ "description": "Represents the type of the Microchart.",
2298
+ "type": "string",
2299
+ "const": "Bullet"
2300
+ },
2301
+ "value": {
2302
+ "description": "The actual value shown as a colored horizontal bar",
2303
+ "oneOf": [
2304
+ {
2305
+ "type": "number"
2306
+ },
2307
+ {
2308
+ "$ref": "#/definitions/simpleBinding"
2309
+ }
2310
+ ]
2311
+ },
2312
+ "minValue": {
2313
+ "description": "The minimum scale value for the bar chart",
2314
+ "oneOf": [
2315
+ {
2316
+ "type": "number"
2317
+ },
2318
+ {
2319
+ "$ref": "#/definitions/simpleBinding"
2320
+ }
2321
+ ]
2322
+ },
2323
+ "maxValue": {
2324
+ "description": "The maximum scale value for the bar chart",
2325
+ "oneOf": [
2326
+ {
2327
+ "type": "number"
2328
+ },
2329
+ {
2330
+ "$ref": "#/definitions/simpleBinding"
2331
+ }
2332
+ ]
2333
+ },
2334
+ "displayValue": {
2335
+ "description": "The actual value, which will be displayed as a text next to the bar",
2336
+ "type": "string"
2337
+ },
2338
+ "target": {
2339
+ "description": "The target value - displayed as a vertical line (marker)",
2340
+ "oneOf": [
2341
+ {
2342
+ "type": "number"
2343
+ },
2344
+ {
2345
+ "$ref": "#/definitions/simpleBinding"
2346
+ }
2347
+ ]
2348
+ },
2349
+ "scale": {
2350
+ "description": "The scaling suffix that is appended to all values",
2351
+ "type": "string"
2352
+ },
2353
+ "color": {
2354
+ "description": "The state color of the bar",
2355
+ "type": "string",
2356
+ "oneOf": [
2357
+ {
2358
+ "$ref": "#/definitions/Enums.ValueColor"
2359
+ },
2360
+ {
2361
+ "$ref": "#/definitions/simpleBinding"
2362
+ }
2363
+ ]
2364
+ },
2365
+ "thresholds": {
2366
+ "description": "The thresholds indicators of the bar",
2367
+ "type": "array",
2368
+ "items": {
2369
+ "$ref": "#/definitions/Microchart.Bullet.Threshold"
2370
+ }
2371
+ }
2372
+ }
2373
+ },
2374
+ "Configuration.Filter.Item": {
2375
+ "description": "A single filter selection option",
2376
+ "type": "object",
2377
+ "additionalProperties": false,
2378
+ "properties": {
2379
+ "title": {
2380
+ "description": "The title of the filter option.",
2381
+ "type": "string"
2382
+ },
2383
+ "key": {
2384
+ "description": "The unique key of the filter option. Mapped to the filter's value.",
2385
+ "type": "string"
2386
+ }
2387
+ }
2388
+ },
2389
+ "Configuration.BasicDataType": {
2390
+ "description": "Basic data types for parameters and filters.",
2391
+ "type": "string",
2392
+ "enum": [
2393
+ "string",
2394
+ "integer",
2395
+ "number",
2396
+ "boolean",
2397
+ "date",
2398
+ "datetime"
2399
+ ]
2400
+ },
2401
+ "parameters": {
2402
+ "description": "Represents parameters that are passed in the actions",
2403
+ "type": "object",
2404
+ "additionalProperties": true
2405
+ },
2406
+ "extension": {
2407
+ "description": "[Experimental] Represents attributes, needed to get data via extension.",
2408
+ "type": "object",
2409
+ "additionalProperties": false,
2410
+ "required": [
2411
+ "method"
2412
+ ],
2413
+ "properties": {
2414
+ "method": {
2415
+ "description": "The method of the extension, which fetches data.",
2416
+ "type": "string"
2417
+ },
2418
+ "args": {
2419
+ "description": "The arguments, with which the method will be called.",
2420
+ "type": "array"
2421
+ }
2422
+ }
2423
+ },
2424
+ "service_0": {
2425
+ "description": "Represents service that will be used for an actions",
2426
+ "oneOf": [
2427
+ {
2428
+ "description": "Represents name of the Service to be used for the action",
2429
+ "type": "string"
2430
+ },
2431
+ {
2432
+ "type": "object",
2433
+ "additionalProperties": false,
2434
+ "properties": {
2435
+ "name": {
2436
+ "description": "Represents name of the Service to be used for the action",
2437
+ "type": "string"
2438
+ },
2439
+ "parameters": {
2440
+ "$ref": "#/definitions/parameters"
2441
+ }
2442
+ }
2443
+ }
2444
+ ]
2445
+ },
2446
+ "request": {
2447
+ "description": "Represents request attributes",
2448
+ "type": "object",
2449
+ "additionalProperties": false,
2450
+ "required": [
2451
+ "url"
2452
+ ],
2453
+ "properties": {
2454
+ "mode": {
2455
+ "description": "The mode of the request",
2456
+ "type": "string",
2457
+ "oneOf": [
2458
+ {
2459
+ "enum": [
2460
+ "no-cors",
2461
+ "same-origin",
2462
+ "cors"
2463
+ ],
2464
+ "default": "cors"
2465
+ },
2466
+ {
2467
+ "$ref": "#/definitions/simpleBinding"
2468
+ }
2469
+ ]
2470
+ },
2471
+ "url": {
2472
+ "description": "The URL to make the request to",
2473
+ "type": "string"
2474
+ },
2475
+ "method": {
2476
+ "description": "The HTTP method",
2477
+ "type": "string",
2478
+ "oneOf": [
2479
+ {
2480
+ "enum": [
2481
+ "GET",
2482
+ "POST"
2483
+ ],
2484
+ "default": "GET"
2485
+ },
2486
+ {
2487
+ "$ref": "#/definitions/simpleBinding"
2488
+ }
2489
+ ]
2490
+ },
2491
+ "parameters": {
2492
+ "description": "Represents the request parameters. If it is a POST request the parameters will be put as key/value pairs into the body of the request",
2493
+ "$ref": "#/definitions/parameters"
2494
+ },
2495
+ "headers": {
2496
+ "description": "Represents HTTP headers",
2497
+ "type": "object",
2498
+ "additionalProperties": true
2499
+ },
2500
+ "withCredentials": {
2501
+ "description": "Indicates whether cross-site requests should be made using credentials.",
2502
+ "oneOf": [
2503
+ {
2504
+ "type": "boolean",
2505
+ "default": false
2506
+ },
2507
+ {
2508
+ "$ref": "#/definitions/simpleBinding"
2509
+ }
2510
+ ]
2511
+ }
2512
+ }
2513
+ },
2514
+ "statusTextFormatter": {
2515
+ "type": "object",
2516
+ "description": "Defines fields for dynamic status formatting.",
1695
2517
  "additionalProperties": false,
1696
2518
  "properties": {
1697
2519
  "format": {
@@ -1709,6 +2531,229 @@
1709
2531
  }
1710
2532
  }
1711
2533
  },
2534
+ "iconBackgroundColor": {
2535
+ "oneOf": [
2536
+ {
2537
+ "enum": [
2538
+ "Accent1",
2539
+ "Accent2",
2540
+ "Accent3",
2541
+ "Accent4",
2542
+ "Accent5",
2543
+ "Accent6",
2544
+ "Accent7",
2545
+ "Accent8",
2546
+ "Accent9",
2547
+ "Accent10",
2548
+ "Placeholder",
2549
+ "Random",
2550
+ "TileIcon",
2551
+ "Transparent"
2552
+ ],
2553
+ "default": "Transparent"
2554
+ },
2555
+ {
2556
+ "$ref": "#/definitions/simpleBinding"
2557
+ }
2558
+ ]
2559
+ },
2560
+ "ContentType.Calendar.SpecialDate.Template": {
2561
+ "description": "The template for all specialDates",
2562
+ "type": "object",
2563
+ "additionalProperties": false,
2564
+ "properties": {
2565
+ "startDate": {
2566
+ "description": "The start date of the special date. The accepted date format is ISO 8601.",
2567
+ "type": "string"
2568
+ },
2569
+ "endDate": {
2570
+ "description": "The end date of the special date. The accepted date format is ISO 8601.",
2571
+ "type": "string"
2572
+ },
2573
+ "type": {
2574
+ "description": "The type of the special date - one of the types defined in the legend.",
2575
+ "oneOf": [
2576
+ {
2577
+ "enum": [
2578
+ "Type01",
2579
+ "Type02",
2580
+ "Type03",
2581
+ "Type04",
2582
+ "Type05",
2583
+ "Type06",
2584
+ "Type07",
2585
+ "Type08",
2586
+ "Type09",
2587
+ "Type10",
2588
+ "Type11",
2589
+ "Type12",
2590
+ "Type13",
2591
+ "Type14",
2592
+ "Type15",
2593
+ "Type16",
2594
+ "Type17",
2595
+ "Type18",
2596
+ "Type19",
2597
+ "Type20"
2598
+ ],
2599
+ "default": "Type01"
2600
+ },
2601
+ {
2602
+ "$ref": "#/definitions/simpleBinding"
2603
+ }
2604
+ ]
2605
+ }
2606
+ }
2607
+ },
2608
+ "ContentType.Calendar.LegendItem.Template": {
2609
+ "description": "The template for all legendItems",
2610
+ "type": "object",
2611
+ "additionalProperties": false,
2612
+ "properties": {
2613
+ "category": {
2614
+ "description": "Defines which card component describes the legend item. Available categories: \"calendar\" (represented as square) or \"appointment\" (circle).",
2615
+ "type": "string"
2616
+ },
2617
+ "text": {
2618
+ "description": "The describing information of the item.",
2619
+ "type": "string"
2620
+ },
2621
+ "type": {
2622
+ "description": "The type of the legend item corresponding with the described component.",
2623
+ "oneOf": [
2624
+ {
2625
+ "enum": [
2626
+ "Type01",
2627
+ "Type02",
2628
+ "Type03",
2629
+ "Type04",
2630
+ "Type05",
2631
+ "Type06",
2632
+ "Type07",
2633
+ "Type08",
2634
+ "Type09",
2635
+ "Type10",
2636
+ "Type11",
2637
+ "Type12",
2638
+ "Type13",
2639
+ "Type14",
2640
+ "Type15",
2641
+ "Type16",
2642
+ "Type17",
2643
+ "Type18",
2644
+ "Type19",
2645
+ "Type20"
2646
+ ],
2647
+ "default": "Type01"
2648
+ },
2649
+ {
2650
+ "$ref": "#/definitions/simpleBinding"
2651
+ }
2652
+ ]
2653
+ }
2654
+ }
2655
+ },
2656
+ "ContentType.Calendar.Item.Template": {
2657
+ "description": "The template for all items",
2658
+ "type": "object",
2659
+ "additionalProperties": false,
2660
+ "properties": {
2661
+ "startDate": {
2662
+ "description": "The start date of the item. The accepted date format is ISO 8601.",
2663
+ "type": "string"
2664
+ },
2665
+ "endDate": {
2666
+ "description": "The end date of the item. The accepted date format is ISO 8601.",
2667
+ "type": "string"
2668
+ },
2669
+ "title": {
2670
+ "description": "The title of the item.",
2671
+ "type": "string"
2672
+ },
2673
+ "text": {
2674
+ "description": "The additional information of the item.",
2675
+ "type": "string"
2676
+ },
2677
+ "icon": {
2678
+ "$ref": "#/definitions/simpleIcon"
2679
+ },
2680
+ "type": {
2681
+ "description": "The type of the item - one of the types defined in the legend.",
2682
+ "oneOf": [
2683
+ {
2684
+ "enum": [
2685
+ "Type01",
2686
+ "Type02",
2687
+ "Type03",
2688
+ "Type04",
2689
+ "Type05",
2690
+ "Type06",
2691
+ "Type07",
2692
+ "Type08",
2693
+ "Type09",
2694
+ "Type10",
2695
+ "Type11",
2696
+ "Type12",
2697
+ "Type13",
2698
+ "Type14",
2699
+ "Type15",
2700
+ "Type16",
2701
+ "Type17",
2702
+ "Type18",
2703
+ "Type19",
2704
+ "Type20"
2705
+ ],
2706
+ "default": "Type01"
2707
+ },
2708
+ {
2709
+ "$ref": "#/definitions/simpleBinding"
2710
+ }
2711
+ ]
2712
+ }
2713
+ }
2714
+ },
2715
+ "ContentType.Calendar.SpecialDate": {
2716
+ "description": "Describes each specialDate.",
2717
+ "type": "object",
2718
+ "additionalProperties": false,
2719
+ "properties": {
2720
+ "template": {
2721
+ "$ref": "#/definitions/ContentType.Calendar.SpecialDate.Template"
2722
+ },
2723
+ "path": {
2724
+ "description": "Defines the path to the structure holding the data about the specialDates.",
2725
+ "type": "string"
2726
+ }
2727
+ }
2728
+ },
2729
+ "ContentType.Calendar.LegendItem": {
2730
+ "description": "Describes each legendItem.",
2731
+ "type": "object",
2732
+ "additionalProperties": false,
2733
+ "properties": {
2734
+ "template": {
2735
+ "$ref": "#/definitions/ContentType.Calendar.LegendItem.Template"
2736
+ },
2737
+ "path": {
2738
+ "description": "Defines the path to the structure holding the data about the legendItems.",
2739
+ "type": "string"
2740
+ }
2741
+ }
2742
+ },
2743
+ "ContentType.Calendar.Item": {
2744
+ "description": "Describes each item.",
2745
+ "type": "object",
2746
+ "additionalProperties": false,
2747
+ "properties": {
2748
+ "template": {
2749
+ "$ref": "#/definitions/ContentType.Calendar.Item.Template"
2750
+ },
2751
+ "path": {
2752
+ "description": "Defines the path to the structure holding the data about the items.",
2753
+ "type": "string"
2754
+ }
2755
+ }
2756
+ },
1712
2757
  "progressIndicator": {
1713
2758
  "description": "Represents progress indicator attributes",
1714
2759
  "type": "object",
@@ -1763,19 +2808,43 @@
1763
2808
  }
1764
2809
  ]
1765
2810
  },
2811
+ "textAlign": {
2812
+ "description": "Represents options for text alignments",
2813
+ "type": "string",
2814
+ "enum": [
2815
+ "Begin",
2816
+ "Center",
2817
+ "End",
2818
+ "Initial",
2819
+ "Left",
2820
+ "Right"
2821
+ ],
2822
+ "default": "Begin"
2823
+ },
1766
2824
  "ContentType.Table.Column": {
1767
2825
  "description": "Represents object item attributes",
1768
2826
  "type": "object",
1769
2827
  "additionalProperties": false,
1770
2828
  "properties": {
1771
2829
  "title": {
1772
- "description": "Defines language-dependent title of the column.",
2830
+ "description": "Defines a title of the column; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1773
2831
  "type": "string"
1774
2832
  },
1775
2833
  "width": {
1776
2834
  "description": "Defines the width of the column.",
1777
2835
  "type": "string"
1778
2836
  },
2837
+ "hAlign": {
2838
+ "description": "Defines the horizontal alignment of the column content.",
2839
+ "oneOf": [
2840
+ {
2841
+ "$ref": "#/definitions/textAlign"
2842
+ },
2843
+ {
2844
+ "$ref": "#/definitions/simpleBinding"
2845
+ }
2846
+ ]
2847
+ },
1779
2848
  "value": {
1780
2849
  "description": "Represents the text value of the column.",
1781
2850
  "type": "string"
@@ -1824,6 +2893,10 @@
1824
2893
  "progressIndicator": {
1825
2894
  "description": "Represents progress indicator attributes",
1826
2895
  "$ref": "#/definitions/progressIndicator"
2896
+ },
2897
+ "visible": {
2898
+ "description": "Represents the visibility state of the column",
2899
+ "$ref": "#/definitions/visibility"
1827
2900
  }
1828
2901
  }
1829
2902
  },
@@ -1889,6 +2962,10 @@
1889
2962
  "emailSubject": {
1890
2963
  "description": "Represents the subject of the email. Works only with item of type 'email'.",
1891
2964
  "type": "string"
2965
+ },
2966
+ "visible": {
2967
+ "description": "Represents the visibility state of the item",
2968
+ "$ref": "#/definitions/visibility"
1892
2969
  }
1893
2970
  }
1894
2971
  },
@@ -1898,7 +2975,7 @@
1898
2975
  "additionalProperties": false,
1899
2976
  "properties": {
1900
2977
  "title": {
1901
- "description": "Defines language-dependent title of the object group.",
2978
+ "description": "Defines a title of the object group; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
1902
2979
  "type": "string"
1903
2980
  },
1904
2981
  "items": {
@@ -1907,6 +2984,21 @@
1907
2984
  "items": {
1908
2985
  "$ref": "#/definitions/ContentType.Object.Item"
1909
2986
  }
2987
+ },
2988
+ "visible": {
2989
+ "description": "Represents the visibility state of the group",
2990
+ "$ref": "#/definitions/visibility"
2991
+ }
2992
+ }
2993
+ },
2994
+ "simpleIcon": {
2995
+ "description": "Represents simple icon attributes",
2996
+ "type": "object",
2997
+ "additionalProperties": false,
2998
+ "properties": {
2999
+ "src": {
3000
+ "type": "string",
3001
+ "description": "Represents icon name or source URL"
1910
3002
  }
1911
3003
  }
1912
3004
  },
@@ -1941,10 +3033,21 @@
1941
3033
  },
1942
3034
  "icon": {
1943
3035
  "description": "The icon of the timeline item.",
1944
- "$ref": "#/definitions/icon"
3036
+ "$ref": "#/definitions/simpleIcon"
1945
3037
  }
1946
3038
  }
1947
3039
  },
3040
+ "visibility": {
3041
+ "oneOf": [
3042
+ {
3043
+ "type": "boolean",
3044
+ "default": true
3045
+ },
3046
+ {
3047
+ "$ref": "#/definitions/simpleBinding"
3048
+ }
3049
+ ]
3050
+ },
1948
3051
  "ContentType.Analytical.AxisText": {
1949
3052
  "description": "Represents descriptive text of the axis",
1950
3053
  "type": "object",
@@ -1952,15 +3055,7 @@
1952
3055
  "properties": {
1953
3056
  "visible": {
1954
3057
  "description": "Represents the visibility state of the descriptive axis text",
1955
- "oneOf": [
1956
- {
1957
- "type": "boolean",
1958
- "default": true
1959
- },
1960
- {
1961
- "$ref": "#/definitions/simpleBinding"
1962
- }
1963
- ]
3058
+ "$ref": "#/definitions/visibility"
1964
3059
  }
1965
3060
  }
1966
3061
  },
@@ -1971,22 +3066,51 @@
1971
3066
  "properties": {
1972
3067
  "visible": {
1973
3068
  "description": "Represents the visibility state of the dataLabel",
3069
+ "$ref": "#/definitions/visibility"
3070
+ },
3071
+ "showTotal": {
3072
+ "description": "Represents the visibility state of 'show total' indicator",
3073
+ "$ref": "#/definitions/visibility"
3074
+ }
3075
+ }
3076
+ },
3077
+ "ContentType.Analytical.Legend": {
3078
+ "description": "Represents chart legend attributes",
3079
+ "type": "object",
3080
+ "additionalProperties": false,
3081
+ "properties": {
3082
+ "visible": {
3083
+ "description": "Represent the visibility state of the legend",
3084
+ "$ref": "#/definitions/visibility"
3085
+ },
3086
+ "position": {
3087
+ "description": "Representation of where the legend will be positioned",
3088
+ "type": "string",
1974
3089
  "oneOf": [
1975
3090
  {
1976
- "type": "boolean",
1977
- "default": true
3091
+ "enum": [
3092
+ "Top",
3093
+ "Bottom",
3094
+ "Left",
3095
+ "Right"
3096
+ ],
3097
+ "default": "Right"
1978
3098
  },
1979
3099
  {
1980
3100
  "$ref": "#/definitions/simpleBinding"
1981
3101
  }
1982
3102
  ]
1983
3103
  },
1984
- "showTotal": {
1985
- "description": "Represents the visibility state of 'show total' indicator",
3104
+ "alignment": {
3105
+ "description": "Representation of how the legend will be aligned",
3106
+ "type": "string",
1986
3107
  "oneOf": [
1987
3108
  {
1988
- "type": "boolean",
1989
- "default": true
3109
+ "enum": [
3110
+ "TopLeft",
3111
+ "Center"
3112
+ ],
3113
+ "default": "TopLeft"
1990
3114
  },
1991
3115
  {
1992
3116
  "$ref": "#/definitions/simpleBinding"
@@ -1995,56 +3119,75 @@
1995
3119
  }
1996
3120
  }
1997
3121
  },
1998
- "ContentType.Analytical.Legend": {
1999
- "description": "Represents chart legend attributes",
3122
+ "Microchart": {
3123
+ "description": "[Experimental] Describes Microchart attributes",
3124
+ "oneOf": [
3125
+ {
3126
+ "$ref": "#/definitions/Microchart.Bullet"
3127
+ },
3128
+ {
3129
+ "$ref": "#/definitions/Microchart.StackedBar"
3130
+ }
3131
+ ]
3132
+ },
3133
+ "icon": {
3134
+ "description": "Represents icon attributes",
2000
3135
  "type": "object",
2001
3136
  "additionalProperties": false,
2002
3137
  "properties": {
2003
- "visible": {
2004
- "description": "Represent the visibility state of the legend",
3138
+ "src": {
3139
+ "type": "string",
3140
+ "description": "Represents icon name or source URL"
3141
+ },
3142
+ "alt": {
3143
+ "type": "string",
3144
+ "description": "Alternative text for the icon"
3145
+ },
3146
+ "shape": {
3147
+ "type": "string",
3148
+ "description": "Represents the shape of the icon",
2005
3149
  "oneOf": [
2006
3150
  {
2007
- "type": "boolean",
2008
- "default": true
3151
+ "enum": [
3152
+ "Square",
3153
+ "Circle"
3154
+ ],
3155
+ "default": "Circle"
2009
3156
  },
2010
3157
  {
2011
3158
  "$ref": "#/definitions/simpleBinding"
2012
3159
  }
2013
3160
  ]
2014
3161
  },
2015
- "position": {
2016
- "description": "Representation of where the legend will be positioned",
2017
- "type": "string",
3162
+ "text": {
3163
+ "description": "Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown.",
2018
3164
  "oneOf": [
2019
3165
  {
2020
- "enum": [
2021
- "Top",
2022
- "Bottom",
2023
- "Left",
2024
- "Right"
2025
- ],
2026
- "default": "Right"
3166
+ "type": "string",
3167
+ "maxLength": 2
2027
3168
  },
2028
3169
  {
2029
3170
  "$ref": "#/definitions/simpleBinding"
2030
3171
  }
2031
3172
  ]
2032
3173
  },
2033
- "alignment": {
2034
- "description": "Representation of how the legend will be aligned",
2035
- "type": "string",
3174
+ "size": {
3175
+ "description": "[Experimental] The size of the icon.",
2036
3176
  "oneOf": [
2037
3177
  {
2038
3178
  "enum": [
2039
- "TopLeft",
2040
- "Center"
2041
- ],
2042
- "default": "TopLeft"
3179
+ "XS",
3180
+ "S",
3181
+ "M"
3182
+ ]
2043
3183
  },
2044
3184
  {
2045
3185
  "$ref": "#/definitions/simpleBinding"
2046
3186
  }
2047
3187
  ]
3188
+ },
3189
+ "backgroundColor": {
3190
+ "$ref": "#/definitions/iconBackgroundColor"
2048
3191
  }
2049
3192
  }
2050
3193
  },
@@ -2065,7 +3208,7 @@
2065
3208
  "additionalProperties": false,
2066
3209
  "properties": {
2067
3210
  "label": {
2068
- "description": "Represents language-dependent label of the field",
3211
+ "description": "Represents a label of the field; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2069
3212
  "type": "string"
2070
3213
  },
2071
3214
  "value": {
@@ -2142,16 +3285,28 @@
2142
3285
  "items": {
2143
3286
  "$ref": "#/definitions/action"
2144
3287
  }
3288
+ },
3289
+ "chart": {
3290
+ "$ref": "#/definitions/Microchart"
2145
3291
  }
2146
3292
  }
2147
3293
  },
3294
+ "Enums.ValueColor": {
3295
+ "enum": [
3296
+ "Critical",
3297
+ "Error",
3298
+ "Good",
3299
+ "Neutral"
3300
+ ],
3301
+ "default": "Neutral"
3302
+ },
2148
3303
  "HeaderType.Numeric.SideIndicator": {
2149
3304
  "description": "Represents side indicator attributes which are used for additional information about the main indicator",
2150
3305
  "type": "object",
2151
3306
  "additionalProperties": false,
2152
3307
  "properties": {
2153
3308
  "title": {
2154
- "description": "Represents language-dependent title of the side indicator",
3309
+ "description": "Represents a title of the side indicator; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2155
3310
  "type": "string"
2156
3311
  },
2157
3312
  "number": {
@@ -2200,14 +3355,7 @@
2200
3355
  "oneOf": [
2201
3356
  {
2202
3357
  "description": "The state color of the main indicator",
2203
- "type": "string",
2204
- "enum": [
2205
- "Critical",
2206
- "Error",
2207
- "Good",
2208
- "Neutral"
2209
- ],
2210
- "default": "Neutral"
3358
+ "$ref": "#/definitions/Enums.ValueColor"
2211
3359
  },
2212
3360
  {
2213
3361
  "$ref": "#/definitions/simpleBinding"
@@ -2234,7 +3382,7 @@
2234
3382
  }
2235
3383
  }
2236
3384
  },
2237
- "icon": {
3385
+ "iconWithoutSize": {
2238
3386
  "description": "Represents icon attributes",
2239
3387
  "type": "object",
2240
3388
  "additionalProperties": false,
@@ -2256,7 +3404,7 @@
2256
3404
  "Square",
2257
3405
  "Circle"
2258
3406
  ],
2259
- "default": "Square"
3407
+ "default": "Circle"
2260
3408
  },
2261
3409
  {
2262
3410
  "$ref": "#/definitions/simpleBinding"
@@ -2264,16 +3412,19 @@
2264
3412
  ]
2265
3413
  },
2266
3414
  "text": {
2267
- "type": "string",
2268
- "description": "Text inside icon"
3415
+ "description": "Initials for the avatar. Up to 2 symbols. If the image provided to the 'src' property fails to load, then the text will be shown.",
3416
+ "oneOf": [
3417
+ {
3418
+ "type": "string",
3419
+ "maxLength": 2
3420
+ },
3421
+ {
3422
+ "$ref": "#/definitions/simpleBinding"
3423
+ }
3424
+ ]
2269
3425
  },
2270
3426
  "backgroundColor": {
2271
- "type": "string",
2272
- "description": "Background color of the icon"
2273
- },
2274
- "color": {
2275
- "type": "string",
2276
- "description": "Color of the icon"
3427
+ "$ref": "#/definitions/iconBackgroundColor"
2277
3428
  }
2278
3429
  }
2279
3430
  },
@@ -2291,7 +3442,8 @@
2291
3442
  "oneOf": [
2292
3443
  {
2293
3444
  "enum": [
2294
- "Navigation"
3445
+ "Navigation",
3446
+ "Submit"
2295
3447
  ]
2296
3448
  },
2297
3449
  {
@@ -2350,11 +3502,11 @@
2350
3502
  ]
2351
3503
  },
2352
3504
  "title": {
2353
- "description": "Represents language-dependent title.",
3505
+ "description": "Represents a title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2354
3506
  "type": "string"
2355
3507
  },
2356
3508
  "subTitle": {
2357
- "description": "Represents language-dependent additional information to the title.",
3509
+ "description": "Represents a subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2358
3510
  "type": "string"
2359
3511
  },
2360
3512
  "actions": {
@@ -2405,11 +3557,11 @@
2405
3557
  ]
2406
3558
  },
2407
3559
  "title": {
2408
- "description": "Represents language-dependent title.",
3560
+ "description": "Represents a title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2409
3561
  "type": "string"
2410
3562
  },
2411
3563
  "subTitle": {
2412
- "description": "Represents language-dependent additional information to the title.",
3564
+ "description": "Represents a subtitle to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
2413
3565
  "type": "string"
2414
3566
  },
2415
3567
  "actions": {
@@ -2424,7 +3576,7 @@
2424
3576
  },
2425
3577
  "icon": {
2426
3578
  "description": "Represents the icon of the card.",
2427
- "$ref": "#/definitions/icon"
3579
+ "$ref": "#/definitions/iconWithoutSize"
2428
3580
  },
2429
3581
  "status": {
2430
3582
  "description": "Represents the status of the card.",
@@ -2432,6 +3584,86 @@
2432
3584
  }
2433
3585
  }
2434
3586
  },
3587
+ "ContentType.AdaptiveCard": {
3588
+ "description": "Represents AdaptiveCard content",
3589
+ "$ref": "https://adaptivecards.io/schemas/adaptive-card.json#/definitions/AdaptiveCard"
3590
+ },
3591
+ "ContentType.Calendar": {
3592
+ "description": "The calendar card is used to display a schedule of a single entity (such as person, resource) for a selected time interval.",
3593
+ "type": "object",
3594
+ "additionalProperties": false,
3595
+ "properties": {
3596
+ "data": {
3597
+ "$ref": "#/definitions/data"
3598
+ },
3599
+ "item": {
3600
+ "$ref": "#/definitions/ContentType.Calendar.Item"
3601
+ },
3602
+ "legendItem": {
3603
+ "$ref": "#/definitions/ContentType.Calendar.LegendItem"
3604
+ },
3605
+ "specialDate": {
3606
+ "$ref": "#/definitions/ContentType.Calendar.SpecialDate"
3607
+ },
3608
+ "date": {
3609
+ "description": "The initial date of the calendar which appointments are initially shown. The accepted date format is ISO 8601.",
3610
+ "oneOf": [
3611
+ {
3612
+ "type": "string"
3613
+ },
3614
+ {
3615
+ "$ref": "#/definitions/simpleBinding"
3616
+ }
3617
+ ]
3618
+ },
3619
+ "maxItems": {
3620
+ "description": "Represents number of items displayed",
3621
+ "oneOf": [
3622
+ {
3623
+ "type": "number"
3624
+ },
3625
+ {
3626
+ "$ref": "#/definitions/simpleBinding"
3627
+ }
3628
+ ]
3629
+ },
3630
+ "maxLegendItems": {
3631
+ "description": "Represents number of legendItems displayed",
3632
+ "oneOf": [
3633
+ {
3634
+ "type": "number"
3635
+ },
3636
+ {
3637
+ "$ref": "#/definitions/simpleBinding"
3638
+ }
3639
+ ]
3640
+ },
3641
+ "noItemsText": {
3642
+ "description": "The text shown when there are no items for the selected day",
3643
+ "oneOf": [
3644
+ {
3645
+ "type": "string"
3646
+ },
3647
+ {
3648
+ "$ref": "#/definitions/simpleBinding"
3649
+ }
3650
+ ]
3651
+ },
3652
+ "moreItems": {
3653
+ "description": "Defines actions that can be applied on the button showing there are more items than the shown",
3654
+ "type": "object",
3655
+ "properties": {
3656
+ "actions": {
3657
+ "description": "Represents an action that can be applied on he button showing there are more items than the shown.",
3658
+ "type": "array",
3659
+ "items": {
3660
+ "$ref": "#/definitions/action"
3661
+ }
3662
+ }
3663
+ }
3664
+ }
3665
+ }
3666
+ },
2435
3667
  "ContentType.Object": {
2436
3668
  "description": "Represents object content attributes",
2437
3669
  "type": "object",
@@ -2685,7 +3917,7 @@
2685
3917
  "description": "The path from the JSON to be used as root",
2686
3918
  "type": "string",
2687
3919
  "default": "/",
2688
- "pattern": "^[a-zA-Z0-9_\\.\\-/|\\@\\#]*$"
3920
+ "pattern": "^[a-zA-Z0-9_\\.\\-/|@#]*$"
2689
3921
  },
2690
3922
  "json": {
2691
3923
  "description": "The data to be used directly. Without making requests.",
@@ -2708,6 +3940,103 @@
2708
3940
  "$ref": "#/definitions/simpleBinding"
2709
3941
  }
2710
3942
  ]
3943
+ },
3944
+ "extension": {
3945
+ "description": "[Experimental] Provides a way to request data via extension.",
3946
+ "$ref": "#/definitions/extension"
3947
+ }
3948
+ }
3949
+ },
3950
+ "Configuration.Destinations": {
3951
+ "description": "Represents a configuration for a cloud platform destination.",
3952
+ "type": "object",
3953
+ "additionalProperties": false,
3954
+ "properties": {
3955
+ "name": {
3956
+ "description": "The name of the destination. Use the same name which is used in Cloud Platform.",
3957
+ "type": "string"
3958
+ },
3959
+ "label": {
3960
+ "description": "Label for the destination for user-friendly visualization in the design-time editor.",
3961
+ "type": "string"
3962
+ },
3963
+ "description": {
3964
+ "description": "Description of the destination for user-friendly visualization in the design-time editor.",
3965
+ "type": "string"
3966
+ },
3967
+ "defaultUrl": {
3968
+ "description": "A default url which will be used if there is no Host associated with the card.",
3969
+ "type": "string"
3970
+ }
3971
+ }
3972
+ },
3973
+ "Configuration.Filter": {
3974
+ "description": "[Experimental] Represents a filter definition.",
3975
+ "type": "object",
3976
+ "additionalProperties": false,
3977
+ "properties": {
3978
+ "value": {
3979
+ "description": "The value of the filter."
3980
+ },
3981
+ "type": {
3982
+ "description": "The type of the value for the filter.",
3983
+ "$ref": "#/definitions/Configuration.BasicDataType"
3984
+ },
3985
+ "data": {
3986
+ "$ref": "#/definitions/data"
3987
+ },
3988
+ "label": {
3989
+ "description": "Label for the filter for user-friendly visualization in the design-time editor.",
3990
+ "type": "string"
3991
+ },
3992
+ "description": {
3993
+ "description": "Description of the filter for user-friendly visualization in the design-time editor.",
3994
+ "type": "string"
3995
+ },
3996
+ "items": {
3997
+ "type": "array",
3998
+ "items": {
3999
+ "$ref": "#/definitions/Configuration.Filter.Item"
4000
+ }
4001
+ },
4002
+ "item": {
4003
+ "type": "object",
4004
+ "required": [
4005
+ "template"
4006
+ ],
4007
+ "properties": {
4008
+ "template": {
4009
+ "$ref": "#/definitions/Configuration.Filter.Item"
4010
+ },
4011
+ "path": {
4012
+ "description": "Defines the path to the structure holding the data about the items.",
4013
+ "type": "string",
4014
+ "default": "/",
4015
+ "pattern": "^[a-zA-Z0-9_\\.\\-/|@#]*$"
4016
+ }
4017
+ }
4018
+ }
4019
+ }
4020
+ },
4021
+ "Configuration.Parameter": {
4022
+ "description": "Represents configuration parameter.",
4023
+ "type": "object",
4024
+ "additionalProperties": false,
4025
+ "properties": {
4026
+ "value": {
4027
+ "description": "The value of the parameter."
4028
+ },
4029
+ "type": {
4030
+ "description": "The type of the value for the parameter.",
4031
+ "$ref": "#/definitions/Configuration.BasicDataType"
4032
+ },
4033
+ "label": {
4034
+ "description": "Label for the parameter for user-friendly visualization in the design-time editor.",
4035
+ "type": "string"
4036
+ },
4037
+ "description": {
4038
+ "description": "Description of the parameter for user-friendly visualization in the design-time editor.",
4039
+ "type": "string"
2711
4040
  }
2712
4041
  }
2713
4042
  },
@@ -2908,37 +4237,37 @@
2908
4237
  "annotationPath": {
2909
4238
  "description": "Represents the annotation path",
2910
4239
  "type": "string",
2911
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4240
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2912
4241
  },
2913
4242
  "selectionAnnotationPath": {
2914
4243
  "description": "Represents the selection annotation path",
2915
4244
  "type": "string",
2916
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4245
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2917
4246
  },
2918
4247
  "chartAnnotationPath": {
2919
4248
  "description": "Represents the chart annotation path",
2920
4249
  "type": "string",
2921
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4250
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2922
4251
  },
2923
4252
  "presentationAnnotationPath": {
2924
4253
  "description": "Represents the presentation annotation path",
2925
4254
  "type": "string",
2926
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4255
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2927
4256
  },
2928
4257
  "dataPointAnnotationPath": {
2929
4258
  "description": "Represents the data point annotation path",
2930
4259
  "type": "string",
2931
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4260
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2932
4261
  },
2933
4262
  "identificationAnnotationPath": {
2934
4263
  "description": "Represents the identification annotation path",
2935
4264
  "type": "string",
2936
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4265
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2937
4266
  },
2938
4267
  "dynamicSubtitleAnnotationPath": {
2939
4268
  "description": "Represents the dynamic subtitle annotation path",
2940
4269
  "type": "string",
2941
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4270
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
2942
4271
  },
2943
4272
  "value": {
2944
4273
  "description": "Represents the drop down value to be shown",
@@ -3009,7 +4338,7 @@
3009
4338
  "entitySet": {
3010
4339
  "description": "Represents the entity set that will be displayed in this card",
3011
4340
  "type": "string",
3012
- "pattern": "^[a-zA-Z0-9\\_]+$"
4341
+ "pattern": "^[a-zA-Z0-9_]+$"
3013
4342
  },
3014
4343
  "staticContent": {
3015
4344
  "description": "Represents the static content that will be displayed in this card",
@@ -3050,47 +4379,47 @@
3050
4379
  "annotationPath": {
3051
4380
  "description": "Represents the annotation path",
3052
4381
  "type": "string",
3053
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4382
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3054
4383
  },
3055
4384
  "selectionAnnotationPath": {
3056
4385
  "description": "Represents the selection annotation path",
3057
4386
  "type": "string",
3058
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4387
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3059
4388
  },
3060
4389
  "chartAnnotationPath": {
3061
4390
  "description": "Represents the chart annotation path",
3062
4391
  "type": "string",
3063
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4392
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3064
4393
  },
3065
4394
  "presentationAnnotationPath": {
3066
4395
  "description": "Represents the presentation annotation path",
3067
4396
  "type": "string",
3068
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4397
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3069
4398
  },
3070
4399
  "dataPointAnnotationPath": {
3071
4400
  "description": "Represents the data point annotation path",
3072
4401
  "type": "string",
3073
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4402
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3074
4403
  },
3075
4404
  "identificationAnnotationPath": {
3076
4405
  "description": "Represents the identification annotation path",
3077
4406
  "type": "string",
3078
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#\\,]*$"
4407
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#,]*$"
3079
4408
  },
3080
4409
  "kpiAnnotationPath": {
3081
4410
  "description": "Represents the KPI annotation path",
3082
4411
  "type": "string",
3083
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4412
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3084
4413
  },
3085
4414
  "selectionPresentationAnnotationPath": {
3086
4415
  "description": "Represents the selection presentation annotation path",
3087
4416
  "type": "string",
3088
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4417
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3089
4418
  },
3090
4419
  "dynamicSubtitleAnnotationPath": {
3091
4420
  "description": "Represents the dynamic subtitle annotation path",
3092
4421
  "type": "string",
3093
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@\\#]*$"
4422
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@#]*$"
3094
4423
  },
3095
4424
  "ignoreSapText": {
3096
4425
  "description": "Represents the flag to indicate priority of number formatting over sap text",
@@ -3206,7 +4535,7 @@
3206
4535
  "model": {
3207
4536
  "description": "Represents the model for the card",
3208
4537
  "type": "string",
3209
- "pattern": "^[a-zA-Z0-9_\\.\\-\\|\\@]*$"
4538
+ "pattern": "^[a-zA-Z0-9_\\.\\-\\|@]*$"
3210
4539
  },
3211
4540
  "template": {
3212
4541
  "description": "Represents the card component path to use for this card",
@@ -3341,7 +4670,7 @@
3341
4670
  "type": "object",
3342
4671
  "additionalProperties": false,
3343
4672
  "patternProperties": {
3344
- "^[a-zA-Z0-9_\\.\\-\\:]+$": {
4673
+ "^[a-zA-Z0-9_.:-]+$": {
3345
4674
  "allOf": [
3346
4675
  {
3347
4676
  "type": "object",
@@ -3353,7 +4682,7 @@
3353
4682
  "id": {
3354
4683
  "description": "Represents an unique id for the instance of the reuse component inside of the object page",
3355
4684
  "type": "string",
3356
- "pattern": "^([A-Za-z_][\\-A-Za-z0-9_\\.\\:]*)$"
4685
+ "pattern": "^([A-Za-z_][-A-Za-z0-9_.:]*)$"
3357
4686
  },
3358
4687
  "title": {
3359
4688
  "description": "Represents the title for the content of the reuse component",
@@ -3483,6 +4812,10 @@
3483
4812
  "description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
3484
4813
  "$ref": "#/definitions/defaultLayoutType_def"
3485
4814
  },
4815
+ "defaultLayoutTypeIfExternalNavigation": {
4816
+ "description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
4817
+ "$ref": "#/definitions/defaultLayoutType_def"
4818
+ },
3486
4819
  "pages": {
3487
4820
  "type": "object",
3488
4821
  "additionalProperties": false,
@@ -3533,6 +4866,10 @@
3533
4866
  "description": "Default layout used to open the corresponding page in FlexibleColumnLayout",
3534
4867
  "$ref": "#/definitions/defaultLayoutType_def"
3535
4868
  },
4869
+ "defaultLayoutTypeIfExternalNavigation": {
4870
+ "description": "Default layout used to open the corresponding page in FlexibleColumnLayout when reached via external navigation",
4871
+ "$ref": "#/definitions/defaultLayoutType_def"
4872
+ },
3536
4873
  "pages": {
3537
4874
  "type": "array",
3538
4875
  "items": {
@@ -3556,6 +4893,11 @@
3556
4893
  "prefix": {
3557
4894
  "description": "The prefix of the routing target",
3558
4895
  "type": "string"
4896
+ },
4897
+ "propagateTitle": {
4898
+ "description": "Indicates whether this 'Component' target should propagate it's title to this component or not",
4899
+ "type": "boolean",
4900
+ "default": "#/definitions/routing/config/propagateTitle"
3559
4901
  }
3560
4902
  }
3561
4903
  },
@@ -3691,7 +5033,123 @@
3691
5033
  "type": "string"
3692
5034
  },
3693
5035
  {
3694
- "$ref": "#/definitions/routeTargetObject"
5036
+ "$ref": "#/definitions/routeTargetObject"
5037
+ }
5038
+ ]
5039
+ },
5040
+ "enhanceWithSetting_0": {
5041
+ "oneOf": [
5042
+ {
5043
+ "additionalProperties": false,
5044
+ "required": [
5045
+ "bundleUrl"
5046
+ ],
5047
+ "properties": {
5048
+ "bundleUrl": {
5049
+ "description": "Represents property url for model enhancement",
5050
+ "type": "string"
5051
+ },
5052
+ "bundleUrlRelativeTo": {
5053
+ "description": "Indicates whether url is relative to component (default) or manifest",
5054
+ "type": "string",
5055
+ "default": "component",
5056
+ "enum": [
5057
+ "manifest",
5058
+ "component"
5059
+ ]
5060
+ },
5061
+ "fallbackLocale": {
5062
+ "description": "Represents the fallback locale",
5063
+ "type": "string"
5064
+ },
5065
+ "supportedLocales": {
5066
+ "description": "Represents the list of supported locales",
5067
+ "type": "array"
5068
+ },
5069
+ "terminologies": {
5070
+ "description": "Represents terminologies with additional properties files",
5071
+ "type": "object",
5072
+ "patternProperties": {
5073
+ "^[a-zA-Z0-9_\\-]*$": {
5074
+ "$ref": "#/definitions/terminologySetting"
5075
+ }
5076
+ }
5077
+ }
5078
+ }
5079
+ },
5080
+ {
5081
+ "required": [
5082
+ "bundleName"
5083
+ ],
5084
+ "additionalProperties": false,
5085
+ "properties": {
5086
+ "bundleName": {
5087
+ "description": "Represents the alternative for bundleUrl",
5088
+ "type": "string"
5089
+ },
5090
+ "supportedLocales": {
5091
+ "description": "Represents the list of supported locales",
5092
+ "type": "array"
5093
+ },
5094
+ "fallbackLocale": {
5095
+ "description": "Represents the fallback locale",
5096
+ "type": "string"
5097
+ },
5098
+ "terminologies": {
5099
+ "description": "Represents terminologies with additional properties files",
5100
+ "type": "object",
5101
+ "patternProperties": {
5102
+ "^[a-zA-Z0-9_\\-]*$": {
5103
+ "$ref": "#/definitions/terminologySetting"
5104
+ }
5105
+ }
5106
+ }
5107
+ }
5108
+ }
5109
+ ]
5110
+ },
5111
+ "terminologySetting": {
5112
+ "oneOf": [
5113
+ {
5114
+ "additionalProperties": false,
5115
+ "required": [
5116
+ "bundleName"
5117
+ ],
5118
+ "properties": {
5119
+ "bundleName": {
5120
+ "description": "Represents the alternative for bundleUrl",
5121
+ "type": "string"
5122
+ },
5123
+ "supportedLocales": {
5124
+ "description": "Represents the list of supported locales",
5125
+ "type": "array"
5126
+ }
5127
+ }
5128
+ },
5129
+ {
5130
+ "additionalProperties": false,
5131
+ "required": [
5132
+ "bundleUrl"
5133
+ ],
5134
+ "properties": {
5135
+ "bundleUrl": {
5136
+ "description": "Represents the URL for the resource bundle",
5137
+ "type": "string"
5138
+ },
5139
+ "bundleUrlRelativeTo": {
5140
+ "description": "Indicates whether url is relative to component (default) or manifest",
5141
+ "type": "string",
5142
+ "default": "component",
5143
+ "enum": [
5144
+ "manifest",
5145
+ "component"
5146
+ ]
5147
+ },
5148
+ "supportedLocales": {
5149
+ "description": "Represents the list of supported locales",
5150
+ "type": "array"
5151
+ }
5152
+ }
3695
5153
  }
3696
5154
  ]
3697
5155
  },
@@ -3710,46 +5168,47 @@
3710
5168
  "TwoWay"
3711
5169
  ]
3712
5170
  },
5171
+ "bundleName": {
5172
+ "description": "Represents the alternative for bundleUrl",
5173
+ "type": "string"
5174
+ },
5175
+ "bundleUrl": {
5176
+ "description": "Represents the URL for the resource bundle",
5177
+ "type": "string"
5178
+ },
5179
+ "bundleUrlRelativeTo": {
5180
+ "description": "Indicates whether url is relative to component (default) or manifest",
5181
+ "type": "string",
5182
+ "default": "component",
5183
+ "enum": [
5184
+ "manifest",
5185
+ "component"
5186
+ ]
5187
+ },
5188
+ "fallbackLocale": {
5189
+ "description": "Represents the fallback locale",
5190
+ "type": "string"
5191
+ },
5192
+ "supportedLocales": {
5193
+ "description": "Represents the list of supported locales",
5194
+ "type": "array"
5195
+ },
5196
+ "terminologies": {
5197
+ "description": "Represents terminologies with additional properties files",
5198
+ "type": "object",
5199
+ "additionalProperties": true,
5200
+ "patternProperties": {
5201
+ "^[a-zA-Z0-9_\\-]*$": {
5202
+ "$ref": "#/definitions/terminologySetting"
5203
+ }
5204
+ }
5205
+ },
3713
5206
  "enhanceWith": {
3714
5207
  "description": "Represents enhancement of UI5 resource model with additional properties files",
3715
5208
  "type": "array",
3716
5209
  "items": {
3717
5210
  "type": "object",
3718
- "oneOf": [
3719
- {
3720
- "additionalProperties": false,
3721
- "required": [
3722
- "bundleUrl"
3723
- ],
3724
- "properties": {
3725
- "bundleUrl": {
3726
- "description": "Represents property url for model enhancement",
3727
- "type": "string"
3728
- },
3729
- "bundleUrlRelativeTo": {
3730
- "description": "Indicates whether url is relative to component (default) or manifest",
3731
- "type": "string",
3732
- "default": "component",
3733
- "enum": [
3734
- "manifest",
3735
- "component"
3736
- ]
3737
- }
3738
- }
3739
- },
3740
- {
3741
- "required": [
3742
- "bundleName"
3743
- ],
3744
- "additionalProperties": false,
3745
- "properties": {
3746
- "bundleName": {
3747
- "description": "Represents the alternative for bundleUrl",
3748
- "type": "string"
3749
- }
3750
- }
3751
- }
3752
- ]
5211
+ "$ref": "#/definitions/enhanceWithSetting"
3753
5212
  }
3754
5213
  }
3755
5214
  }
@@ -3785,6 +5244,11 @@
3785
5244
  "id": {
3786
5245
  "description": "Represents the id of the view",
3787
5246
  "type": "string"
5247
+ },
5248
+ "async": {
5249
+ "description": "Configure the targets for asynchronous loading",
5250
+ "type": "boolean",
5251
+ "default": false
3788
5252
  }
3789
5253
  }
3790
5254
  }
@@ -3809,6 +5273,11 @@
3809
5273
  "type": "boolean",
3810
5274
  "default": false
3811
5275
  },
5276
+ "propagateTitle": {
5277
+ "description": "Indicates whether the targets which have type 'Component' should propagate their title to this component or not",
5278
+ "type": "boolean",
5279
+ "default": false
5280
+ },
3812
5281
  "bypassed": {
3813
5282
  "description": "Represents information about targets to display when no route is matched",
3814
5283
  "type": "object",
@@ -3983,6 +5452,11 @@
3983
5452
  "id": {
3984
5453
  "description": "Represents the id of the view",
3985
5454
  "type": "string"
5455
+ },
5456
+ "async": {
5457
+ "description": "Configure the targets for asynchronous loading",
5458
+ "type": "boolean",
5459
+ "default": false
3986
5460
  }
3987
5461
  }
3988
5462
  },
@@ -4408,7 +5882,46 @@
4408
5882
  "reference"
4409
5883
  ]
4410
5884
  }
4411
- }
5885
+ },
5886
+ "anyOf": [
5887
+ {
5888
+ "properties": {
5889
+ "format": {
5890
+ "type": "string",
5891
+ "enum": [
5892
+ "plain"
5893
+ ]
5894
+ },
5895
+ "value": {
5896
+ "type": "string"
5897
+ }
5898
+ }
5899
+ },
5900
+ {
5901
+ "properties": {
5902
+ "format": {
5903
+ "type": "string",
5904
+ "enum": [
5905
+ "reference"
5906
+ ]
5907
+ },
5908
+ "value": {
5909
+ "type": "string",
5910
+ "pattern": "^(User[.]env|UserDefault(.extended)?)[.][^.]+$"
5911
+ }
5912
+ }
5913
+ },
5914
+ {
5915
+ "properties": {
5916
+ "format": {
5917
+ "type": "null"
5918
+ },
5919
+ "value": {
5920
+ "type": "string"
5921
+ }
5922
+ }
5923
+ }
5924
+ ]
4412
5925
  },
4413
5926
  "filter": {
4414
5927
  "description": "Represents a filter , only if input parameter matches filter",
@@ -4489,6 +6002,82 @@
4489
6002
  }
4490
6003
  }
4491
6004
  },
6005
+ "dataSourceCustom": {
6006
+ "type": "object",
6007
+ "additionalProperties": false,
6008
+ "required": [
6009
+ "uri",
6010
+ "customType"
6011
+ ],
6012
+ "properties": {
6013
+ "uri": {
6014
+ "description": "Represents uri of the data source",
6015
+ "type": "string"
6016
+ },
6017
+ "type": {
6018
+ "description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON",
6019
+ "type": "string",
6020
+ "pattern": "^[a-zA-Z0-9_\\-]+$",
6021
+ "not": {
6022
+ "enum": [
6023
+ "OData",
6024
+ "ODataAnnotation",
6025
+ "INA",
6026
+ "XML",
6027
+ "JSON",
6028
+ "FHIR"
6029
+ ]
6030
+ }
6031
+ },
6032
+ "settings": {
6033
+ "description": "Represents data source type specific attributes (key, value pairs)",
6034
+ "$ref": "#/definitions/setting"
6035
+ },
6036
+ "customType": {
6037
+ "description": "Represents a custom data source type flag. So the type can be any string if its true, and only enum values if false",
6038
+ "type": "boolean",
6039
+ "enum": [
6040
+ true
6041
+ ]
6042
+ }
6043
+ }
6044
+ },
6045
+ "dataSourceEnum": {
6046
+ "type": "object",
6047
+ "additionalProperties": false,
6048
+ "required": [
6049
+ "uri"
6050
+ ],
6051
+ "properties": {
6052
+ "uri": {
6053
+ "description": "Represents uri of the data source",
6054
+ "type": "string"
6055
+ },
6056
+ "type": {
6057
+ "description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON",
6058
+ "type": "string",
6059
+ "enum": [
6060
+ "OData",
6061
+ "ODataAnnotation",
6062
+ "INA",
6063
+ "XML",
6064
+ "JSON",
6065
+ "FHIR"
6066
+ ],
6067
+ "default": "OData"
6068
+ },
6069
+ "settings": {
6070
+ "description": "Represents data source type specific attributes (key, value pairs)",
6071
+ "$ref": "#/definitions/setting"
6072
+ },
6073
+ "customType": {
6074
+ "type": "boolean",
6075
+ "enum": [
6076
+ false
6077
+ ]
6078
+ }
6079
+ }
6080
+ },
4492
6081
  "setting": {
4493
6082
  "type": "object",
4494
6083
  "additionalProperties": false,
@@ -4532,25 +6121,26 @@
4532
6121
  ],
4533
6122
  "properties": {
4534
6123
  "semanticObject": {
4535
- "description": "Represents semantic object",
6124
+ "description": "Represents a business entity (e.g., 'Employee')",
4536
6125
  "type": "string",
4537
6126
  "pattern": "^[\\w\\*]{0,30}$"
4538
6127
  },
4539
6128
  "action": {
4540
- "description": "Represents action an the semantic object",
6129
+ "description": "Represents the action to perform on the business entity (e.g., 'display')",
4541
6130
  "type": "string",
4542
6131
  "pattern": "^[\\w\\*]{0,60}$"
4543
6132
  },
4544
6133
  "additionalParameters": {
4545
- "description": "Indicates whether additional context parameters are to be used: ('ignored': parameters are not used | 'allowed': parameters are passed on to application)",
6134
+ "description": "Indicates whether the intent can contain additional context parameters that are not described in the outbound: ('notallowed': the intent must contain only the specified parameters | 'allowed': additional parameters might appear in the navigation intent)| 'ignored': technical meta-parameters for framework usage are added to the intent, these parameters should be ignored by target applications",
4546
6135
  "type": "string",
4547
6136
  "enum": [
6137
+ "notallowed",
4548
6138
  "ignored",
4549
6139
  "allowed"
4550
6140
  ]
4551
6141
  },
4552
6142
  "parameters": {
4553
- "description": "Represents parameters for outbound targets",
6143
+ "description": "Represents parameters of navigation intents",
4554
6144
  "type": "object",
4555
6145
  "additionalProperties": false,
4556
6146
  "patternProperties": {
@@ -4560,18 +6150,20 @@
4560
6150
  "properties": {
4561
6151
  "value": {
4562
6152
  "type": "object",
4563
- "description": " Represents a value to use in the outbound",
6153
+ "description": "Describes parameters of navigation intents generated or triggered by the application",
4564
6154
  "additionalProperties": false,
4565
6155
  "properties": {
4566
6156
  "value": {
4567
- "description": "Represents a verbatim value (format : plain or not supplied) or a binding reference(format : binding)",
6157
+ "description": "Represents a verbatim value (when 'plain' format is used), a pattern (when 'regexp' format is used), a value coming from a UI5 model (when 'binding' format is used), or a User Default reference (when 'reference' format is used)",
4568
6158
  "type": "string"
4569
6159
  },
4570
6160
  "format": {
4571
- "description": "Indicates how 'value' is to be interpreted: ('plain': the 'value' is taken as a literal string value| 'reference': the 'value' is a reference to e.g. a UserDefault parameter (e.g. 'UserDefault.CostCenter'), the resolved parameter value is used)",
6161
+ "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 a parameter maintained in the Fiori Launchpad (e.g. 'UserDefault.CostCenter'); the parameter value is used on the outbound intent parameter| 'regexp': the 'value' matches the specified pattern| 'binding': the 'value' is a binding path; the value from the model at the specified binding path will be used on the outbound intent parameter",
4572
6162
  "type": "string",
4573
6163
  "enum": [
4574
6164
  "plain",
6165
+ "regexp",
6166
+ "reference",
4575
6167
  "binding"
4576
6168
  ]
4577
6169
  }
@@ -4619,44 +6211,20 @@
4619
6211
  "type": "string"
4620
6212
  },
4621
6213
  "title": {
4622
- "description": "Represents language-dependent - different languages via server API or on client",
4623
- "oneOf": [
4624
- {
4625
- "$ref": "#/definitions/i18n_key"
4626
- },
4627
- {
4628
- "type": "string",
4629
- "pattern": "^[^\\W][\\w\\.\\-]*$"
4630
- }
4631
- ]
6214
+ "description": "Represents title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
6215
+ "type": "string"
4632
6216
  },
4633
6217
  "subTitle": {
4634
- "description": "Represents language-dependent additional information to the title and can overwrite subTitle from sap.app definition",
4635
- "oneOf": [
4636
- {
4637
- "$ref": "#/definitions/i18n_key"
4638
- },
4639
- {
4640
- "type": "string",
4641
- "pattern": "^[^\\W][\\w\\.\\-]*$"
4642
- }
4643
- ]
6218
+ "description": "Represents subtitle; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
6219
+ "type": "string"
4644
6220
  },
4645
6221
  "shortTitle": {
4646
- "description": "Represents shorter version of the title (language-dependent ) ",
4647
- "oneOf": [
4648
- {
4649
- "$ref": "#/definitions/i18n_key"
4650
- },
4651
- {
4652
- "type": "string",
4653
- "pattern": "^[^\\W][\\w\\.\\-]*$"
4654
- }
4655
- ]
6222
+ "description": "Represents shorter version of the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
6223
+ "type": "string"
4656
6224
  },
4657
6225
  "info": {
4658
- "description": "Represents language-dependent additional information to the title",
4659
- "$ref": "#/definitions/i18n_key"
6226
+ "description": "Represents additional information to the title; this property is language dependent and, therefore, a key in double curly brackets '{{key}}' must be used",
6227
+ "type": "string"
4660
6228
  },
4661
6229
  "displayMode": {
4662
6230
  "description": "Represents the display mode of the tile",
@@ -4720,43 +6288,87 @@
4720
6288
  }
4721
6289
  },
4722
6290
  "dataSource": {
4723
- "type": "object",
4724
- "additionalProperties": false,
4725
- "required": [
4726
- "uri"
4727
- ],
4728
- "properties": {
4729
- "uri": {
4730
- "description": "Represents uri of the data source",
4731
- "type": "string"
6291
+ "oneOf": [
6292
+ {
6293
+ "$ref": "#/definitions/dataSourceEnum"
4732
6294
  },
4733
- "type": {
4734
- "description": "Represents type of the data source. The supported types are OData, ODataAnnotation, INA, XML, JSON",
4735
- "type": "string",
4736
- "enum": [
4737
- "OData",
4738
- "ODataAnnotation",
4739
- "INA",
4740
- "XML",
4741
- "JSON"
6295
+ {
6296
+ "$ref": "#/definitions/dataSourceCustom"
6297
+ }
6298
+ ]
6299
+ },
6300
+ "enhanceWithSetting": {
6301
+ "oneOf": [
6302
+ {
6303
+ "additionalProperties": false,
6304
+ "required": [
6305
+ "bundleUrl"
4742
6306
  ],
4743
- "default": "OData"
6307
+ "properties": {
6308
+ "bundleUrl": {
6309
+ "description": "Represents property url for model enhancement",
6310
+ "type": "string"
6311
+ },
6312
+ "bundleUrlRelativeTo": {
6313
+ "description": "Indicates whether url is relative to component (default) or manifest",
6314
+ "type": "string",
6315
+ "default": "component",
6316
+ "enum": [
6317
+ "manifest",
6318
+ "component"
6319
+ ]
6320
+ },
6321
+ "fallbackLocale": {
6322
+ "description": "Represents the fallback locale",
6323
+ "type": "string"
6324
+ },
6325
+ "supportedLocales": {
6326
+ "description": "Represents the list of supported locales",
6327
+ "type": "array"
6328
+ },
6329
+ "terminologies": {
6330
+ "description": "Represents terminologies with additional properties files",
6331
+ "type": "object",
6332
+ "additionalProperties": false,
6333
+ "patternProperties": {
6334
+ "^[a-zA-Z0-9_\\-]*$": {
6335
+ "$ref": "#/definitions/terminologySetting"
6336
+ }
6337
+ }
6338
+ }
6339
+ }
4744
6340
  },
4745
- "settings": {
4746
- "description": "Represents data source type specific attributes (key, value pairs)",
4747
- "$ref": "#/definitions/setting"
6341
+ {
6342
+ "required": [
6343
+ "bundleName"
6344
+ ],
6345
+ "additionalProperties": false,
6346
+ "properties": {
6347
+ "bundleName": {
6348
+ "description": "Represents the alternative for bundleUrl",
6349
+ "type": "string"
6350
+ },
6351
+ "fallbackLocale": {
6352
+ "description": "Represents the fallback locale",
6353
+ "type": "string"
6354
+ },
6355
+ "supportedLocales": {
6356
+ "description": "Represents the list of supported locales",
6357
+ "type": "array"
6358
+ },
6359
+ "terminologies": {
6360
+ "description": "Represents terminologies with additional properties files",
6361
+ "type": "object",
6362
+ "additionalProperties": false,
6363
+ "patternProperties": {
6364
+ "^[a-zA-Z0-9_\\-]*$": {
6365
+ "$ref": "#/definitions/terminologySetting"
6366
+ }
6367
+ }
6368
+ }
6369
+ }
4748
6370
  }
4749
- }
4750
- },
4751
- "tag": {
4752
- "type": "array",
4753
- "items": {
4754
- "$ref": "#/definitions/i18n_key"
4755
- }
4756
- },
4757
- "i18n_key": {
4758
- "type": "string",
4759
- "pattern": "^\\{\\{[\\w][\\w\\.\\-]*\\}\\}$"
6371
+ ]
4760
6372
  },
4761
6373
  "id_def": {
4762
6374
  "type": "string",