@pbinitiative/zenbpm-bpmn-moddle 0.1.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.
@@ -0,0 +1,766 @@
1
+ {
2
+ "name": "zenbpm",
3
+ "prefix": "zenbpm",
4
+ "uri": "http://zenbpm.pbinitiative.org/1.0",
5
+ "xml": {
6
+ "tagAlias": "lowerCase"
7
+ },
8
+ "associations": [],
9
+ "types": [
10
+ {
11
+ "name": "ServiceTask",
12
+ "extends": [
13
+ "bpmn:ServiceTask",
14
+ "bpmn:BusinessRuleTask",
15
+ "bpmn:ScriptTask",
16
+ "bpmn:SendTask",
17
+ "bpmn:EndEvent",
18
+ "bpmn:IntermediateThrowEvent",
19
+ "bpmn:AdHocSubProcess"
20
+ ],
21
+ "properties": [
22
+ {
23
+ "name": "retryCounter",
24
+ "type": "String",
25
+ "isAttr": true
26
+ }
27
+ ]
28
+ },
29
+ {
30
+ "name": "IoMapping",
31
+ "superClass": [
32
+ "Element"
33
+ ],
34
+ "properties": [
35
+ {
36
+ "name": "ioMapping",
37
+ "type": "IoMapping"
38
+ },
39
+ {
40
+ "name": "inputParameters",
41
+ "isMany": true,
42
+ "type": "Input"
43
+ },
44
+ {
45
+ "name": "outputParameters",
46
+ "isMany": true,
47
+ "type": "Output"
48
+ }
49
+ ],
50
+ "meta": {
51
+ "allowedIn": [
52
+ "bpmn:CallActivity",
53
+ "bpmn:Event",
54
+ "bpmn:ReceiveTask",
55
+ "zenbpm:ServiceTask",
56
+ "bpmn:SubProcess",
57
+ "bpmn:UserTask"
58
+ ]
59
+ }
60
+ },
61
+ {
62
+ "name": "InputOutputParameter",
63
+ "properties": [
64
+ {
65
+ "name": "source",
66
+ "isAttr": true,
67
+ "type": "String"
68
+ },
69
+ {
70
+ "name": "target",
71
+ "isAttr": true,
72
+ "type": "String"
73
+ }
74
+ ]
75
+ },
76
+ {
77
+ "name": "Subscription",
78
+ "superClass": [
79
+ "Element"
80
+ ],
81
+ "properties": [
82
+ {
83
+ "name": "correlationKey",
84
+ "isAttr": true,
85
+ "type": "String"
86
+ }
87
+ ]
88
+ },
89
+ {
90
+ "name": "Input",
91
+ "superClass": [
92
+ "InputOutputParameter"
93
+ ],
94
+ "meta": {
95
+ "allowedIn": [
96
+ "bpmn:CallActivity",
97
+ "zenbpm:ServiceTask",
98
+ "bpmn:SubProcess",
99
+ "bpmn:UserTask"
100
+ ]
101
+ }
102
+ },
103
+ {
104
+ "name": "Output",
105
+ "superClass": [
106
+ "InputOutputParameter"
107
+ ],
108
+ "meta": {
109
+ "allowedIn": [
110
+ "bpmn:CallActivity",
111
+ "bpmn:Event",
112
+ "bpmn:ReceiveTask",
113
+ "zenbpm:ServiceTask",
114
+ "bpmn:SubProcess",
115
+ "bpmn:UserTask"
116
+ ]
117
+ }
118
+ },
119
+ {
120
+ "name": "TaskHeaders",
121
+ "superClass": [
122
+ "Element"
123
+ ],
124
+ "meta": {
125
+ "allowedIn": [
126
+ "bpmn:UserTask",
127
+ "zenbpm:ExecutionListener",
128
+ "zenbpm:ServiceTask"
129
+ ]
130
+ },
131
+ "properties": [
132
+ {
133
+ "name": "values",
134
+ "type": "Header",
135
+ "isMany": true
136
+ }
137
+ ]
138
+ },
139
+ {
140
+ "name": "Header",
141
+ "superClass": [
142
+ "Element"
143
+ ],
144
+ "properties": [
145
+ {
146
+ "name": "id",
147
+ "type": "String",
148
+ "isAttr": true
149
+ },
150
+ {
151
+ "name": "key",
152
+ "type": "String",
153
+ "isAttr": true
154
+ },
155
+ {
156
+ "name": "value",
157
+ "type": "String",
158
+ "isAttr": true
159
+ }
160
+ ]
161
+ },
162
+ {
163
+ "name": "TaskDefinition",
164
+ "superClass": [
165
+ "Element"
166
+ ],
167
+ "meta": {
168
+ "allowedIn": [
169
+ "zenbpm:ServiceTask"
170
+ ]
171
+ },
172
+ "properties": [
173
+ {
174
+ "name": "type",
175
+ "type": "String",
176
+ "isAttr": true
177
+ },
178
+ {
179
+ "name": "retries",
180
+ "type": "String",
181
+ "isAttr": true
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "name": "LoopCharacteristics",
187
+ "superClass": [
188
+ "Element"
189
+ ],
190
+ "meta": {
191
+ "allowedIn": [
192
+ "bpmn:MultiInstanceLoopCharacteristics"
193
+ ]
194
+ },
195
+ "properties": [
196
+ {
197
+ "name": "inputCollection",
198
+ "type": "String",
199
+ "isAttr": true
200
+ },
201
+ {
202
+ "name": "inputElement",
203
+ "type": "String",
204
+ "isAttr": true
205
+ },
206
+ {
207
+ "name": "outputCollection",
208
+ "type": "String",
209
+ "isAttr": true
210
+ },
211
+ {
212
+ "name": "outputElement",
213
+ "type": "String",
214
+ "isAttr": true
215
+ }
216
+ ]
217
+ },
218
+ {
219
+ "name": "CalledElement",
220
+ "superClass": [
221
+ "Element"
222
+ ],
223
+ "meta": {
224
+ "allowedIn": [
225
+ "bpmn:CallActivity"
226
+ ]
227
+ },
228
+ "properties": [
229
+ {
230
+ "name": "processId",
231
+ "type": "String",
232
+ "isAttr": true
233
+ },
234
+ {
235
+ "name": "processIdExpression",
236
+ "type": "String",
237
+ "isAttr": true
238
+ },
239
+ {
240
+ "name": "propagateAllChildVariables",
241
+ "isAttr": true,
242
+ "type": "Boolean"
243
+ },
244
+ {
245
+ "name": "propagateAllParentVariables",
246
+ "isAttr": true,
247
+ "type": "Boolean",
248
+ "default": true
249
+ }
250
+ ]
251
+ },
252
+ {
253
+ "name": "UserTaskForm",
254
+ "superClass": [
255
+ "Element"
256
+ ],
257
+ "meta": {
258
+ "allowedIn": [
259
+ "bpmn:Process"
260
+ ]
261
+ },
262
+ "properties": [
263
+ {
264
+ "name": "id",
265
+ "type": "String",
266
+ "isAttr": true
267
+ },
268
+ {
269
+ "name": "body",
270
+ "type": "String",
271
+ "isBody": true
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "name": "FormDefinition",
277
+ "superClass": [
278
+ "Element"
279
+ ],
280
+ "meta": {
281
+ "allowedIn": [
282
+ "bpmn:UserTask"
283
+ ]
284
+ },
285
+ "properties": [
286
+ {
287
+ "name": "formKey",
288
+ "type": "String",
289
+ "isAttr": true
290
+ },
291
+ {
292
+ "name": "formId",
293
+ "type": "String",
294
+ "isAttr": true
295
+ },
296
+ {
297
+ "name": "externalReference",
298
+ "type": "String",
299
+ "isAttr": true
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "name": "LinkedResource",
305
+ "superClass": [
306
+ "Element"
307
+ ],
308
+ "meta": {
309
+ "allowedIn": [
310
+ "bpmn:ServiceTask"
311
+ ]
312
+ },
313
+ "properties": [
314
+ {
315
+ "name": "resourceId",
316
+ "type": "String",
317
+ "isAttr": true
318
+ },
319
+ {
320
+ "name": "resourceType",
321
+ "type": "String",
322
+ "isAttr": true
323
+ },
324
+ {
325
+ "name": "linkName",
326
+ "type": "String",
327
+ "isAttr": true
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "LinkedResources",
333
+ "superClass": [
334
+ "Element"
335
+ ],
336
+ "meta": {
337
+ "allowedIn": [
338
+ "bpmn:ServiceTask"
339
+ ]
340
+ },
341
+ "properties": [
342
+ {
343
+ "name": "values",
344
+ "type": "LinkedResource",
345
+ "isMany": true
346
+ }
347
+ ]
348
+ },
349
+ {
350
+ "name": "UserTask",
351
+ "superClass": [
352
+ "Element"
353
+ ],
354
+ "meta": {
355
+ "allowedIn": [
356
+ "bpmn:UserTask"
357
+ ]
358
+ },
359
+ "properties": [
360
+ {
361
+ "name": "retryCounter",
362
+ "type": "String",
363
+ "isAttr": true
364
+ }
365
+ ]
366
+ },
367
+ {
368
+ "name": "CalledDecision",
369
+ "superClass": [
370
+ "Element"
371
+ ],
372
+ "meta": {
373
+ "allowedIn": [
374
+ "bpmn:BusinessRuleTask"
375
+ ]
376
+ },
377
+ "properties": [
378
+ {
379
+ "name": "decisionId",
380
+ "type": "String",
381
+ "isAttr": true
382
+ },
383
+ {
384
+ "name": "resultVariable",
385
+ "type": "String",
386
+ "isAttr": true
387
+ }
388
+ ]
389
+ },
390
+ {
391
+ "name": "AssignmentDefinition",
392
+ "superClass": [
393
+ "Element"
394
+ ],
395
+ "meta": {
396
+ "allowedIn": [
397
+ "bpmn:UserTask"
398
+ ]
399
+ },
400
+ "properties": [
401
+ {
402
+ "name": "assignee",
403
+ "type": "String",
404
+ "isAttr": true
405
+ },
406
+ {
407
+ "name": "candidateGroups",
408
+ "type": "String",
409
+ "isAttr": true
410
+ },
411
+ {
412
+ "name": "candidateUsers",
413
+ "type": "String",
414
+ "isAttr": true
415
+ }
416
+ ]
417
+ },
418
+ {
419
+ "name": "PriorityDefinition",
420
+ "superClass": [
421
+ "Element"
422
+ ],
423
+ "meta": {
424
+ "allowedIn": [
425
+ "bpmn:UserTask"
426
+ ]
427
+ },
428
+ "properties": [
429
+ {
430
+ "name": "priority",
431
+ "type": "String",
432
+ "isAttr": true
433
+ }
434
+ ]
435
+ },
436
+ {
437
+ "name": "TaskSchedule",
438
+ "superClass": [
439
+ "Element"
440
+ ],
441
+ "meta": {
442
+ "allowedIn": [
443
+ "bpmn:UserTask"
444
+ ]
445
+ },
446
+ "properties": [
447
+ {
448
+ "name": "dueDate",
449
+ "type": "String",
450
+ "isAttr": true
451
+ },
452
+ {
453
+ "name": "followUpDate",
454
+ "type": "String",
455
+ "isAttr": true
456
+ }
457
+ ]
458
+ },
459
+ {
460
+ "name": "Properties",
461
+ "superClass": [
462
+ "Element"
463
+ ],
464
+ "properties": [
465
+ {
466
+ "name": "properties",
467
+ "type": "Property",
468
+ "isMany": true
469
+ }
470
+ ]
471
+ },
472
+ {
473
+ "name": "Property",
474
+ "properties": [
475
+ {
476
+ "name": "name",
477
+ "type": "String",
478
+ "isAttr": true
479
+ },
480
+ {
481
+ "name": "value",
482
+ "type": "String",
483
+ "isAttr": true
484
+ }
485
+ ]
486
+ },
487
+ {
488
+ "name": "TemplateSupported",
489
+ "isAbstract": true,
490
+ "extends": [
491
+ "bpmn:Collaboration",
492
+ "bpmn:Process",
493
+ "bpmn:FlowElement"
494
+ ],
495
+ "properties": [
496
+ {
497
+ "name": "modelerTemplate",
498
+ "isAttr": true,
499
+ "type": "String"
500
+ },
501
+ {
502
+ "name": "modelerTemplateVersion",
503
+ "isAttr": true,
504
+ "type": "Integer"
505
+ },
506
+ {
507
+ "name": "modelerTemplateIcon",
508
+ "isAttr": true,
509
+ "type": "String"
510
+ }
511
+ ]
512
+ },
513
+ {
514
+ "name": "TemplatedRootElement",
515
+ "isAbstract": true,
516
+ "extends": [
517
+ "bpmn:Error",
518
+ "bpmn:Escalation",
519
+ "bpmn:Message",
520
+ "bpmn:Signal"
521
+ ],
522
+ "properties": [
523
+ {
524
+ "name": "modelerTemplate",
525
+ "isAttr": true,
526
+ "type": "String"
527
+ }
528
+ ]
529
+ },
530
+ {
531
+ "name": "Script",
532
+ "superClass": [
533
+ "Element"
534
+ ],
535
+ "meta": {
536
+ "allowedIn": [
537
+ "bpmn:ScriptTask"
538
+ ]
539
+ },
540
+ "properties": [
541
+ {
542
+ "name": "expression",
543
+ "type": "String",
544
+ "isAttr": true
545
+ },
546
+ {
547
+ "name": "resultVariable",
548
+ "type": "String",
549
+ "isAttr": true
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "name": "ExecutionListeners",
555
+ "superClass": [
556
+ "Element"
557
+ ],
558
+ "meta": {
559
+ "allowedIn": [
560
+ "bpmn:Event",
561
+ "bpmn:Activity",
562
+ "bpmn:Process",
563
+ "bpmn:ExclusiveGateway",
564
+ "bpmn:InclusiveGateway",
565
+ "bpmn:ParallelGateway",
566
+ "bpmn:EventBasedGateway"
567
+ ]
568
+ },
569
+ "properties": [
570
+ {
571
+ "name": "listeners",
572
+ "type": "ExecutionListener",
573
+ "isMany": true
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "name": "ExecutionListener",
579
+ "superClass": [
580
+ "Element"
581
+ ],
582
+ "meta": {
583
+ "allowedIn": [
584
+ "zenbpm:ExecutionListeners"
585
+ ]
586
+ },
587
+ "properties": [
588
+ {
589
+ "name": "eventType",
590
+ "type": "String",
591
+ "isAttr": true
592
+ },
593
+ {
594
+ "name": "retries",
595
+ "type": "String",
596
+ "isAttr": true
597
+ },
598
+ {
599
+ "name": "type",
600
+ "type": "String",
601
+ "isAttr": true
602
+ },
603
+ {
604
+ "name": "headers",
605
+ "type": "TaskHeaders"
606
+ }
607
+ ]
608
+ },
609
+ {
610
+ "name": "TaskListeners",
611
+ "superClass": [
612
+ "Element"
613
+ ],
614
+ "meta": {
615
+ "allowedIn": [
616
+ "bpmn:UserTask"
617
+ ]
618
+ },
619
+ "properties": [
620
+ {
621
+ "name": "listeners",
622
+ "type": "TaskListener",
623
+ "isMany": true
624
+ }
625
+ ]
626
+ },
627
+ {
628
+ "name": "TaskListener",
629
+ "superClass": [
630
+ "Element"
631
+ ],
632
+ "meta": {
633
+ "allowedIn": [
634
+ "zenbpm:TaskListeners"
635
+ ]
636
+ },
637
+ "properties": [
638
+ {
639
+ "name": "eventType",
640
+ "type": "String",
641
+ "isAttr": true
642
+ },
643
+ {
644
+ "name": "retries",
645
+ "type": "String",
646
+ "isAttr": true
647
+ },
648
+ {
649
+ "name": "type",
650
+ "type": "String",
651
+ "isAttr": true
652
+ }
653
+ ]
654
+ },
655
+ {
656
+ "name": "VersionTag",
657
+ "superClass": [
658
+ "Element"
659
+ ],
660
+ "meta": {
661
+ "allowedIn": [
662
+ "bpmn:Process"
663
+ ]
664
+ },
665
+ "properties": [
666
+ {
667
+ "name": "value",
668
+ "type": "String",
669
+ "isAttr": true
670
+ }
671
+ ]
672
+ },
673
+ {
674
+ "name": "BindingTypeSupported",
675
+ "isAbstract": true,
676
+ "extends": [
677
+ "zenbpm:CalledDecision",
678
+ "zenbpm:CalledElement",
679
+ "zenbpm:FormDefinition",
680
+ "zenbpm:LinkedResource"
681
+ ],
682
+ "properties": [
683
+ {
684
+ "name": "bindingType",
685
+ "isAttr": true,
686
+ "type": "String",
687
+ "default": "latest"
688
+ },
689
+ {
690
+ "name": "versionTag",
691
+ "isAttr": true,
692
+ "type": "String"
693
+ }
694
+ ]
695
+ },
696
+ {
697
+ "name": "AdHoc",
698
+ "superClass": [
699
+ "Element"
700
+ ],
701
+ "meta": {
702
+ "allowedIn": [
703
+ "bpmn:AdHocSubProcess"
704
+ ]
705
+ },
706
+ "properties": [
707
+ {
708
+ "name": "activeElementsCollection",
709
+ "isAttr": true,
710
+ "type": "String"
711
+ },
712
+ {
713
+ "name": "outputCollection",
714
+ "isAttr": true,
715
+ "type": "String"
716
+ },
717
+ {
718
+ "name": "outputElement",
719
+ "isAttr": true,
720
+ "type": "String"
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "name": "ZenForm",
726
+ "superClass": [
727
+ "Element"
728
+ ],
729
+ "meta": {
730
+ "allowedIn": [
731
+ "bpmn:UserTask"
732
+ ]
733
+ },
734
+ "properties": [
735
+ {
736
+ "name": "formId",
737
+ "type": "String",
738
+ "isAttr": true
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "name": "ConditionalFilter",
744
+ "superClass": [
745
+ "Element"
746
+ ],
747
+ "meta": {
748
+ "allowedIn": [
749
+ "bpmn:ConditionalEventDefinition"
750
+ ]
751
+ },
752
+ "properties": [
753
+ {
754
+ "name": "variableNames",
755
+ "isAttr": true,
756
+ "type": "String"
757
+ },
758
+ {
759
+ "name": "variableEvents",
760
+ "isAttr": true,
761
+ "type": "String"
762
+ }
763
+ ]
764
+ }
765
+ ]
766
+ }