tianheng-ui 0.1.0 → 0.1.2

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 (254) hide show
  1. package/README.md +9 -18
  2. package/lib/039af9192b9bb277966ceb4e4ce29c41.js +16 -0
  3. package/lib/2d84c80112a372bc149cad3464e90fa3.js +1617 -0
  4. package/lib/5977b934a4c6b480790864ea01303173.js +10834 -0
  5. package/lib/7745f3e776488705a38e62f85adad54d.js +16 -0
  6. package/lib/de8dee841ffdaaede3a2254deef30376.js +15395 -0
  7. package/lib/e78eab250e7f8ccac3d918dfdb06ca10.js +8904 -0
  8. package/lib/theme-chalk/fonts/PingFang.ttf +0 -0
  9. package/lib/theme-chalk/fonts/bpmn.eot +0 -0
  10. package/lib/theme-chalk/fonts/bpmn.svg +224 -0
  11. package/lib/theme-chalk/fonts/bpmn.ttf +0 -0
  12. package/lib/theme-chalk/fonts/bpmn.woff +0 -0
  13. package/lib/theme-chalk/fonts/bpmn.woff2 +0 -0
  14. package/lib/theme-chalk/fonts/fontawesome-webfont.eot +0 -0
  15. package/lib/theme-chalk/fonts/fontawesome-webfont.svg +2671 -0
  16. package/lib/theme-chalk/fonts/fontawesome-webfont.ttf +0 -0
  17. package/lib/theme-chalk/fonts/fontawesome-webfont.woff +0 -0
  18. package/lib/theme-chalk/fonts/fontawesome-webfont.woff2 +0 -0
  19. package/lib/theme-chalk/fonts/iconfont.eot +0 -0
  20. package/lib/theme-chalk/fonts/iconfont.svg +155 -0
  21. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  22. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  23. package/lib/theme-chalk/fonts/iconfont.woff2 +0 -0
  24. package/lib/theme-chalk/images/notData.png +0 -0
  25. package/lib/theme-chalk/index.scss +31 -0
  26. package/lib/theme-chalk/js/Log.js +99 -0
  27. package/lib/theme-chalk/js/axios.js +86 -0
  28. package/lib/theme-chalk/js/store/getters.js +5 -0
  29. package/lib/theme-chalk/js/store/modules/makingForm.js +21 -0
  30. package/lib/theme-chalk/js/store/store.js +26 -0
  31. package/lib/theme-chalk/styles/button.scss +501 -0
  32. package/lib/theme-chalk/styles/card.scss +29 -0
  33. package/lib/theme-chalk/styles/cell.scss +54 -0
  34. package/lib/theme-chalk/styles/codeEditor.scss +9 -0
  35. package/lib/theme-chalk/styles/col.scss +151 -0
  36. package/lib/theme-chalk/styles/dialog.scss +56 -0
  37. package/lib/theme-chalk/styles/empty.scss +22 -0
  38. package/lib/theme-chalk/styles/feature.scss +46 -0
  39. package/lib/theme-chalk/styles/font.css +7 -0
  40. package/lib/theme-chalk/styles/grid.scss +41 -0
  41. package/lib/theme-chalk/styles/icon.css +1944 -0
  42. package/lib/theme-chalk/styles/imagePreview.scss +113 -0
  43. package/lib/theme-chalk/styles/img.scss +35 -0
  44. package/lib/theme-chalk/styles/reset.scss +17 -0
  45. package/lib/theme-chalk/styles/root.css +64 -0
  46. package/lib/theme-chalk/styles/row.scss +23 -0
  47. package/lib/theme-chalk/styles/upload.scss +744 -0
  48. package/lib/theme-chalk/styles/variable.scss +80 -0
  49. package/lib/tianheng-ui.js +116 -0
  50. package/package.json +86 -48
  51. package/packages/Button/index.js +8 -0
  52. package/packages/Button/index.vue +80 -0
  53. package/packages/Card/index.js +8 -0
  54. package/packages/Card/index.vue +37 -0
  55. package/packages/Cell/index.js +8 -0
  56. package/packages/Cell/index.vue +68 -0
  57. package/packages/CodeEditor/index.js +8 -0
  58. package/packages/CodeEditor/index.vue +177 -0
  59. package/packages/Col/index.js +8 -0
  60. package/packages/Col/index.vue +43 -0
  61. package/packages/Dialog/index.js +8 -0
  62. package/packages/Dialog/index.vue +129 -0
  63. package/packages/Empty/index.js +8 -0
  64. package/packages/Empty/index.vue +35 -0
  65. package/packages/FormMaking/FormConfig.vue +60 -0
  66. package/packages/FormMaking/GenerateForm.vue +308 -0
  67. package/packages/FormMaking/GenerateFormItem.vue +887 -0
  68. package/packages/FormMaking/GenerateFormItemH5.vue +825 -0
  69. package/packages/FormMaking/Upload/index.vue +572 -0
  70. package/packages/FormMaking/WidgetConfig.vue +472 -0
  71. package/packages/FormMaking/WidgetForm.vue +159 -0
  72. package/packages/FormMaking/WidgetFormItem.vue +187 -0
  73. package/packages/FormMaking/custom/config.js +762 -0
  74. package/packages/FormMaking/custom/configs/alliance.vue +0 -0
  75. package/packages/FormMaking/custom/configs/blank.vue +54 -0
  76. package/packages/FormMaking/custom/configs/button.vue +172 -0
  77. package/packages/FormMaking/custom/configs/cascader.vue +175 -0
  78. package/packages/FormMaking/custom/configs/cell.vue +81 -0
  79. package/packages/FormMaking/custom/configs/checkbox.vue +234 -0
  80. package/packages/FormMaking/custom/configs/color.vue +137 -0
  81. package/packages/FormMaking/custom/configs/date.vue +158 -0
  82. package/packages/FormMaking/custom/configs/divider.vue +61 -0
  83. package/packages/FormMaking/custom/configs/editor.vue +71 -0
  84. package/packages/FormMaking/custom/configs/filler.vue +57 -0
  85. package/packages/FormMaking/custom/configs/grid.vue +103 -0
  86. package/packages/FormMaking/custom/configs/image.vue +138 -0
  87. package/packages/FormMaking/custom/configs/input.vue +176 -0
  88. package/packages/FormMaking/custom/configs/number.vue +140 -0
  89. package/packages/FormMaking/custom/configs/radio.vue +211 -0
  90. package/packages/FormMaking/custom/configs/rate.vue +109 -0
  91. package/packages/FormMaking/custom/configs/select.vue +305 -0
  92. package/packages/FormMaking/custom/configs/slider.vue +142 -0
  93. package/packages/FormMaking/custom/configs/switch.vue +130 -0
  94. package/packages/FormMaking/custom/configs/table.vue +105 -0
  95. package/packages/FormMaking/custom/configs/table_h5.vue +102 -0
  96. package/packages/FormMaking/custom/configs/tabs.vue +175 -0
  97. package/packages/FormMaking/custom/configs/text.vue +71 -0
  98. package/packages/FormMaking/custom/configs/textarea.vue +167 -0
  99. package/packages/FormMaking/custom/configs/time.vue +153 -0
  100. package/packages/FormMaking/custom/configs/upload.vue +155 -0
  101. package/packages/FormMaking/custom/index.js +32 -0
  102. package/packages/FormMaking/custom/items/alliance.vue +132 -0
  103. package/packages/FormMaking/custom/items/blank.vue +16 -0
  104. package/packages/FormMaking/custom/items/button.vue +27 -0
  105. package/packages/FormMaking/custom/items/cascader.vue +29 -0
  106. package/packages/FormMaking/custom/items/cell.vue +18 -0
  107. package/packages/FormMaking/custom/items/checkbox.vue +46 -0
  108. package/packages/FormMaking/custom/items/color.vue +19 -0
  109. package/packages/FormMaking/custom/items/date.vue +29 -0
  110. package/packages/FormMaking/custom/items/divider.vue +14 -0
  111. package/packages/FormMaking/custom/items/editor.vue +22 -0
  112. package/packages/FormMaking/custom/items/filler.vue +17 -0
  113. package/packages/FormMaking/custom/items/grid.vue +130 -0
  114. package/packages/FormMaking/custom/items/image.vue +70 -0
  115. package/packages/FormMaking/custom/items/input.vue +33 -0
  116. package/packages/FormMaking/custom/items/login.vue +13 -0
  117. package/packages/FormMaking/custom/items/number.vue +24 -0
  118. package/packages/FormMaking/custom/items/radio.vue +44 -0
  119. package/packages/FormMaking/custom/items/rate.vue +20 -0
  120. package/packages/FormMaking/custom/items/select.vue +32 -0
  121. package/packages/FormMaking/custom/items/slider.vue +34 -0
  122. package/packages/FormMaking/custom/items/switch.vue +22 -0
  123. package/packages/FormMaking/custom/items/table.vue +106 -0
  124. package/packages/FormMaking/custom/items/table_h5.vue +126 -0
  125. package/packages/FormMaking/custom/items/tabs.vue +145 -0
  126. package/packages/FormMaking/custom/items/text.vue +18 -0
  127. package/packages/FormMaking/custom/items/textarea.vue +37 -0
  128. package/packages/FormMaking/custom/items/time.vue +32 -0
  129. package/packages/FormMaking/custom/items/upload.vue +102 -0
  130. package/packages/FormMaking/custom/mixins/index.js +61 -0
  131. package/packages/FormMaking/custom/register.js +18 -0
  132. package/packages/FormMaking/generate.js +5 -0
  133. package/packages/FormMaking/iconfont/demo.css +539 -0
  134. package/packages/FormMaking/iconfont/demo_index.html +1159 -0
  135. package/packages/FormMaking/iconfont/iconfont.css +189 -0
  136. package/packages/FormMaking/iconfont/iconfont.eot +0 -0
  137. package/packages/FormMaking/iconfont/iconfont.js +1 -0
  138. package/packages/FormMaking/iconfont/iconfont.svg +155 -0
  139. package/packages/FormMaking/iconfont/iconfont.ttf +0 -0
  140. package/packages/FormMaking/iconfont/iconfont.woff +0 -0
  141. package/packages/FormMaking/iconfont/iconfont.woff2 +0 -0
  142. package/packages/FormMaking/index.js +33 -0
  143. package/packages/FormMaking/index.vue +807 -0
  144. package/packages/FormMaking/lang/en-US.js +187 -0
  145. package/packages/FormMaking/lang/zh-CN.js +187 -0
  146. package/packages/FormMaking/making.js +9 -0
  147. package/packages/FormMaking/styles/cover.scss +41 -0
  148. package/packages/FormMaking/styles/index.scss +785 -0
  149. package/packages/FormMaking/util/generateCode.js +163 -0
  150. package/packages/FormMaking/util/index.js +33 -0
  151. package/packages/FormMaking/util/request.js +28 -0
  152. package/packages/Grid/index.js +8 -0
  153. package/packages/Grid/index.vue +21 -0
  154. package/packages/GridItem/index.js +8 -0
  155. package/packages/GridItem/index.vue +69 -0
  156. package/packages/Icons/index.js +8 -0
  157. package/packages/Icons/index.vue +377 -0
  158. package/packages/Image/index.js +8 -0
  159. package/packages/Image/index.vue +146 -0
  160. package/packages/ImagePreview/index.js +8 -0
  161. package/packages/ImagePreview/index.vue +386 -0
  162. package/packages/Row/index.js +8 -0
  163. package/packages/Row/index.vue +33 -0
  164. package/packages/Table/action.js +8 -0
  165. package/packages/Table/action.vue +168 -0
  166. package/packages/Table/column.vue +63 -0
  167. package/packages/Table/index.js +8 -0
  168. package/packages/Table/index.vue +327 -0
  169. package/packages/Table/search.js +8 -0
  170. package/packages/Table/search.vue +163 -0
  171. package/packages/Table/tools.js +8 -0
  172. package/packages/Table/tools.vue +49 -0
  173. package/packages/TableMaking/custom/configs/fieldSearch.vue +17 -0
  174. package/packages/TableMaking/custom/configs/fieldTable.vue +15 -0
  175. package/packages/TableMaking/custom/items/search/index.vue +158 -0
  176. package/packages/TableMaking/custom/items/tools/index.vue +49 -0
  177. package/packages/TableMaking/generate.js +5 -0
  178. package/packages/TableMaking/generateTable.vue +560 -0
  179. package/packages/TableMaking/index.vue +229 -0
  180. package/packages/TableMaking/making.js +5 -0
  181. package/packages/TableMaking/util/index.js +433 -0
  182. package/packages/TableMaking/widgetConfig.vue +390 -0
  183. package/packages/TableMaking/widgetTable.vue +305 -0
  184. package/packages/Upload/ajax.js +85 -0
  185. package/packages/Upload/index.js +8 -0
  186. package/packages/Upload/index.vue +325 -0
  187. package/packages/Upload/upload-dragger.vue +70 -0
  188. package/packages/Upload/upload-list.vue +121 -0
  189. package/packages/Upload/upload.vue +193 -0
  190. package/packages/VueEditor/index.js +8 -0
  191. package/packages/VueEditor/index.vue +38 -0
  192. package/packages/Workflow/Log.js +99 -0
  193. package/packages/Workflow/designer/ProcessDesigner.vue +628 -0
  194. package/packages/Workflow/designer/index.js +7 -0
  195. package/packages/Workflow/designer/plugins/content-pad/contentPadProvider.js +390 -0
  196. package/packages/Workflow/designer/plugins/content-pad/index.js +6 -0
  197. package/packages/Workflow/designer/plugins/defaultEmpty.js +24 -0
  198. package/packages/Workflow/designer/plugins/descriptor/activitiDescriptor.json +1071 -0
  199. package/packages/Workflow/designer/plugins/descriptor/camundaDescriptor.json +1087 -0
  200. package/packages/Workflow/designer/plugins/descriptor/flowableDescriptor.json +1215 -0
  201. package/packages/Workflow/designer/plugins/extension-moddle/activiti/activitiExtension.js +74 -0
  202. package/packages/Workflow/designer/plugins/extension-moddle/activiti/index.js +9 -0
  203. package/packages/Workflow/designer/plugins/extension-moddle/camunda/extension.js +148 -0
  204. package/packages/Workflow/designer/plugins/extension-moddle/camunda/index.js +6 -0
  205. package/packages/Workflow/designer/plugins/extension-moddle/flowable/flowableExtension.js +74 -0
  206. package/packages/Workflow/designer/plugins/extension-moddle/flowable/index.js +9 -0
  207. package/packages/Workflow/designer/plugins/palette/CustomPalette.js +156 -0
  208. package/packages/Workflow/designer/plugins/palette/index.js +6 -0
  209. package/packages/Workflow/designer/plugins/palette/paletteProvider.js +160 -0
  210. package/packages/Workflow/designer/plugins/translate/customTranslate.js +41 -0
  211. package/packages/Workflow/designer/plugins/translate/zh.js +238 -0
  212. package/packages/Workflow/highlight/index.js +5 -0
  213. package/packages/Workflow/index.js +34 -0
  214. package/packages/Workflow/index.vue +399 -0
  215. package/packages/Workflow/modules/auto-place/CustomAutoPlace.js +81 -0
  216. package/packages/Workflow/modules/auto-place/index.js +6 -0
  217. package/packages/Workflow/modules/custom-renderer/CustomRenderer.js +17 -0
  218. package/packages/Workflow/modules/custom-renderer/index.js +6 -0
  219. package/packages/Workflow/modules/rules/CustomRules.js +16 -0
  220. package/packages/Workflow/modules/rules/index.js +6 -0
  221. package/packages/Workflow/palette/ProcessPalette.vue +106 -0
  222. package/packages/Workflow/palette/index.js +7 -0
  223. package/packages/Workflow/penal/PropertiesPanel.vue +245 -0
  224. package/packages/Workflow/penal/base/ElementBaseInfo.vue +80 -0
  225. package/packages/Workflow/penal/flow-condition/FlowCondition.vue +142 -0
  226. package/packages/Workflow/penal/form/ElementForm.vue +367 -0
  227. package/packages/Workflow/penal/index.js +7 -0
  228. package/packages/Workflow/penal/listeners/ElementListeners.vue +299 -0
  229. package/packages/Workflow/penal/listeners/UserTaskListeners.vue +322 -0
  230. package/packages/Workflow/penal/listeners/template.js +178 -0
  231. package/packages/Workflow/penal/listeners/utilSelf.js +64 -0
  232. package/packages/Workflow/penal/multi-instance/ElementMultiInstance.vue +200 -0
  233. package/packages/Workflow/penal/other/ElementOtherConfig.vue +59 -0
  234. package/packages/Workflow/penal/properties/ElementProperties.vue +135 -0
  235. package/packages/Workflow/penal/signal-message/SignalAndMessage.vue +104 -0
  236. package/packages/Workflow/penal/task/ElementTask.vue +73 -0
  237. package/packages/Workflow/penal/task/task-components/ReceiveTask.vue +97 -0
  238. package/packages/Workflow/penal/task/task-components/ScriptTask.vue +85 -0
  239. package/packages/Workflow/penal/task/task-components/UserTask.vue +535 -0
  240. package/packages/Workflow/theme/element-variables.scss +70 -0
  241. package/packages/Workflow/theme/index.scss +2 -0
  242. package/packages/Workflow/theme/process-designer.scss +157 -0
  243. package/packages/Workflow/theme/process-panel.scss +107 -0
  244. package/packages/Workflow/translations.js +25 -0
  245. package/packages/Workflow/utils.js +71 -0
  246. package/packages/index.js +160 -0
  247. package/babel.config.js +0 -15
  248. package/index.js +0 -11
  249. package/public/favicon.ico +0 -0
  250. package/public/index.html +0 -17
  251. package/src/App.vue +0 -28
  252. package/src/assets/logo.png +0 -0
  253. package/src/components/HelloWorld.vue +0 -58
  254. package/src/main.js +0 -8
@@ -0,0 +1,1215 @@
1
+ {
2
+ "name": "Flowable",
3
+ "uri": "http://flowable.org/bpmn",
4
+ "prefix": "flowable",
5
+ "xml": {
6
+ "tagAlias": "lowerCase"
7
+ },
8
+ "associations": [],
9
+ "types": [
10
+ {
11
+ "name": "InOutBinding",
12
+ "superClass": ["Element"],
13
+ "isAbstract": true,
14
+ "properties": [
15
+ {
16
+ "name": "source",
17
+ "isAttr": true,
18
+ "type": "String"
19
+ },
20
+ {
21
+ "name": "sourceExpression",
22
+ "isAttr": true,
23
+ "type": "String"
24
+ },
25
+ {
26
+ "name": "target",
27
+ "isAttr": true,
28
+ "type": "String"
29
+ },
30
+ {
31
+ "name": "businessKey",
32
+ "isAttr": true,
33
+ "type": "String"
34
+ },
35
+ {
36
+ "name": "local",
37
+ "isAttr": true,
38
+ "type": "Boolean",
39
+ "default": false
40
+ },
41
+ {
42
+ "name": "variables",
43
+ "isAttr": true,
44
+ "type": "String"
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "name": "In",
50
+ "superClass": ["InOutBinding"],
51
+ "meta": {
52
+ "allowedIn": ["bpmn:CallActivity"]
53
+ }
54
+ },
55
+ {
56
+ "name": "Out",
57
+ "superClass": ["InOutBinding"],
58
+ "meta": {
59
+ "allowedIn": ["bpmn:CallActivity"]
60
+ }
61
+ },
62
+ {
63
+ "name": "AsyncCapable",
64
+ "isAbstract": true,
65
+ "extends": ["bpmn:Activity", "bpmn:Gateway", "bpmn:Event"],
66
+ "properties": [
67
+ {
68
+ "name": "async",
69
+ "isAttr": true,
70
+ "type": "Boolean",
71
+ "default": false
72
+ },
73
+ {
74
+ "name": "asyncBefore",
75
+ "isAttr": true,
76
+ "type": "Boolean",
77
+ "default": false
78
+ },
79
+ {
80
+ "name": "asyncAfter",
81
+ "isAttr": true,
82
+ "type": "Boolean",
83
+ "default": false
84
+ },
85
+ {
86
+ "name": "exclusive",
87
+ "isAttr": true,
88
+ "type": "Boolean",
89
+ "default": true
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "name": "JobPriorized",
95
+ "isAbstract": true,
96
+ "extends": ["bpmn:Process", "flowable:AsyncCapable"],
97
+ "properties": [
98
+ {
99
+ "name": "jobPriority",
100
+ "isAttr": true,
101
+ "type": "String"
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "SignalEventDefinition",
107
+ "isAbstract": true,
108
+ "extends": ["bpmn:SignalEventDefinition"],
109
+ "properties": [
110
+ {
111
+ "name": "async",
112
+ "isAttr": true,
113
+ "type": "Boolean",
114
+ "default": false
115
+ }
116
+ ]
117
+ },
118
+ {
119
+ "name": "ErrorEventDefinition",
120
+ "isAbstract": true,
121
+ "extends": ["bpmn:ErrorEventDefinition"],
122
+ "properties": [
123
+ {
124
+ "name": "errorCodeVariable",
125
+ "isAttr": true,
126
+ "type": "String"
127
+ },
128
+ {
129
+ "name": "errorMessageVariable",
130
+ "isAttr": true,
131
+ "type": "String"
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ "name": "Error",
137
+ "isAbstract": true,
138
+ "extends": ["bpmn:Error"],
139
+ "properties": [
140
+ {
141
+ "name": "flowable:errorMessage",
142
+ "isAttr": true,
143
+ "type": "String"
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "name": "PotentialStarter",
149
+ "superClass": ["Element"],
150
+ "properties": [
151
+ {
152
+ "name": "resourceAssignmentExpression",
153
+ "type": "bpmn:ResourceAssignmentExpression"
154
+ }
155
+ ]
156
+ },
157
+ {
158
+ "name": "FormSupported",
159
+ "isAbstract": true,
160
+ "extends": ["bpmn:StartEvent", "bpmn:UserTask"],
161
+ "properties": [
162
+ {
163
+ "name": "formHandlerClass",
164
+ "isAttr": true,
165
+ "type": "String"
166
+ },
167
+ {
168
+ "name": "formKey",
169
+ "isAttr": true,
170
+ "type": "String"
171
+ },
172
+ {
173
+ "name": "formType",
174
+ "isAttr": true,
175
+ "type": "String"
176
+ },
177
+ {
178
+ "name": "formReadOnly",
179
+ "isAttr": true,
180
+ "type": "Boolean",
181
+ "default": false
182
+ },
183
+ {
184
+ "name": "formInit",
185
+ "isAttr": true,
186
+ "type": "Boolean",
187
+ "default": true
188
+ }
189
+ ]
190
+ },
191
+ {
192
+ "name": "TemplateSupported",
193
+ "isAbstract": true,
194
+ "extends": ["bpmn:Process", "bpmn:FlowElement"],
195
+ "properties": [
196
+ {
197
+ "name": "modelerTemplate",
198
+ "isAttr": true,
199
+ "type": "String"
200
+ }
201
+ ]
202
+ },
203
+ {
204
+ "name": "Initiator",
205
+ "isAbstract": true,
206
+ "extends": ["bpmn:StartEvent"],
207
+ "properties": [
208
+ {
209
+ "name": "initiator",
210
+ "isAttr": true,
211
+ "type": "String"
212
+ }
213
+ ]
214
+ },
215
+ {
216
+ "name": "ScriptTask",
217
+ "isAbstract": true,
218
+ "extends": ["bpmn:ScriptTask"],
219
+ "properties": [
220
+ {
221
+ "name": "resultVariable",
222
+ "isAttr": true,
223
+ "type": "String"
224
+ },
225
+ {
226
+ "name": "resource",
227
+ "isAttr": true,
228
+ "type": "String"
229
+ }
230
+ ]
231
+ },
232
+ {
233
+ "name": "Process",
234
+ "isAbstract": true,
235
+ "extends": ["bpmn:Process"],
236
+ "properties": [
237
+ {
238
+ "name": "candidateStarterGroups",
239
+ "isAttr": true,
240
+ "type": "String"
241
+ },
242
+ {
243
+ "name": "candidateStarterUsers",
244
+ "isAttr": true,
245
+ "type": "String"
246
+ },
247
+ {
248
+ "name": "versionTag",
249
+ "isAttr": true,
250
+ "type": "String"
251
+ },
252
+ {
253
+ "name": "historyTimeToLive",
254
+ "isAttr": true,
255
+ "type": "String"
256
+ },
257
+ {
258
+ "name": "isStartableInTasklist",
259
+ "isAttr": true,
260
+ "type": "Boolean",
261
+ "default": true
262
+ }
263
+ ]
264
+ },
265
+ {
266
+ "name": "EscalationEventDefinition",
267
+ "isAbstract": true,
268
+ "extends": ["bpmn:EscalationEventDefinition"],
269
+ "properties": [
270
+ {
271
+ "name": "escalationCodeVariable",
272
+ "isAttr": true,
273
+ "type": "String"
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "name": "FormalExpression",
279
+ "isAbstract": true,
280
+ "extends": ["bpmn:FormalExpression"],
281
+ "properties": [
282
+ {
283
+ "name": "resource",
284
+ "isAttr": true,
285
+ "type": "String"
286
+ }
287
+ ]
288
+ },
289
+ {
290
+ "name": "Assignable",
291
+ "extends": ["bpmn:UserTask"],
292
+ "properties": [
293
+ {
294
+ "name": "assignee",
295
+ "isAttr": true,
296
+ "type": "String"
297
+ },
298
+ {
299
+ "name": "candidateUsers",
300
+ "isAttr": true,
301
+ "type": "String"
302
+ },
303
+ {
304
+ "name": "candidateGroups",
305
+ "isAttr": true,
306
+ "type": "String"
307
+ },
308
+ {
309
+ "name": "dueDate",
310
+ "isAttr": true,
311
+ "type": "String"
312
+ },
313
+ {
314
+ "name": "followUpDate",
315
+ "isAttr": true,
316
+ "type": "String"
317
+ },
318
+ {
319
+ "name": "priority",
320
+ "isAttr": true,
321
+ "type": "String"
322
+ }
323
+ ]
324
+ },
325
+ {
326
+ "name": "Assignee",
327
+ "supperClass": "Element",
328
+ "meta": {
329
+ "allowedIn": ["*"]
330
+ },
331
+ "properties": [
332
+ {
333
+ "name": "label",
334
+ "type": "String",
335
+ "isAttr": true
336
+ },
337
+ {
338
+ "name": "viewId",
339
+ "type": "Number",
340
+ "isAttr": true
341
+ }
342
+ ]
343
+ },
344
+ {
345
+ "name": "CallActivity",
346
+ "extends": ["bpmn:CallActivity"],
347
+ "properties": [
348
+ {
349
+ "name": "calledElementBinding",
350
+ "isAttr": true,
351
+ "type": "String",
352
+ "default": "latest"
353
+ },
354
+ {
355
+ "name": "calledElementVersion",
356
+ "isAttr": true,
357
+ "type": "String"
358
+ },
359
+ {
360
+ "name": "calledElementVersionTag",
361
+ "isAttr": true,
362
+ "type": "String"
363
+ },
364
+ {
365
+ "name": "calledElementTenantId",
366
+ "isAttr": true,
367
+ "type": "String"
368
+ },
369
+ {
370
+ "name": "caseRef",
371
+ "isAttr": true,
372
+ "type": "String"
373
+ },
374
+ {
375
+ "name": "caseBinding",
376
+ "isAttr": true,
377
+ "type": "String",
378
+ "default": "latest"
379
+ },
380
+ {
381
+ "name": "caseVersion",
382
+ "isAttr": true,
383
+ "type": "String"
384
+ },
385
+ {
386
+ "name": "caseTenantId",
387
+ "isAttr": true,
388
+ "type": "String"
389
+ },
390
+ {
391
+ "name": "variableMappingClass",
392
+ "isAttr": true,
393
+ "type": "String"
394
+ },
395
+ {
396
+ "name": "variableMappingDelegateExpression",
397
+ "isAttr": true,
398
+ "type": "String"
399
+ }
400
+ ]
401
+ },
402
+ {
403
+ "name": "ServiceTaskLike",
404
+ "extends": [
405
+ "bpmn:ServiceTask",
406
+ "bpmn:BusinessRuleTask",
407
+ "bpmn:SendTask",
408
+ "bpmn:MessageEventDefinition"
409
+ ],
410
+ "properties": [
411
+ {
412
+ "name": "expression",
413
+ "isAttr": true,
414
+ "type": "String"
415
+ },
416
+ {
417
+ "name": "class",
418
+ "isAttr": true,
419
+ "type": "String"
420
+ },
421
+ {
422
+ "name": "delegateExpression",
423
+ "isAttr": true,
424
+ "type": "String"
425
+ },
426
+ {
427
+ "name": "resultVariable",
428
+ "isAttr": true,
429
+ "type": "String"
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "name": "DmnCapable",
435
+ "extends": ["bpmn:BusinessRuleTask"],
436
+ "properties": [
437
+ {
438
+ "name": "decisionRef",
439
+ "isAttr": true,
440
+ "type": "String"
441
+ },
442
+ {
443
+ "name": "decisionRefBinding",
444
+ "isAttr": true,
445
+ "type": "String",
446
+ "default": "latest"
447
+ },
448
+ {
449
+ "name": "decisionRefVersion",
450
+ "isAttr": true,
451
+ "type": "String"
452
+ },
453
+ {
454
+ "name": "mapDecisionResult",
455
+ "isAttr": true,
456
+ "type": "String",
457
+ "default": "resultList"
458
+ },
459
+ {
460
+ "name": "decisionRefTenantId",
461
+ "isAttr": true,
462
+ "type": "String"
463
+ }
464
+ ]
465
+ },
466
+ {
467
+ "name": "ExternalCapable",
468
+ "extends": ["flowable:ServiceTaskLike"],
469
+ "properties": [
470
+ {
471
+ "name": "type",
472
+ "isAttr": true,
473
+ "type": "String"
474
+ },
475
+ {
476
+ "name": "topic",
477
+ "isAttr": true,
478
+ "type": "String"
479
+ }
480
+ ]
481
+ },
482
+ {
483
+ "name": "TaskPriorized",
484
+ "extends": ["bpmn:Process", "flowable:ExternalCapable"],
485
+ "properties": [
486
+ {
487
+ "name": "taskPriority",
488
+ "isAttr": true,
489
+ "type": "String"
490
+ }
491
+ ]
492
+ },
493
+ {
494
+ "name": "Properties",
495
+ "superClass": ["Element"],
496
+ "meta": {
497
+ "allowedIn": ["*"]
498
+ },
499
+ "properties": [
500
+ {
501
+ "name": "values",
502
+ "type": "Property",
503
+ "isMany": true
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "name": "Property",
509
+ "superClass": ["Element"],
510
+ "properties": [
511
+ {
512
+ "name": "id",
513
+ "type": "String",
514
+ "isAttr": true
515
+ },
516
+ {
517
+ "name": "name",
518
+ "type": "String",
519
+ "isAttr": true
520
+ },
521
+ {
522
+ "name": "value",
523
+ "type": "String",
524
+ "isAttr": true
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "name": "Button",
530
+ "superClass": ["Element"],
531
+ "meta": {
532
+ "allowedIn": ["bpmn:UserTask"]
533
+ },
534
+ "properties": [
535
+ {
536
+ "name": "id",
537
+ "type": "String",
538
+ "isAttr": true
539
+ },
540
+ {
541
+ "name": "name",
542
+ "type": "String",
543
+ "isAttr": true
544
+ },
545
+ {
546
+ "name": "code",
547
+ "type": "String",
548
+ "isAttr": true
549
+ },
550
+ {
551
+ "name": "isHide",
552
+ "type": "String",
553
+ "isAttr": true
554
+ },
555
+ {
556
+ "name": "next",
557
+ "type": "String",
558
+ "isAttr": true
559
+ },
560
+ {
561
+ "name": "sort",
562
+ "type": "Integer",
563
+ "isAttr": true
564
+ }
565
+ ]
566
+ },
567
+ {
568
+ "name": "Assignee",
569
+ "superClass": ["Element"],
570
+ "meta": {
571
+ "allowedIn": ["bpmn:UserTask"]
572
+ },
573
+ "properties": [
574
+ {
575
+ "name": "id",
576
+ "type": "String",
577
+ "isAttr": true
578
+ },
579
+ {
580
+ "name": "type",
581
+ "type": "String",
582
+ "isAttr": true
583
+ },
584
+ {
585
+ "name": "value",
586
+ "type": "String",
587
+ "isAttr": true
588
+ },
589
+ {
590
+ "name": "condition",
591
+ "type": "String",
592
+ "isAttr": true
593
+ },
594
+ {
595
+ "name": "operationType",
596
+ "type": "String",
597
+ "isAttr": true
598
+ },
599
+ {
600
+ "name": "sort",
601
+ "type": "Integer",
602
+ "isAttr": true
603
+ }
604
+ ]
605
+ },
606
+ {
607
+ "name": "Connector",
608
+ "superClass": ["Element"],
609
+ "meta": {
610
+ "allowedIn": ["flowable:ServiceTaskLike"]
611
+ },
612
+ "properties": [
613
+ {
614
+ "name": "inputOutput",
615
+ "type": "InputOutput"
616
+ },
617
+ {
618
+ "name": "connectorId",
619
+ "type": "String"
620
+ }
621
+ ]
622
+ },
623
+ {
624
+ "name": "InputOutput",
625
+ "superClass": ["Element"],
626
+ "meta": {
627
+ "allowedIn": ["bpmn:FlowNode", "flowable:Connector"]
628
+ },
629
+ "properties": [
630
+ {
631
+ "name": "inputOutput",
632
+ "type": "InputOutput"
633
+ },
634
+ {
635
+ "name": "connectorId",
636
+ "type": "String"
637
+ },
638
+ {
639
+ "name": "inputParameters",
640
+ "isMany": true,
641
+ "type": "InputParameter"
642
+ },
643
+ {
644
+ "name": "outputParameters",
645
+ "isMany": true,
646
+ "type": "OutputParameter"
647
+ }
648
+ ]
649
+ },
650
+ {
651
+ "name": "InputOutputParameter",
652
+ "properties": [
653
+ {
654
+ "name": "name",
655
+ "isAttr": true,
656
+ "type": "String"
657
+ },
658
+ {
659
+ "name": "value",
660
+ "isBody": true,
661
+ "type": "String"
662
+ },
663
+ {
664
+ "name": "definition",
665
+ "type": "InputOutputParameterDefinition"
666
+ }
667
+ ]
668
+ },
669
+ {
670
+ "name": "InputOutputParameterDefinition",
671
+ "isAbstract": true
672
+ },
673
+ {
674
+ "name": "List",
675
+ "superClass": ["InputOutputParameterDefinition"],
676
+ "properties": [
677
+ {
678
+ "name": "items",
679
+ "isMany": true,
680
+ "type": "InputOutputParameterDefinition"
681
+ }
682
+ ]
683
+ },
684
+ {
685
+ "name": "Map",
686
+ "superClass": ["InputOutputParameterDefinition"],
687
+ "properties": [
688
+ {
689
+ "name": "entries",
690
+ "isMany": true,
691
+ "type": "Entry"
692
+ }
693
+ ]
694
+ },
695
+ {
696
+ "name": "Entry",
697
+ "properties": [
698
+ {
699
+ "name": "key",
700
+ "isAttr": true,
701
+ "type": "String"
702
+ },
703
+ {
704
+ "name": "value",
705
+ "isBody": true,
706
+ "type": "String"
707
+ },
708
+ {
709
+ "name": "definition",
710
+ "type": "InputOutputParameterDefinition"
711
+ }
712
+ ]
713
+ },
714
+ {
715
+ "name": "Value",
716
+ "superClass": ["InputOutputParameterDefinition"],
717
+ "properties": [
718
+ {
719
+ "name": "id",
720
+ "isAttr": true,
721
+ "type": "String"
722
+ },
723
+ {
724
+ "name": "name",
725
+ "isAttr": true,
726
+ "type": "String"
727
+ },
728
+ {
729
+ "name": "value",
730
+ "isBody": true,
731
+ "type": "String"
732
+ }
733
+ ]
734
+ },
735
+ {
736
+ "name": "Script",
737
+ "superClass": ["InputOutputParameterDefinition"],
738
+ "properties": [
739
+ {
740
+ "name": "scriptFormat",
741
+ "isAttr": true,
742
+ "type": "String"
743
+ },
744
+ {
745
+ "name": "resource",
746
+ "isAttr": true,
747
+ "type": "String"
748
+ },
749
+ {
750
+ "name": "value",
751
+ "isBody": true,
752
+ "type": "String"
753
+ }
754
+ ]
755
+ },
756
+ {
757
+ "name": "Field",
758
+ "superClass": ["Element"],
759
+ "meta": {
760
+ "allowedIn": [
761
+ "flowable:ServiceTaskLike",
762
+ "flowable:ExecutionListener",
763
+ "flowable:TaskListener",
764
+ "bpmn:ServiceTask"
765
+ ]
766
+ },
767
+ "properties": [
768
+ {
769
+ "name": "name",
770
+ "isAttr": true,
771
+ "type": "String"
772
+ },
773
+ {
774
+ "name": "expression",
775
+ "type": "String"
776
+ },
777
+ {
778
+ "name": "stringValue",
779
+ "isAttr": true,
780
+ "type": "String"
781
+ },
782
+ {
783
+ "name": "string",
784
+ "type": "String"
785
+ },
786
+ {
787
+ "name": "htmlVar",
788
+ "type": "Expression"
789
+ }
790
+ ]
791
+ },
792
+ {
793
+ "name": "ChildField",
794
+ "superClass": ["Element"],
795
+ "properties": [
796
+ {
797
+ "name": "id",
798
+ "type": "String",
799
+ "isAttr": true
800
+ },
801
+ {
802
+ "name": "name",
803
+ "type": "String",
804
+ "isAttr": true
805
+ },
806
+ {
807
+ "name": "type",
808
+ "type": "String",
809
+ "isAttr": true
810
+ },
811
+ {
812
+ "name": "required",
813
+ "type": "String",
814
+ "isAttr": true
815
+ },
816
+ {
817
+ "name": "readable",
818
+ "type": "String",
819
+ "isAttr": true
820
+ },
821
+ {
822
+ "name": "writable",
823
+ "type": "String",
824
+ "isAttr": true
825
+ },
826
+ {
827
+ "name": "variable",
828
+ "type": "String",
829
+ "isAttr": true
830
+ },
831
+ {
832
+ "name": "expression",
833
+ "type": "String",
834
+ "isAttr": true
835
+ },
836
+ {
837
+ "name": "datePattern",
838
+ "type": "String",
839
+ "isAttr": true
840
+ },
841
+ {
842
+ "name": "default",
843
+ "type": "String",
844
+ "isAttr": true
845
+ },
846
+ {
847
+ "name": "values",
848
+ "type": "Value",
849
+ "isMany": true
850
+ }
851
+ ]
852
+ },
853
+ {
854
+ "name": "InputParameter",
855
+ "superClass": ["InputOutputParameter"]
856
+ },
857
+ {
858
+ "name": "OutputParameter",
859
+ "superClass": ["InputOutputParameter"]
860
+ },
861
+ {
862
+ "name": "Collectable",
863
+ "isAbstract": true,
864
+ "extends": ["bpmn:MultiInstanceLoopCharacteristics"],
865
+ "superClass": ["flowable:AsyncCapable"],
866
+ "properties": [
867
+ {
868
+ "name": "collection",
869
+ "isAttr": true,
870
+ "type": "String"
871
+ },
872
+ {
873
+ "name": "elementVariable",
874
+ "isAttr": true,
875
+ "type": "String"
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "name": "FailedJobRetryTimeCycle",
881
+ "superClass": ["Element"],
882
+ "meta": {
883
+ "allowedIn": [
884
+ "flowable:AsyncCapable",
885
+ "bpmn:MultiInstanceLoopCharacteristics"
886
+ ]
887
+ },
888
+ "properties": [
889
+ {
890
+ "name": "body",
891
+ "isBody": true,
892
+ "type": "String"
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "name": "ExecutionListener",
898
+ "superClass": ["Element"],
899
+ "meta": {
900
+ "allowedIn": [
901
+ "bpmn:Task",
902
+ "bpmn:ServiceTask",
903
+ "bpmn:UserTask",
904
+ "bpmn:BusinessRuleTask",
905
+ "bpmn:ScriptTask",
906
+ "bpmn:ReceiveTask",
907
+ "bpmn:ManualTask",
908
+ "bpmn:ExclusiveGateway",
909
+ "bpmn:SequenceFlow",
910
+ "bpmn:ParallelGateway",
911
+ "bpmn:InclusiveGateway",
912
+ "bpmn:EventBasedGateway",
913
+ "bpmn:StartEvent",
914
+ "bpmn:IntermediateCatchEvent",
915
+ "bpmn:IntermediateThrowEvent",
916
+ "bpmn:EndEvent",
917
+ "bpmn:BoundaryEvent",
918
+ "bpmn:CallActivity",
919
+ "bpmn:SubProcess",
920
+ "bpmn:Process"
921
+ ]
922
+ },
923
+ "properties": [
924
+ {
925
+ "name": "expression",
926
+ "isAttr": true,
927
+ "type": "String"
928
+ },
929
+ {
930
+ "name": "class",
931
+ "isAttr": true,
932
+ "type": "String"
933
+ },
934
+ {
935
+ "name": "delegateExpression",
936
+ "isAttr": true,
937
+ "type": "String"
938
+ },
939
+ {
940
+ "name": "event",
941
+ "isAttr": true,
942
+ "type": "String"
943
+ },
944
+ {
945
+ "name": "script",
946
+ "type": "Script"
947
+ },
948
+ {
949
+ "name": "fields",
950
+ "type": "Field",
951
+ "isMany": true
952
+ }
953
+ ]
954
+ },
955
+ {
956
+ "name": "TaskListener",
957
+ "superClass": ["Element"],
958
+ "meta": {
959
+ "allowedIn": ["bpmn:UserTask"]
960
+ },
961
+ "properties": [
962
+ {
963
+ "name": "expression",
964
+ "isAttr": true,
965
+ "type": "String"
966
+ },
967
+ {
968
+ "name": "class",
969
+ "isAttr": true,
970
+ "type": "String"
971
+ },
972
+ {
973
+ "name": "delegateExpression",
974
+ "isAttr": true,
975
+ "type": "String"
976
+ },
977
+ {
978
+ "name": "event",
979
+ "isAttr": true,
980
+ "type": "String"
981
+ },
982
+ {
983
+ "name": "script",
984
+ "type": "Script"
985
+ },
986
+ {
987
+ "name": "fields",
988
+ "type": "Field",
989
+ "isMany": true
990
+ }
991
+ ]
992
+ },
993
+ {
994
+ "name": "FormProperty",
995
+ "superClass": ["Element"],
996
+ "meta": {
997
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
998
+ },
999
+ "properties": [
1000
+ {
1001
+ "name": "id",
1002
+ "type": "String",
1003
+ "isAttr": true
1004
+ },
1005
+ {
1006
+ "name": "name",
1007
+ "type": "String",
1008
+ "isAttr": true
1009
+ },
1010
+ {
1011
+ "name": "type",
1012
+ "type": "String",
1013
+ "isAttr": true
1014
+ },
1015
+ {
1016
+ "name": "required",
1017
+ "type": "String",
1018
+ "isAttr": true
1019
+ },
1020
+ {
1021
+ "name": "readable",
1022
+ "type": "String",
1023
+ "isAttr": true
1024
+ },
1025
+ {
1026
+ "name": "writable",
1027
+ "type": "String",
1028
+ "isAttr": true
1029
+ },
1030
+ {
1031
+ "name": "variable",
1032
+ "type": "String",
1033
+ "isAttr": true
1034
+ },
1035
+ {
1036
+ "name": "expression",
1037
+ "type": "String",
1038
+ "isAttr": true
1039
+ },
1040
+ {
1041
+ "name": "datePattern",
1042
+ "type": "String",
1043
+ "isAttr": true
1044
+ },
1045
+ {
1046
+ "name": "default",
1047
+ "type": "String",
1048
+ "isAttr": true
1049
+ },
1050
+ {
1051
+ "name": "values",
1052
+ "type": "Value",
1053
+ "isMany": true
1054
+ },
1055
+ {
1056
+ "name": "children",
1057
+ "type": "ChildField",
1058
+ "isMany": true
1059
+ },
1060
+ {
1061
+ "name": "extensionElements",
1062
+ "type": "bpmn:ExtensionElements",
1063
+ "isMany": true
1064
+ }
1065
+ ]
1066
+ },
1067
+ {
1068
+ "name": "FormData",
1069
+ "superClass": ["Element"],
1070
+ "meta": {
1071
+ "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
1072
+ },
1073
+ "properties": [
1074
+ {
1075
+ "name": "fields",
1076
+ "type": "FormField",
1077
+ "isMany": true
1078
+ },
1079
+ {
1080
+ "name": "businessKey",
1081
+ "type": "String",
1082
+ "isAttr": true
1083
+ }
1084
+ ]
1085
+ },
1086
+ {
1087
+ "name": "FormField",
1088
+ "superClass": ["Element"],
1089
+ "properties": [
1090
+ {
1091
+ "name": "id",
1092
+ "type": "String",
1093
+ "isAttr": true
1094
+ },
1095
+ {
1096
+ "name": "label",
1097
+ "type": "String",
1098
+ "isAttr": true
1099
+ },
1100
+ {
1101
+ "name": "type",
1102
+ "type": "String",
1103
+ "isAttr": true
1104
+ },
1105
+ {
1106
+ "name": "datePattern",
1107
+ "type": "String",
1108
+ "isAttr": true
1109
+ },
1110
+ {
1111
+ "name": "defaultValue",
1112
+ "type": "String",
1113
+ "isAttr": true
1114
+ },
1115
+ {
1116
+ "name": "properties",
1117
+ "type": "Properties"
1118
+ },
1119
+ {
1120
+ "name": "validation",
1121
+ "type": "Validation"
1122
+ },
1123
+ {
1124
+ "name": "values",
1125
+ "type": "Value",
1126
+ "isMany": true
1127
+ }
1128
+ ]
1129
+ },
1130
+ {
1131
+ "name": "Validation",
1132
+ "superClass": ["Element"],
1133
+ "properties": [
1134
+ {
1135
+ "name": "constraints",
1136
+ "type": "Constraint",
1137
+ "isMany": true
1138
+ }
1139
+ ]
1140
+ },
1141
+ {
1142
+ "name": "Constraint",
1143
+ "superClass": ["Element"],
1144
+ "properties": [
1145
+ {
1146
+ "name": "name",
1147
+ "type": "String",
1148
+ "isAttr": true
1149
+ },
1150
+ {
1151
+ "name": "config",
1152
+ "type": "String",
1153
+ "isAttr": true
1154
+ }
1155
+ ]
1156
+ },
1157
+ {
1158
+ "name": "ConditionalEventDefinition",
1159
+ "isAbstract": true,
1160
+ "extends": ["bpmn:ConditionalEventDefinition"],
1161
+ "properties": [
1162
+ {
1163
+ "name": "variableName",
1164
+ "isAttr": true,
1165
+ "type": "String"
1166
+ },
1167
+ {
1168
+ "name": "variableEvent",
1169
+ "isAttr": true,
1170
+ "type": "String"
1171
+ }
1172
+ ]
1173
+ },
1174
+ {
1175
+ "name": "Condition",
1176
+ "superClass": ["Element"],
1177
+ "meta": {
1178
+ "allowedIn": ["bpmn:SequenceFlow"]
1179
+ },
1180
+ "properties": [
1181
+ {
1182
+ "name": "id",
1183
+ "type": "String",
1184
+ "isAttr": true
1185
+ },
1186
+ {
1187
+ "name": "field",
1188
+ "type": "String",
1189
+ "isAttr": true
1190
+ },
1191
+ {
1192
+ "name": "compare",
1193
+ "type": "String",
1194
+ "isAttr": true
1195
+ },
1196
+ {
1197
+ "name": "value",
1198
+ "type": "String",
1199
+ "isAttr": true
1200
+ },
1201
+ {
1202
+ "name": "logic",
1203
+ "type": "String",
1204
+ "isAttr": true
1205
+ },
1206
+ {
1207
+ "name": "sort",
1208
+ "type": "Integer",
1209
+ "isAttr": true
1210
+ }
1211
+ ]
1212
+ }
1213
+ ],
1214
+ "emumerations": []
1215
+ }