@bizdoc/core 1.7.0-next.3 → 1.7.0-next.7

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.
Files changed (277) hide show
  1. package/README.md +4 -3
  2. package/assets/fonts/MaterialIcons-Regular.svg +2373 -2373
  3. package/assets/fonts/README.md +9 -9
  4. package/assets/fonts/codepoints +932 -932
  5. package/assets/fonts/material-icons.css +36 -36
  6. package/assets/themes/brown.min.css +83 -81
  7. package/assets/themes/dark.min.css +77 -75
  8. package/assets/themes/default.min.css +90 -88
  9. package/assets/themes/green.min.css +83 -81
  10. package/assets/themes/indigo.min.css +83 -81
  11. package/bundles/bizdoc-core.umd.js +1086 -1600
  12. package/bundles/bizdoc-core.umd.js.map +1 -1
  13. package/esm2015/lib/app.component.js +7 -13
  14. package/esm2015/lib/bizdoc.module.js +2 -37
  15. package/esm2015/lib/browse/filter/filter.component.js +2 -2
  16. package/esm2015/lib/core/configuration.js +1 -1
  17. package/esm2015/lib/core/controls/combination-picker-body.js +2 -2
  18. package/esm2015/lib/core/models.js +1 -1
  19. package/esm2015/lib/core/session.service.js +5 -9
  20. package/esm2015/lib/core/slots/slots.component.js +6 -4
  21. package/esm2015/lib/cube/accum/accum.component.js +4 -7
  22. package/esm2015/lib/cube/chart/chart.component.js +6 -3
  23. package/esm2015/lib/cube/cube-info.service.js +100 -0
  24. package/esm2015/lib/cube/cube-view.component.js +11 -30
  25. package/esm2015/lib/cube/declarations.js +1 -1
  26. package/esm2015/lib/cube/explore/explore-items.component.js +5 -7
  27. package/esm2015/lib/cube/explore/explore.pane.component.js +2 -5
  28. package/esm2015/lib/cube/filter/filter-tags.component.exp.js +8 -8
  29. package/esm2015/lib/cube/filter/filter.component.js +14 -11
  30. package/esm2015/lib/cube/grid/grid.component.js +4 -3
  31. package/esm2015/lib/cube/grid/spreadsheet.component.js +4 -4
  32. package/esm2015/lib/cube/matrix/matrix.base.js +130 -0
  33. package/esm2015/lib/cube/matrix/matrix.component.js +68 -0
  34. package/esm2015/lib/cube/matrix/matrix.mobile.component.js +62 -0
  35. package/esm2015/lib/cube/matrix/matrix.pane.component.js +70 -0
  36. package/esm2015/lib/cube/matrix/table.component.js +254 -0
  37. package/esm2015/lib/cube/pivot/pivot.component.js +4 -4
  38. package/esm2015/lib/cube/view-base.js +76 -0
  39. package/esm2015/lib/cube/view.mobile.component.js +31 -54
  40. package/esm2015/lib/cube/view.pane.component.js +26 -58
  41. package/esm2015/lib/dashboard/cube/accum-cube.widget.js +2 -2
  42. package/esm2015/lib/dashboard/cube/cube-analysis.base.js +2 -2
  43. package/esm2015/lib/dashboard/cube/cube-chart.widget.js +2 -2
  44. package/esm2015/lib/dashboard/cube/filter/filter.component.js +3 -3
  45. package/esm2015/lib/desktop.module.js +6 -6
  46. package/esm2015/lib/home/sign/sign.component.js +2 -2
  47. package/esm2015/lib/impersonate/impersonate.component.js +69 -0
  48. package/esm2015/lib/mobile.module.js +9 -9
  49. package/esm2015/lib/reports/cube/grid-documents.component.js +10 -9
  50. package/esm2015/lib/reports/cube/usage-args.component.js +2 -2
  51. package/esm2015/lib/routes.desktop.js +3 -3
  52. package/esm2015/lib/routes.mobile.js +5 -5
  53. package/esm2015/lib/scheduler/schedule.component.js +21 -17
  54. package/esm2015/lib/shared.module.js +26 -26
  55. package/esm2015/lib/system.module.js +8 -10
  56. package/esm2015/lib/views/cube/cube-base.js +10 -5
  57. package/esm2015/lib/views/cube/matrix.component.js +95 -0
  58. package/esm2015/lib/views/cube/view.component.js +19 -21
  59. package/esm2015/lib/views/document-view-ref.js +3 -2
  60. package/esm2015/lib/views/timeline/timeline.component.exp.js +317 -0
  61. package/esm2015/lib/views/view-item.component.js +11 -7
  62. package/esm2015/lib/views/views.component.js +10 -11
  63. package/esm2015/public-api.js +4 -8
  64. package/fesm2015/bizdoc-core.js +902 -1382
  65. package/fesm2015/bizdoc-core.js.map +1 -1
  66. package/lib/app.component.d.ts +1 -4
  67. package/lib/core/configuration.d.ts +1 -17
  68. package/lib/core/controls/combination-picker-body.d.ts +1 -1
  69. package/lib/core/models.d.ts +1 -0
  70. package/lib/core/session.service.d.ts +0 -5
  71. package/lib/core/slots/slots.component.d.ts +1 -1
  72. package/lib/cube/accum/accum.component.d.ts +3 -7
  73. package/lib/cube/chart/chart.component.d.ts +1 -1
  74. package/lib/cube/{info/cube-info.service.d.ts → cube-info.service.d.ts} +6 -6
  75. package/lib/cube/cube-view.component.d.ts +4 -9
  76. package/lib/cube/declarations.d.ts +3 -5
  77. package/lib/cube/explore/explore-items.component.d.ts +1 -4
  78. package/lib/cube/explore/explore.pane.component.d.ts +0 -1
  79. package/lib/cube/filter/filter-tags.component.exp.d.ts +2 -2
  80. package/lib/cube/filter/filter.component.d.ts +4 -3
  81. package/lib/cube/grid/grid.component.d.ts +2 -1
  82. package/lib/cube/grid/spreadsheet.component.d.ts +1 -1
  83. package/lib/cube/{info/cube-info.base.d.ts → matrix/matrix.base.d.ts} +5 -5
  84. package/lib/cube/{info/cube-info.component.d.ts → matrix/matrix.component.d.ts} +8 -8
  85. package/lib/cube/{info/cube-info.mobile.component.d.ts → matrix/matrix.mobile.component.d.ts} +4 -4
  86. package/lib/cube/{info/cube-info.pane.component.d.ts → matrix/matrix.pane.component.d.ts} +5 -5
  87. package/lib/cube/{info → matrix}/table.component.d.ts +4 -5
  88. package/lib/cube/pivot/pivot.component.d.ts +2 -4
  89. package/lib/cube/view-base.d.ts +39 -0
  90. package/lib/cube/view.mobile.component.d.ts +8 -25
  91. package/lib/cube/view.pane.component.d.ts +8 -26
  92. package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -1
  93. package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -1
  94. package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -1
  95. package/lib/dashboard/cube/filter/filter.component.d.ts +1 -1
  96. package/lib/desktop.module.d.ts +2 -2
  97. package/lib/{login/impersonate → impersonate}/impersonate.component.d.ts +3 -3
  98. package/lib/mobile.module.d.ts +2 -2
  99. package/lib/scheduler/schedule.component.d.ts +4 -1
  100. package/lib/shared.module.d.ts +48 -50
  101. package/lib/system.module.d.ts +25 -26
  102. package/lib/views/cube/cube-base.d.ts +16 -10
  103. package/lib/views/cube/{table.component.d.ts → matrix.component.d.ts} +2 -15
  104. package/lib/views/cube/view.component.d.ts +2 -9
  105. package/lib/views/document-view-ref.d.ts +3 -1
  106. package/lib/views/timeline/timeline.component.exp.d.ts +64 -0
  107. package/lib/views/view-item.component.d.ts +4 -2
  108. package/lib/views/views.component.d.ts +3 -5
  109. package/package.json +15 -17
  110. package/public-api.d.ts +4 -8
  111. package/esm2015/lib/admin/users/users.component.js +0 -155
  112. package/esm2015/lib/admin/users/users.service.js +0 -29
  113. package/esm2015/lib/cube/info/cube-info.base.js +0 -128
  114. package/esm2015/lib/cube/info/cube-info.component.js +0 -69
  115. package/esm2015/lib/cube/info/cube-info.mobile.component.js +0 -62
  116. package/esm2015/lib/cube/info/cube-info.pane.component.js +0 -70
  117. package/esm2015/lib/cube/info/cube-info.service.js +0 -100
  118. package/esm2015/lib/cube/info/table.component.js +0 -258
  119. package/esm2015/lib/login/forgot/forgot.component.js +0 -50
  120. package/esm2015/lib/login/form.authentication.js +0 -71
  121. package/esm2015/lib/login/form.interceptor.js +0 -26
  122. package/esm2015/lib/login/impersonate/impersonate.component.js +0 -69
  123. package/esm2015/lib/login/login.component.js +0 -130
  124. package/esm2015/lib/login/okta.authentication.js +0 -41
  125. package/esm2015/lib/login/okta.component.js +0 -84
  126. package/esm2015/lib/login/okta.interceptor.js +0 -30
  127. package/esm2015/lib/login/prompt/prompt.component.js +0 -194
  128. package/esm2015/lib/login/signin-info.service.js +0 -49
  129. package/esm2015/lib/views/cube/table.component.js +0 -107
  130. package/lib/admin/users/users.component.d.ts +0 -41
  131. package/lib/admin/users/users.service.d.ts +0 -30
  132. package/lib/login/forgot/forgot.component.d.ts +0 -20
  133. package/lib/login/form.authentication.d.ts +0 -29
  134. package/lib/login/form.interceptor.d.ts +0 -11
  135. package/lib/login/login.component.d.ts +0 -18
  136. package/lib/login/okta.authentication.d.ts +0 -13
  137. package/lib/login/okta.component.d.ts +0 -18
  138. package/lib/login/okta.interceptor.d.ts +0 -11
  139. package/lib/login/prompt/prompt.component.d.ts +0 -45
  140. package/lib/login/signin-info.service.d.ts +0 -18
  141. package/src/assets/.gitkeep +0 -0
  142. package/src/assets/animations/13194-message.json +0 -1
  143. package/src/assets/animations/1408-network-lost.json +0 -1
  144. package/src/assets/animations/19560-loading.json +0 -1
  145. package/src/assets/animations/21928-folder.json +0 -1
  146. package/src/assets/animations/21941-airplane-animation-movement.json +0 -1
  147. package/src/assets/animations/2252-broken-stick-error.json +0 -1
  148. package/src/assets/animations/24910-new-message-notification.json +0 -1
  149. package/src/assets/animations/25974-paper-plane.json +0 -1
  150. package/src/assets/animations/36395-lonely-404.json +0 -1
  151. package/src/assets/animations/36499-page-not-found.json +0 -1
  152. package/src/assets/animations/37211-google-icons-forms.json +0 -1
  153. package/src/assets/animations/41896-application.json +0 -1
  154. package/src/assets/animations/4958-404-not-found.json +0 -1
  155. package/src/assets/animations/51956-success-icon.json +0 -1
  156. package/src/assets/animations/53402-bell.json +0 -1
  157. package/src/assets/animations/5371-volaris-tickets.json +0 -1
  158. package/src/assets/animations/58266-quad-cube-shifter-1.json +0 -1
  159. package/src/assets/animations/58509-shifting-cubes-2.json +0 -1
  160. package/src/assets/animations/8318-loader.json +0 -1
  161. package/src/assets/animations/lf20_isphoahq.json +0 -1
  162. package/src/assets/animations/lf30_editor_6kz6oezn.json +0 -1
  163. package/src/assets/animations/lf30_editor_b6axvtp7.json +0 -1
  164. package/src/assets/animations/lf30_editor_cq62rpyv.json +0 -1
  165. package/src/assets/animations/lf30_editor_fbytfhvg.json +0 -1
  166. package/src/assets/animations/lf30_editor_h1xoyem7.json +0 -1
  167. package/src/assets/animations/lf30_editor_qr7zgmcs.json +0 -1
  168. package/src/assets/animations/lf30_editor_rxee1cqy.json +0 -1
  169. package/src/assets/animations/lf30_editor_yxy6fuei.json +0 -1
  170. package/src/assets/bizdoc-schema.json +0 -1238
  171. package/src/assets/favicon.ico +0 -0
  172. package/src/assets/fonts/LICENSE.txt +0 -202
  173. package/src/assets/fonts/MaterialIcons-Outlined.woff2 +0 -0
  174. package/src/assets/fonts/MaterialIcons-Regular.eot +0 -0
  175. package/src/assets/fonts/MaterialIcons-Regular.ijmap +0 -1
  176. package/src/assets/fonts/MaterialIcons-Regular.svg +0 -2373
  177. package/src/assets/fonts/MaterialIcons-Regular.ttf +0 -0
  178. package/src/assets/fonts/MaterialIcons-Regular.woff +0 -0
  179. package/src/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
  180. package/src/assets/fonts/MaterialIcons.css +0 -55
  181. package/src/assets/fonts/README.md +0 -9
  182. package/src/assets/fonts/Roboto-Black.ttf +0 -0
  183. package/src/assets/fonts/Roboto-BlackItalic.ttf +0 -0
  184. package/src/assets/fonts/Roboto-Bold.ttf +0 -0
  185. package/src/assets/fonts/Roboto-BoldItalic.ttf +0 -0
  186. package/src/assets/fonts/Roboto-Italic.ttf +0 -0
  187. package/src/assets/fonts/Roboto-Light.ttf +0 -0
  188. package/src/assets/fonts/Roboto-LightItalic.ttf +0 -0
  189. package/src/assets/fonts/Roboto-Medium.ttf +0 -0
  190. package/src/assets/fonts/Roboto-MediumItalic.ttf +0 -0
  191. package/src/assets/fonts/Roboto-Regular.ttf +0 -0
  192. package/src/assets/fonts/Roboto-Thin.ttf +0 -0
  193. package/src/assets/fonts/Roboto-ThinItalic.ttf +0 -0
  194. package/src/assets/fonts/codepoints +0 -932
  195. package/src/assets/fonts/material-icons.css +0 -36
  196. package/src/assets/i18n/cldr-data/main/he/ca-buddhist.json +0 -532
  197. package/src/assets/i18n/cldr-data/main/he/ca-chinese.json +0 -1255
  198. package/src/assets/i18n/cldr-data/main/he/ca-coptic.json +0 -541
  199. package/src/assets/i18n/cldr-data/main/he/ca-dangi.json +0 -1255
  200. package/src/assets/i18n/cldr-data/main/he/ca-ethiopic-amete-alem.json +0 -538
  201. package/src/assets/i18n/cldr-data/main/he/ca-ethiopic.json +0 -541
  202. package/src/assets/i18n/cldr-data/main/he/ca-generic.json +0 -535
  203. package/src/assets/i18n/cldr-data/main/he/ca-gregorian.json +0 -552
  204. package/src/assets/i18n/cldr-data/main/he/ca-hebrew.json +0 -557
  205. package/src/assets/i18n/cldr-data/main/he/ca-indian.json +0 -532
  206. package/src/assets/i18n/cldr-data/main/he/ca-islamic-civil.json +0 -532
  207. package/src/assets/i18n/cldr-data/main/he/ca-islamic-rgsa.json +0 -532
  208. package/src/assets/i18n/cldr-data/main/he/ca-islamic-tbla.json +0 -532
  209. package/src/assets/i18n/cldr-data/main/he/ca-islamic-umalqura.json +0 -532
  210. package/src/assets/i18n/cldr-data/main/he/ca-islamic.json +0 -532
  211. package/src/assets/i18n/cldr-data/main/he/ca-japanese.json +0 -1240
  212. package/src/assets/i18n/cldr-data/main/he/ca-persian.json +0 -532
  213. package/src/assets/i18n/cldr-data/main/he/ca-roc.json +0 -535
  214. package/src/assets/i18n/cldr-data/main/he/characters.json +0 -53
  215. package/src/assets/i18n/cldr-data/main/he/currencies.json +0 -1982
  216. package/src/assets/i18n/cldr-data/main/he/dateFields.json +0 -860
  217. package/src/assets/i18n/cldr-data/main/he/delimiters.json +0 -19
  218. package/src/assets/i18n/cldr-data/main/he/languages.json +0 -555
  219. package/src/assets/i18n/cldr-data/main/he/layout.json +0 -19
  220. package/src/assets/i18n/cldr-data/main/he/listPatterns.json +0 -69
  221. package/src/assets/i18n/cldr-data/main/he/localeDisplayNames.json +0 -231
  222. package/src/assets/i18n/cldr-data/main/he/measurementSystemNames.json +0 -20
  223. package/src/assets/i18n/cldr-data/main/he/numbers.json +0 -233
  224. package/src/assets/i18n/cldr-data/main/he/posix.json +0 -19
  225. package/src/assets/i18n/cldr-data/main/he/scripts.json +0 -191
  226. package/src/assets/i18n/cldr-data/main/he/territories.json +0 -324
  227. package/src/assets/i18n/cldr-data/main/he/timeZoneNames.json +0 -2301
  228. package/src/assets/i18n/cldr-data/main/he/units.json +0 -3408
  229. package/src/assets/i18n/cldr-data/main/he/variants.json +0 -119
  230. package/src/assets/i18n/cldr-data/supplemental/aliases.json +0 -4391
  231. package/src/assets/i18n/cldr-data/supplemental/calendarData.json +0 -865
  232. package/src/assets/i18n/cldr-data/supplemental/calendarPreferenceData.json +0 -50
  233. package/src/assets/i18n/cldr-data/supplemental/characterFallbacks.json +0 -888
  234. package/src/assets/i18n/cldr-data/supplemental/codeMappings.json +0 -1932
  235. package/src/assets/i18n/cldr-data/supplemental/currencyData.json +0 -3589
  236. package/src/assets/i18n/cldr-data/supplemental/dayPeriods.json +0 -2008
  237. package/src/assets/i18n/cldr-data/supplemental/gender.json +0 -67
  238. package/src/assets/i18n/cldr-data/supplemental/languageData.json +0 -6450
  239. package/src/assets/i18n/cldr-data/supplemental/languageGroups.json +0 -115
  240. package/src/assets/i18n/cldr-data/supplemental/languageMatching.json +0 -1864
  241. package/src/assets/i18n/cldr-data/supplemental/likelySubtags.json +0 -1844
  242. package/src/assets/i18n/cldr-data/supplemental/measurementData.json +0 -44
  243. package/src/assets/i18n/cldr-data/supplemental/metaZones.json +0 -7049
  244. package/src/assets/i18n/cldr-data/supplemental/numberingSystems.json +0 -343
  245. package/src/assets/i18n/cldr-data/supplemental/ordinals.json +0 -371
  246. package/src/assets/i18n/cldr-data/supplemental/parentLocales.json +0 -180
  247. package/src/assets/i18n/cldr-data/supplemental/plurals.json +0 -884
  248. package/src/assets/i18n/cldr-data/supplemental/primaryZones.json +0 -22
  249. package/src/assets/i18n/cldr-data/supplemental/references.json +0 -1181
  250. package/src/assets/i18n/cldr-data/supplemental/territoryContainment.json +0 -753
  251. package/src/assets/i18n/cldr-data/supplemental/territoryInfo.json +0 -6604
  252. package/src/assets/i18n/cldr-data/supplemental/timeData.json +0 -1031
  253. package/src/assets/i18n/cldr-data/supplemental/unitPreferenceData.json +0 -290
  254. package/src/assets/i18n/cldr-data/supplemental/weekData.json +0 -316
  255. package/src/assets/i18n/cldr-data/supplemental/windowsZones.json +0 -3520
  256. package/src/assets/icons/icon-128x128.png +0 -0
  257. package/src/assets/icons/icon-144x144.png +0 -0
  258. package/src/assets/icons/icon-152x152.png +0 -0
  259. package/src/assets/icons/icon-192x192.png +0 -0
  260. package/src/assets/icons/icon-256x256.png +0 -0
  261. package/src/assets/icons/icon-32x32.png +0 -0
  262. package/src/assets/icons/icon-512x512.png +0 -0
  263. package/src/assets/js/app-sw.js +0 -16
  264. package/src/assets/js/firebase-messaging-sw.js +0 -1
  265. package/src/assets/js/logo.js +0 -31
  266. package/src/assets/logo.json +0 -1
  267. package/src/assets/logo.svg +0 -38
  268. package/src/assets/manifest.json +0 -43
  269. package/src/assets/sounds/alert_error-03.ogg +0 -0
  270. package/src/assets/sounds/navigation_hover-tap.ogg +0 -0
  271. package/src/assets/sounds/notification_simple-01.ogg +0 -0
  272. package/src/assets/themes/brown.min.css +0 -81
  273. package/src/assets/themes/dark.min.css +0 -76
  274. package/src/assets/themes/default.min.css +0 -88
  275. package/src/assets/themes/green.min.css +0 -81
  276. package/src/assets/themes/indigo.min.css +0 -81
  277. package/src/assets/themes/okta-sign-in.min.css +0 -17
@@ -1,1238 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-04/schema",
3
- "title": "BizDoc Configuration Schema",
4
-
5
- "type": "object",
6
-
7
- "definitions": {
8
- "event": {
9
- "type": "object",
10
- "properties": {
11
- "Event": {
12
- "type": "string",
13
- "enum": [ "Start", "Intermediate", "NonInterruptingStart", "NonInterruptingIntermediate", "ThrowingIntermediate", "End" ]
14
- },
15
- "Trigger": {
16
- "type": "string",
17
- "enum": [
18
- "None",
19
- "Timer",
20
- "Message",
21
- "Conditional",
22
- "Link",
23
- "Signal",
24
- "Error",
25
- "Escalation",
26
- "Termination",
27
- "Cancel",
28
- "Compensation",
29
- "Parallel",
30
- "Multiple"
31
- ]
32
- }
33
- },
34
- "required": [ "Event" ]
35
- },
36
- "shape": {
37
- "type": "object",
38
- "properties": {
39
- "Type": {
40
- "type": "string",
41
- "enum": [ "Text", "Bpmn", "Flow", "Path", "Basic" ]
42
- },
43
- "Shape": {
44
- "type": "string",
45
- "enum": [
46
- "Gateway",
47
- "DataObject",
48
- "DataSource",
49
- "Ellipse",
50
- "Triangle",
51
- "Pentagon",
52
- "Rectangle",
53
- "Heptagon",
54
- "Octagon",
55
- "Trapezoid",
56
- "Decagon",
57
- "Parallelogram",
58
- "DirectData",
59
- "Sort",
60
- "MultiDocument",
61
- "Collate",
62
- "SummingJunction",
63
- "Or",
64
- "InternalStorage",
65
- "Extract",
66
- "Merge",
67
- "SequentialAccessStorage",
68
- "Data",
69
- "Card",
70
- "SwimLane",
71
- "ManualOperation",
72
- "Document",
73
- "Process",
74
- "Decision",
75
- "OffPageReference",
76
- "PaperTap",
77
- "Event",
78
- "Terminator",
79
- "Task",
80
- "Message",
81
- "PreDefinedProcess",
82
- "SequentialData",
83
- "Activity",
84
- "Annotation",
85
- "Annotation2",
86
- "Delay"
87
- ]
88
- },
89
- "Annotations": {
90
- "type": "array",
91
- "items": {
92
- "$ref": "#/definitions/annotation"
93
- }
94
- },
95
- "Event": {
96
- "$ref": "#/definitions/event"
97
- },
98
- "Activity": {
99
- "type": "object",
100
- "properties": {
101
- "Activity": {
102
- "enum": [ "None", "Task", "SubProcess" ]
103
- },
104
- "SubProcess": {
105
- "type": "object",
106
- "properties": {
107
- "Type": {
108
- "enum": [ "Transaction" ]
109
- },
110
- "Events": {
111
- "type": "array",
112
- "items": {
113
- "$ref": "#/definitions/event"
114
- }
115
- }
116
- }
117
- }
118
- }
119
- },
120
- "Gateway": {
121
- "type": "object",
122
- "properties": {
123
- "Type": {
124
- "enum": [
125
- "Parallel",
126
- "Exclusive",
127
- "Inclusive",
128
- "Complex",
129
- "EventBased",
130
- "ExclusiveEventBased",
131
- "ParallelEventBased"
132
- ]
133
- }
134
- },
135
- "required": [ "Type" ]
136
- },
137
- "Data": { "type": "string" },
138
- "Lanes": {
139
- "type": "array",
140
- "items": {
141
- "properties": {
142
- "Id": { "type": "string" },
143
- "Height": { "type": "number" },
144
- "Header": {
145
- "type": "object",
146
- "properties": {
147
- "Annotation": {
148
- "type": "object",
149
- "properties": { "Content": { "type": "string" } }
150
- },
151
- "Width": { "type": "number" }
152
- }
153
- }
154
- }
155
- }
156
- },
157
- "Phases": {
158
- "type": "array",
159
- "items": {
160
- "properties": {
161
- "Id": { "type": "string" },
162
- "Offset": { "type": "number" },
163
- "Header": {
164
- "type": "object",
165
- "properties": {
166
- "Content": {
167
- "type": "object",
168
- "properties": { "Content": { "type": "string" } }
169
- }
170
- }
171
- }
172
- }
173
- }
174
- }
175
- },
176
- "required": [ "Type" ]
177
- },
178
- "alignment": {
179
- "type": "string",
180
- "enum": [
181
- "Center",
182
- "Left",
183
- "Right",
184
- "Top",
185
- "Bottom"
186
- ]
187
- },
188
- "style": {
189
- "type": "object",
190
- "properties": {
191
- "Fill": {
192
- "type": "string",
193
- "format": "color"
194
- },
195
- "StrokeColor": {
196
- "type": "string",
197
- "format": "color"
198
- },
199
- "Color": {
200
- "type": "string",
201
- "format": "color"
202
- },
203
- "StrokeWidth": { "type": "number" },
204
- "StrokeDashArray": { "type": "string" },
205
- "FontSize": { "type": "number" }
206
- }
207
- },
208
- "annotation": {
209
- "type": "object",
210
- "properties": {
211
- "Style": {
212
- "$ref": "#/definitions/style"
213
- },
214
- "VerticalAlignment": {
215
- "$ref": "#/definitions/alignment"
216
- },
217
- "HorizontalAlignment": {
218
- "$ref": "#/definitions/alignment"
219
- },
220
- "Constraints": { "type": "integer" },
221
- "Content": {
222
- "type": "string"
223
- },
224
- "Offset": {
225
- "$ref": "#/definitions/point"
226
- }
227
- },
228
- "margin": {
229
- "type": "object",
230
- "properties": {
231
- "Top": {
232
- "type": "number"
233
- },
234
- "Left": {
235
- "type": "number"
236
- },
237
- "Right": {
238
- "type": "number"
239
- },
240
- "Bottom": {
241
- "type": "number"
242
- }
243
- }
244
- }
245
- },
246
- "decorator": {
247
- "type": "object",
248
- "properties": {
249
- "Shape": {
250
- "type": "string"
251
- },
252
- "Width": {
253
- "type": "integer"
254
- },
255
- "Height": {
256
- "type": "integer"
257
- },
258
- "BorderWidth": {
259
- "type": "integer"
260
- }
261
- }
262
- },
263
- "point": {
264
- "type": "object",
265
- "properties": {
266
- "X": {
267
- "type": "number"
268
- },
269
- "Y": {
270
- "type": "number"
271
- }
272
- },
273
- "required": [
274
- "X",
275
- "Y"
276
- ]
277
- },
278
- "workflow": {
279
- "type": "object",
280
- "properties": {
281
- "ScrollSettings": {
282
- "type": "object",
283
- "properties": {
284
- "CurrentZoom": {
285
- "type": "number"
286
- },
287
- "HorizontalOffset": {
288
- "type": "number"
289
- },
290
- "VerticalOffset": {
291
- "type": "number"
292
- }
293
- }
294
- },
295
- "Connectors": {
296
- "type": "array",
297
- "items": {
298
- "type": "object",
299
- "properties": {
300
- "LineDashArray": {
301
- "type": "string"
302
- },
303
- "Id": {
304
- "type": "string"
305
- },
306
- "TargetDecorator": {
307
- "$ref": "#/definitions/decorator"
308
- },
309
- "SourceDecorator": {
310
- "$ref": "#/definitions/decorator"
311
- },
312
- "LineWidth": {
313
- "type": "integer"
314
- },
315
- "Constraints": {
316
- "type": "integer"
317
- },
318
- "Segments": {
319
- "type": "array",
320
- "items": {
321
- "type": "object",
322
- "properties": {
323
- "Type": {
324
- "type": "string"
325
- },
326
- "Points": {
327
- "type": "array",
328
- "items": {
329
- "$ref": "#/definitions/point"
330
- }
331
- }
332
- },
333
- "required": [
334
- "Type"
335
- ]
336
- }
337
- },
338
- "CornerRadius": {
339
- "type": "number"
340
- },
341
- "SourcePoint": {
342
- "$ref": "#/definitions/point"
343
- },
344
- "TargetPoint": {
345
- "$ref": "#/definitions/point"
346
- },
347
- "AddInfo": {
348
- "type": "object",
349
- "properties": {
350
- "actionName": {
351
- "type": "string"
352
- },
353
- "Case": { "type": "string" }
354
- }
355
- },
356
- "TargetID": {
357
- "type": "string"
358
- },
359
- "SourceID": {
360
- "type": "string"
361
- }
362
- },
363
- "required": [
364
- "Id",
365
- "TargetID",
366
- "SourceID"
367
- ]
368
- }
369
- },
370
- "Timestamp": { "type": "number" },
371
- "Nodes": {
372
- "type": "array",
373
- "items": {
374
- "type": "object",
375
- "properties": {
376
- "Parent": {
377
- "type": "string"
378
- },
379
- "RotateAngle": {
380
- "type": "number"
381
- },
382
- "Width": {
383
- "type": "number"
384
- },
385
- "Height": {
386
- "type": "number"
387
- },
388
- "OffsetX": {
389
- "type": "number"
390
- },
391
- "OffsetY": {
392
- "type": "number"
393
- },
394
- "Id": {
395
- "type": "string"
396
- },
397
- "AddInfo": {
398
- "type": "object",
399
- "properties": {
400
- "nodeType": { "type": "string" },
401
- "standardTime": { "type": [ "string", "null" ] }
402
- },
403
- "additionalProperties": true
404
- },
405
- "Shape": {
406
- "$ref": "#/definitions/shape"
407
- },
408
- "Ports": {
409
- "type": "array",
410
- "items": {}
411
- },
412
- "Pivot": {
413
- "$ref": "#/definitions/point"
414
- },
415
- "BorderWidth": {
416
- "type": "integer"
417
- },
418
- "BorderDashArray": {
419
- "type": "string"
420
- },
421
- "Constraints": {
422
- "type": "integer"
423
- }
424
- },
425
- "required": [
426
- "Id",
427
- "Shape"
428
- ]
429
- }
430
- }
431
- },
432
- "required": [
433
- "Connectors",
434
- "Nodes"
435
- ]
436
- },
437
- "privileges": {
438
- "type": "object",
439
- "properties": {
440
- "Privileges": {
441
- "type": "object",
442
- "description": "Restrict element to authorized roles or a rule expression.",
443
- "properties": {
444
- "Rule": {
445
- "type": "string",
446
- "description": "Expression evaluated by RuleEngine service."
447
- },
448
- "Roles": {
449
- "type": "array",
450
- "items": { "type": "string" },
451
- "description": "List of authorized roles."
452
- }
453
- }
454
- }
455
- }
456
- },
457
- "axis": {
458
- "description": "Axis name or array of axes names.",
459
- "type": [ "array", "string" ],
460
- "items": {
461
- "type": "string",
462
- "pattern": "^[A-Za-z][\\w]*$",
463
- "uniqueItems": true
464
- },
465
- "pattern": "^[A-Za-z][\\w]*$"
466
- },
467
- "chart-type": {
468
- "type": "string",
469
- "default": "Column",
470
- "enum": [
471
- "Pie",
472
- "Bar",
473
- "StackingBar",
474
- "Line",
475
- "StepLine",
476
- "Column",
477
- "StackingColumn",
478
- "Area",
479
- "Spline",
480
- "SplineArea",
481
- "StackingArea",
482
- "Doughnut",
483
- "HalfDoughnut",
484
- "Polar",
485
- "Radar",
486
- "StepArea"
487
- ]
488
- },
489
- "axis_value": {
490
- "description": "Axis value.",
491
- "type": "object",
492
- "patternProperties": {
493
- "^[A-Za-z][\\w]*$": {
494
- "type": [ "array", "string", "integer" ],
495
- "pattern": "^[a-zA-Z0-9*\\#\\.]+([\\-]{0,1}[a-zA-Z0-9\\*\\#\\.]+)?$",
496
- "items": {
497
- "type": [ "string", "integer" ],
498
- "pattern": "^[a-zA-Z0-9*\\#\\.]+([\\-]{0,1}[a-zA-Z0-9\\*\\#\\.]+)?$",
499
- "uniqueItems": true,
500
- "links": [
501
- {
502
-
503
- }
504
- ]
505
- }
506
- }
507
- },
508
- "minProperties": 1
509
- },
510
- "base": {
511
- "type": "object",
512
- "properties": {
513
- "Name": {
514
- "type": "string",
515
- "pattern": "^[A-Za-z][\\w\\-]*$"
516
- },
517
- "Title": {
518
- "type": "string"
519
- },
520
- "Options": {
521
- "type": "object"
522
- },
523
- "ResourceType": {
524
- "type": "string"
525
- }
526
- },
527
- "required": [
528
- "Name",
529
- "Title"
530
- ],
531
- "links": [
532
- {
533
- "href": "{Name}",
534
- "rel": "self"
535
- }
536
- ]
537
- },
538
- "code": {
539
- "allOf": [
540
- { "$ref": "#/definitions/base" },
541
- {
542
- "properties": {
543
- "Type": {
544
- "type": "string",
545
- "description": "Implementation type and assembly."
546
- },
547
- "Disabled": {
548
- "type": "boolean",
549
- "default": true
550
- }
551
- },
552
- "required": [
553
- "Type"
554
- ]
555
- }
556
- ]
557
- }
558
- },
559
- "properties": {
560
- "Currencies": {
561
- "type": "array",
562
- "items": {
563
- "allOf": [
564
- { "$ref": "#/definitions/base" },
565
- {
566
- "properties": {
567
- "Symbol": { "type": "string" }
568
- }
569
- }
570
- ]
571
- }
572
- },
573
- "Folders": {
574
- "type": "array",
575
- "items": {
576
- "allOf": [
577
- { "$ref": "#/definitions/base" },
578
- { "$ref": "#/definitions/privileges" },
579
- {
580
- "properties": {
581
- "Filters": {
582
- "type": "object",
583
- "properties": {
584
- "Cube": {
585
- "type": "string"
586
- },
587
- "Axes": {
588
- "type": "array",
589
- "items": {
590
- "type": "string"
591
- }
592
- }
593
- }
594
- },
595
- "Columns": {
596
- "type": "array",
597
- "items": {
598
- "properties": {
599
- "Name": {
600
- "type": "string",
601
- "pattern": "^[A-Za-z]\\w*$",
602
- "enum": [ "number", "subject", "value", "owner", "sender", "received", "replied", "stateId" ]
603
- },
604
- "Title": {
605
- "type": "string"
606
- },
607
- "ResourceType": {
608
- "type": "string"
609
- },
610
- "Type": {
611
- "type": "string",
612
- "enum": [
613
- "Date",
614
- "Boolean",
615
- "Decimal",
616
- "Text"
617
- ]
618
- }
619
- },
620
- "required": [ "Name" ]
621
- },
622
- "Icon": {
623
- "type": "string"
624
- }
625
- }
626
- }
627
- }
628
- ]
629
- },
630
- "additionalProperties": false
631
- },
632
- "States": {
633
- "type": "array",
634
- "items": {
635
- "allOf": [
636
- { "$ref": "#/definitions/base" },
637
- {
638
- "properties": {
639
- "Past": {
640
- "type": "string"
641
- },
642
- "Future": {
643
- "type": "string"
644
- },
645
- "Color": {
646
- "type": "string",
647
- "format": "color"
648
- },
649
- "Shape": {
650
- "type": "string",
651
- "description": "SVG"
652
- },
653
- "Hidden": { "type": "boolean" }
654
- }
655
- }
656
- ]
657
- },
658
- "additionalProperties": false
659
- },
660
- "Actions": {
661
- "type": "array",
662
- "items": {
663
- "allOf": [
664
- { "$ref": "#/definitions/code" },
665
- {
666
- "properties": {
667
- "Multiple": {
668
- "type": "boolean"
669
- },
670
- "Past": {
671
- "type": "string"
672
- },
673
- "You": {
674
- "type": "string"
675
- },
676
- "YouMale": {
677
- "type": "string"
678
- },
679
- "YouFemale": {
680
- "type": "string"
681
- },
682
- "Shape": {
683
- "type": "string",
684
- "description": "SVG"
685
- },
686
- "Color": {
687
- "type": "string"
688
- },
689
- "Verb": {
690
- "type": "string"
691
- },
692
- "TitleMale": {
693
- "type": "string"
694
- },
695
- "TitleFemale": {
696
- "type": "string"
697
- },
698
- "Adjective": {
699
- "type": "string"
700
- },
701
- "AdjectivePlural": {
702
- "type": "string"
703
- }
704
- }
705
- }
706
- ]
707
- },
708
- "additionalProperties": false
709
- },
710
- "Roles": {
711
- "type": "array",
712
- "items": {
713
- "allOf": [
714
- { "$ref": "#/definitions/base" },
715
- {
716
- "properties": {
717
- "DataType": {
718
- "Type": "string"
719
- },
720
- "SequencePolicy": {
721
- "enum": [ "Both", "Either", "Higher" ],
722
- "default": "Both"
723
- },
724
- "Priority": {
725
- "description": "Sequence policy higher value",
726
- "Type": "number",
727
- "minimum": -128,
728
- "maximum": 127
729
- },
730
- "Positions": {
731
- "type": "object",
732
- "patternProperties": {
733
- "^.*$": {
734
- "type": [ "string", "array" ],
735
- "items": { "type": [ "string" ] }
736
- }
737
- },
738
- "additionalProperties": false
739
- }
740
- },
741
- "required": [
742
- "DataType"
743
- ]
744
- }
745
- ]
746
- },
747
- "additionalProperties": false
748
- },
749
- "Forms": {
750
- "type": "array",
751
- "items": {
752
- "allOf": [
753
- { "$ref": "#/definitions/code" },
754
- { "$ref": "#/definitions/privileges" },
755
- {
756
- "properties": {
757
- "Format": {
758
- "type": "string"
759
- },
760
- "Template": {
761
- "type": "string"
762
- },
763
- "Position": {
764
- "type": "string",
765
- "enum": [ "Require", "Ask", "None" ]
766
- },
767
- "Workflow": {
768
- "$ref": "#/definitions/workflow"
769
- },
770
- "Icon": {
771
- "type": "string"
772
- },
773
- "Guide": {
774
- "type": "string"
775
- },
776
- "Rules": {
777
- "patternProperties": {
778
- "^.*$": {
779
- "type": "object",
780
- "properties": {
781
- "Roles": {
782
- "type": "array",
783
- "items": { "type": "string" }
784
- },
785
- "Rule": { "type": "string" },
786
- "Title": { "type": "string" }
787
- }
788
- }
789
- }
790
- },
791
- "History": {
792
- "type": "array",
793
- "items": {
794
- "$ref": "#/definitions/workflow"
795
- }
796
- }
797
- },
798
- "required": [
799
- "Format",
800
- "Workflow"
801
- ]
802
- }
803
- ]
804
- },
805
- "additionalProperties": false
806
- },
807
- "Reports": {
808
- "type": "array",
809
- "items": {
810
- "allOf": [
811
- { "$ref": "#/definitions/code" },
812
- { "$ref": "#/definitions/privileges" },
813
- {
814
- "properties": {
815
- "Template": {
816
- "type": "string"
817
- },
818
- "Icon": { "type": "string" },
819
- "ArgumentsTemplate": { "type": "string" },
820
- "Guide": {
821
- "type": "string"
822
- }
823
- }
824
- }
825
- ]
826
- },
827
- "additionalProperties": false
828
- },
829
- "Types": {
830
- "type": "array",
831
- "items": {
832
- "allOf": [
833
- { "$ref": "#/definitions/code" },
834
- {
835
- "properties": {
836
- "Assignable": {
837
- "type": "boolean"
838
- },
839
- "Decendent": { "type": "array" },
840
- "Groups": {
841
- "type": "array",
842
- "items": {
843
- "properties": {
844
- "Name": { "type": "string" },
845
- "Title": { "type": "string" },
846
- "items": {
847
- "type": "array",
848
- "items": { "type": "string" }
849
- }
850
- }
851
- }
852
- },
853
- "Patterns": {
854
- "type": "array",
855
- "items": {
856
- "type": "object",
857
- "properties": {
858
- "Expression": { "type": "string" },
859
- "Name": { "type": "string" },
860
- "Title": { "type": "string" }
861
- }
862
- }
863
- }
864
- }
865
- }
866
- ]
867
- },
868
- "additionalProperties": false
869
- },
870
- "Nodes": {
871
- "type": "array",
872
- "items": {
873
- "allOf": [
874
- { "$ref": "#/definitions/code" },
875
- {
876
- "properties": {
877
- "Loggable": {
878
- "type": "boolean"
879
- },
880
- "Palette": {
881
- "type": "string"
882
- },
883
- "Shape": {
884
- "$ref": "#/definitions/shape"
885
- }
886
- },
887
- "required": [
888
- "Shape"
889
- ]
890
- }
891
- ]
892
- },
893
- "additionalProperties": false
894
- },
895
- "Cubes": {
896
- "type": "array",
897
- "items": {
898
- "allOf": [
899
- { "$ref": "#/definitions/code" },
900
- { "$ref": "#/definitions/privileges" },
901
- {
902
- "properties": {
903
- "Anomaly": {
904
- "enum": [ "Positions", "Recipients", "Signatories" ]
905
- },
906
- "Constraints": {
907
- "type": "array",
908
- "items": {
909
- "properties": {
910
- "Condition": {
911
- "$ref": "#/definitions/axis_value"
912
- },
913
- "Projection": {
914
- "$ref": "#/definitions/axis_value"
915
- }
916
- },
917
- "required": [ "Condition", "Projection" ]
918
- }
919
- },
920
- "YAxis": {
921
- "type": "object",
922
- "properties": {
923
- "Title": {
924
- "type": "string"
925
- }
926
- }
927
- },
928
- "CurrencyCode": { "type": "string" },
929
- "Template": {
930
- "type": "string"
931
- },
932
- "Axes": {
933
- "type": "array",
934
- "items": {
935
- "allOf": [
936
- { "$ref": "#/definitions/base" },
937
- {
938
- "properties": {
939
- "SelectionMode": {
940
- "description": "User interaction in filters",
941
- "enum": [ "Single", "Pattern", "Multiple", "Search", "None" ]
942
- },
943
- "Combination": {
944
- "type": "boolean",
945
- "description": "Is an account segment"
946
- },
947
- "Indexable": {
948
- "type": "boolean",
949
- "description": "Meaningful in Indices queries. Set false for cube-only axes"
950
- },
951
- "Sensitive": {
952
- "type": "boolean",
953
- "description": "Meaningful in anomaly test. True by default"
954
- },
955
- "DataType": {
956
- "type": "string",
957
- "description": "Name of type associated with this axis"
958
- }
959
- },
960
- "required": [ "DataType" ]
961
- }
962
- ]
963
- },
964
- "additionalProperties": false
965
- },
966
- "Patterns": {
967
- "type": "array",
968
- "items": {
969
- "allOf": [
970
- { "$ref": "#/definitions/base" },
971
- {
972
- "properties": {
973
- "Axes": {
974
- "$ref": "#/definitions/axis_value"
975
- },
976
- "Roles": {
977
- "type": "array",
978
- "items": {
979
- "type": "string"
980
- }
981
- },
982
- "Rule": {
983
- "type": "string",
984
- "description": "Expression evaluated by RuleEngine service."
985
- }
986
- },
987
- "required": [ "Roles", "Axes" ]
988
- }
989
- ]
990
- },
991
- "additionalProperties": false
992
- },
993
- "Views": {
994
- "type": "array",
995
- "items": {
996
- "allOf": [
997
- { "$ref": "#/definitions/base" },
998
- { "$ref": "#/definitions/privileges" },
999
- {
1000
- "properties": {
1001
- "Icon": { "type": "string" },
1002
- "Guide": { "type": "string" },
1003
- "Filters": {
1004
- "$ref": "#/definitions/axis_value"
1005
- },
1006
- "Type": {
1007
- "type": "string",
1008
- "default": "Chart",
1009
- "enum": [
1010
- "Pivot",
1011
- "Spreadsheet",
1012
- "Grid",
1013
- "Chart"
1014
- ]
1015
- },
1016
- "ChartType": {
1017
- "$ref": "#/definitions/chart-type"
1018
- },
1019
- "IndexChartType": {
1020
- "$ref": "#/definitions/chart-type"
1021
- },
1022
- "Series": {
1023
- "$ref": "#/definitions/axis"
1024
- },
1025
- "XAxis": {
1026
- "$ref": "#/definitions/axis"
1027
- },
1028
- "Indices": {
1029
- "description": "Cube index name or array of indices names.",
1030
- "anyOf": [
1031
- {
1032
- "type": "array",
1033
- "items": {
1034
- "type": "string",
1035
- "pattern": "^[A-Za-z]([\\-_]{0,1}[a-zA-Z0-9]+)+$",
1036
- "uniqueItems": true
1037
- }
1038
- },
1039
- {
1040
- "type": "string",
1041
- "pattern": "^[A-Za-z]([\\-_]{0,1}[a-zA-Z0-9]+)+$"
1042
- }
1043
- ]
1044
- }
1045
- },
1046
- "required": [ "XAxis" ]
1047
- }
1048
- ]
1049
- },
1050
- "additionalProperties": false
1051
- },
1052
- "Indices": {
1053
- "type": "array",
1054
- "items": {
1055
- "allOf": [
1056
- { "$ref": "#/definitions/base" },
1057
- {
1058
- }
1059
- ]
1060
- }
1061
- }
1062
- },
1063
- "required": [
1064
- "Axes",
1065
- "Views"
1066
- ]
1067
- }
1068
- ]
1069
- },
1070
- "additionalProperties": false
1071
- },
1072
- "Rules": {
1073
- "type": "array",
1074
- "items": {
1075
- "allOf": [
1076
- { "$ref": "#/definitions/code" },
1077
- {
1078
- }
1079
- ]
1080
- },
1081
- "additionalProperties": false
1082
- },
1083
- "Utilities": {
1084
- "type": "array",
1085
- "items": {
1086
- "allOf": [
1087
- { "$ref": "#/definitions/code" },
1088
- { "$ref": "#/definitions/privileges" },
1089
- {
1090
- "properties": {
1091
- "Template": {
1092
- "type": "string"
1093
- },
1094
- "Icon": { "type": "string" },
1095
- "Guide": {
1096
- "type": "string"
1097
- }
1098
- }
1099
- }
1100
- ]
1101
- },
1102
- "additionalProperties": false
1103
- },
1104
- "Widgets": {
1105
- "type": "array",
1106
- "items": {
1107
- "allOf": [
1108
- { "$ref": "#/definitions/code" },
1109
- { "$ref": "#/definitions/privileges" },
1110
- {
1111
- "properties": {
1112
- "Guide": { "type": "string" },
1113
- "Template": {
1114
- "type": "string"
1115
- },
1116
- "Cols": { "type": "number" },
1117
- "Rows": { "type": "number" }
1118
- }
1119
- }
1120
- ]
1121
- },
1122
- "additionalProperties": false
1123
- },
1124
- "Views": {
1125
- "type": "array",
1126
- "items": {
1127
- "allOf": [
1128
- { "$ref": "#/definitions/code" },
1129
- { "$ref": "#/definitions/privileges" },
1130
- {
1131
- "properties": {
1132
- "Guide": { "type": "string" },
1133
- "Template": {
1134
- "type": "string"
1135
- },
1136
- "Forms": {
1137
- "type": "array",
1138
- "items": {"type": "string"}
1139
- },
1140
- "Cubes": {
1141
- "type": "array",
1142
- "items": { "type": "string" }
1143
- }
1144
- }
1145
- }
1146
- ]
1147
- },
1148
- "additionalProperties": false
1149
- },
1150
- "Implementation": {
1151
- "patternProperties": {
1152
- "^[A-Za-z][\\w]*$": {
1153
- "type": "object"
1154
- }
1155
- }
1156
- },
1157
- "Guides": {
1158
- "type": "array",
1159
- "items": {
1160
- "allOf": [
1161
- { "$ref": "#/definitions/base" },
1162
- { "$ref": "#/definitions/privileges" },
1163
- {
1164
- "properties": {
1165
- "Steps": {
1166
- "type": "array",
1167
- "items": {
1168
- "allOf": [
1169
- { "$ref": "#/definitions/privileges" },
1170
- {
1171
- "properties": {
1172
- "Selector": {
1173
- "type": "string"
1174
- },
1175
- "Content": {
1176
- "type": "string"
1177
- },
1178
- "ContentMale": {
1179
- "type": "string"
1180
- },
1181
- "ContentFemale": {
1182
- "type": "string"
1183
- },
1184
- "TitleMale": {
1185
- "type": "string"
1186
- },
1187
- "TitleFemale": {
1188
- "type": "string"
1189
- },
1190
- "Position": {
1191
- "enum": [ "Above", "End", "Start", "Below" ]
1192
- },
1193
- "Navigate": {
1194
- "type": "string"
1195
- },
1196
- "Title": {
1197
- "type": "string"
1198
- },
1199
- "ResourceType": {
1200
- "type": "string"
1201
- }
1202
- },
1203
- "required": [
1204
- "Content"
1205
- ]
1206
- }
1207
- ]
1208
- },
1209
- "additionalProperties": false
1210
- },
1211
- "Mode": {
1212
- "enum": [ "Eager", "Menu", "Private" ]
1213
- },
1214
- "Hidden": { "type": "boolean" }
1215
- },
1216
- "required": [
1217
- "Steps"
1218
- ]
1219
- }
1220
- ]
1221
- },
1222
- "additionalProperties": false
1223
- }
1224
- },
1225
- "required": [
1226
- "Folders",
1227
- "States",
1228
- "Actions",
1229
- "Roles",
1230
- "Forms",
1231
- "Reports",
1232
- "Types",
1233
- "Nodes",
1234
- "Rules",
1235
- "Widgets",
1236
- "Currencies"
1237
- ]
1238
- }