flowableDescriptor.json 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493
  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. "name": "candidateStrategy",
  325. "isAttr": true,
  326. "type": "String"
  327. },
  328. {
  329. "name": "candidateParam",
  330. "isAttr": true,
  331. "type": "String"
  332. }
  333. ]
  334. },
  335. {
  336. "name": "Assignee",
  337. "supperClass": "Element",
  338. "meta": {
  339. "allowedIn": ["*"]
  340. },
  341. "properties": [
  342. {
  343. "name": "label",
  344. "type": "String",
  345. "isAttr": true
  346. },
  347. {
  348. "name": "viewId",
  349. "type": "Number",
  350. "isAttr": true
  351. }
  352. ]
  353. },
  354. {
  355. "name": "CallActivity",
  356. "extends": ["bpmn:CallActivity"],
  357. "properties": [
  358. {
  359. "name": "calledElementBinding",
  360. "isAttr": true,
  361. "type": "String",
  362. "default": "latest"
  363. },
  364. {
  365. "name": "calledElementVersion",
  366. "isAttr": true,
  367. "type": "String"
  368. },
  369. {
  370. "name": "calledElementVersionTag",
  371. "isAttr": true,
  372. "type": "String"
  373. },
  374. {
  375. "name": "calledElementTenantId",
  376. "isAttr": true,
  377. "type": "String"
  378. },
  379. {
  380. "name": "caseRef",
  381. "isAttr": true,
  382. "type": "String"
  383. },
  384. {
  385. "name": "caseBinding",
  386. "isAttr": true,
  387. "type": "String",
  388. "default": "latest"
  389. },
  390. {
  391. "name": "caseVersion",
  392. "isAttr": true,
  393. "type": "String"
  394. },
  395. {
  396. "name": "caseTenantId",
  397. "isAttr": true,
  398. "type": "String"
  399. },
  400. {
  401. "name": "variableMappingClass",
  402. "isAttr": true,
  403. "type": "String"
  404. },
  405. {
  406. "name": "variableMappingDelegateExpression",
  407. "isAttr": true,
  408. "type": "String"
  409. },
  410. {
  411. "name": "calledElementType",
  412. "isAttr": true,
  413. "type": "String"
  414. },
  415. {
  416. "name": "processInstanceName",
  417. "isAttr": true,
  418. "type": "String"
  419. },
  420. {
  421. "name": "inheritBusinessKey",
  422. "isAttr": true,
  423. "type": "Boolean"
  424. },
  425. {
  426. "name": "businessKey",
  427. "isAttr": true,
  428. "type": "String"
  429. },
  430. {
  431. "name": "inheritVariables",
  432. "isAttr": true,
  433. "type": "Boolean"
  434. }
  435. ]
  436. },
  437. {
  438. "name": "ServiceTaskLike",
  439. "extends": [
  440. "bpmn:ServiceTask",
  441. "bpmn:BusinessRuleTask",
  442. "bpmn:SendTask",
  443. "bpmn:MessageEventDefinition"
  444. ],
  445. "properties": [
  446. {
  447. "name": "expression",
  448. "isAttr": true,
  449. "type": "String"
  450. },
  451. {
  452. "name": "class",
  453. "isAttr": true,
  454. "type": "String"
  455. },
  456. {
  457. "name": "delegateExpression",
  458. "isAttr": true,
  459. "type": "String"
  460. },
  461. {
  462. "name": "resultVariable",
  463. "isAttr": true,
  464. "type": "String"
  465. }
  466. ]
  467. },
  468. {
  469. "name": "DmnCapable",
  470. "extends": ["bpmn:BusinessRuleTask"],
  471. "properties": [
  472. {
  473. "name": "decisionRef",
  474. "isAttr": true,
  475. "type": "String"
  476. },
  477. {
  478. "name": "decisionRefBinding",
  479. "isAttr": true,
  480. "type": "String",
  481. "default": "latest"
  482. },
  483. {
  484. "name": "decisionRefVersion",
  485. "isAttr": true,
  486. "type": "String"
  487. },
  488. {
  489. "name": "mapDecisionResult",
  490. "isAttr": true,
  491. "type": "String",
  492. "default": "resultList"
  493. },
  494. {
  495. "name": "decisionRefTenantId",
  496. "isAttr": true,
  497. "type": "String"
  498. }
  499. ]
  500. },
  501. {
  502. "name": "ExternalCapable",
  503. "extends": ["flowable:ServiceTaskLike"],
  504. "properties": [
  505. {
  506. "name": "type",
  507. "isAttr": true,
  508. "type": "String"
  509. },
  510. {
  511. "name": "topic",
  512. "isAttr": true,
  513. "type": "String"
  514. }
  515. ]
  516. },
  517. {
  518. "name": "TaskPriorized",
  519. "extends": ["bpmn:Process", "flowable:ExternalCapable"],
  520. "properties": [
  521. {
  522. "name": "taskPriority",
  523. "isAttr": true,
  524. "type": "String"
  525. }
  526. ]
  527. },
  528. {
  529. "name": "Properties",
  530. "superClass": ["Element"],
  531. "meta": {
  532. "allowedIn": ["*"]
  533. },
  534. "properties": [
  535. {
  536. "name": "values",
  537. "type": "Property",
  538. "isMany": true
  539. }
  540. ]
  541. },
  542. {
  543. "name": "Property",
  544. "superClass": ["Element"],
  545. "properties": [
  546. {
  547. "name": "id",
  548. "type": "String",
  549. "isAttr": true
  550. },
  551. {
  552. "name": "name",
  553. "type": "String",
  554. "isAttr": true
  555. },
  556. {
  557. "name": "value",
  558. "type": "String",
  559. "isAttr": true
  560. }
  561. ]
  562. },
  563. {
  564. "name": "Button",
  565. "superClass": ["Element"],
  566. "meta": {
  567. "allowedIn": ["bpmn:UserTask"]
  568. },
  569. "properties": [
  570. {
  571. "name": "id",
  572. "type": "String",
  573. "isAttr": true
  574. },
  575. {
  576. "name": "name",
  577. "type": "String",
  578. "isAttr": true
  579. },
  580. {
  581. "name": "code",
  582. "type": "String",
  583. "isAttr": true
  584. },
  585. {
  586. "name": "isHide",
  587. "type": "String",
  588. "isAttr": true
  589. },
  590. {
  591. "name": "next",
  592. "type": "String",
  593. "isAttr": true
  594. },
  595. {
  596. "name": "sort",
  597. "type": "Integer",
  598. "isAttr": true
  599. }
  600. ]
  601. },
  602. {
  603. "name": "Assignee",
  604. "superClass": ["Element"],
  605. "meta": {
  606. "allowedIn": ["bpmn:UserTask"]
  607. },
  608. "properties": [
  609. {
  610. "name": "id",
  611. "type": "String",
  612. "isAttr": true
  613. },
  614. {
  615. "name": "type",
  616. "type": "String",
  617. "isAttr": true
  618. },
  619. {
  620. "name": "value",
  621. "type": "String",
  622. "isAttr": true
  623. },
  624. {
  625. "name": "condition",
  626. "type": "String",
  627. "isAttr": true
  628. },
  629. {
  630. "name": "operationType",
  631. "type": "String",
  632. "isAttr": true
  633. },
  634. {
  635. "name": "sort",
  636. "type": "Integer",
  637. "isAttr": true
  638. }
  639. ]
  640. },
  641. {
  642. "name": "Connector",
  643. "superClass": ["Element"],
  644. "meta": {
  645. "allowedIn": ["flowable:ServiceTaskLike"]
  646. },
  647. "properties": [
  648. {
  649. "name": "inputOutput",
  650. "type": "InputOutput"
  651. },
  652. {
  653. "name": "connectorId",
  654. "type": "String"
  655. }
  656. ]
  657. },
  658. {
  659. "name": "InputOutput",
  660. "superClass": ["Element"],
  661. "meta": {
  662. "allowedIn": ["bpmn:FlowNode", "flowable:Connector"]
  663. },
  664. "properties": [
  665. {
  666. "name": "inputOutput",
  667. "type": "InputOutput"
  668. },
  669. {
  670. "name": "connectorId",
  671. "type": "String"
  672. },
  673. {
  674. "name": "inputParameters",
  675. "isMany": true,
  676. "type": "InputParameter"
  677. },
  678. {
  679. "name": "outputParameters",
  680. "isMany": true,
  681. "type": "OutputParameter"
  682. }
  683. ]
  684. },
  685. {
  686. "name": "InputOutputParameter",
  687. "properties": [
  688. {
  689. "name": "name",
  690. "isAttr": true,
  691. "type": "String"
  692. },
  693. {
  694. "name": "value",
  695. "isBody": true,
  696. "type": "String"
  697. },
  698. {
  699. "name": "definition",
  700. "type": "InputOutputParameterDefinition"
  701. }
  702. ]
  703. },
  704. {
  705. "name": "InputOutputParameterDefinition",
  706. "isAbstract": true
  707. },
  708. {
  709. "name": "List",
  710. "superClass": ["InputOutputParameterDefinition"],
  711. "properties": [
  712. {
  713. "name": "items",
  714. "isMany": true,
  715. "type": "InputOutputParameterDefinition"
  716. }
  717. ]
  718. },
  719. {
  720. "name": "Map",
  721. "superClass": ["InputOutputParameterDefinition"],
  722. "properties": [
  723. {
  724. "name": "entries",
  725. "isMany": true,
  726. "type": "Entry"
  727. }
  728. ]
  729. },
  730. {
  731. "name": "Entry",
  732. "properties": [
  733. {
  734. "name": "key",
  735. "isAttr": true,
  736. "type": "String"
  737. },
  738. {
  739. "name": "value",
  740. "isBody": true,
  741. "type": "String"
  742. },
  743. {
  744. "name": "definition",
  745. "type": "InputOutputParameterDefinition"
  746. }
  747. ]
  748. },
  749. {
  750. "name": "Value",
  751. "superClass": ["InputOutputParameterDefinition"],
  752. "properties": [
  753. {
  754. "name": "id",
  755. "isAttr": true,
  756. "type": "String"
  757. },
  758. {
  759. "name": "name",
  760. "isAttr": true,
  761. "type": "String"
  762. },
  763. {
  764. "name": "value",
  765. "isBody": true,
  766. "type": "String"
  767. }
  768. ]
  769. },
  770. {
  771. "name": "Script",
  772. "superClass": ["InputOutputParameterDefinition"],
  773. "properties": [
  774. {
  775. "name": "scriptFormat",
  776. "isAttr": true,
  777. "type": "String"
  778. },
  779. {
  780. "name": "resource",
  781. "isAttr": true,
  782. "type": "String"
  783. },
  784. {
  785. "name": "value",
  786. "isBody": true,
  787. "type": "String"
  788. }
  789. ]
  790. },
  791. {
  792. "name": "Field",
  793. "superClass": ["Element"],
  794. "meta": {
  795. "allowedIn": [
  796. "flowable:ServiceTaskLike",
  797. "flowable:ExecutionListener",
  798. "flowable:TaskListener"
  799. ]
  800. },
  801. "properties": [
  802. {
  803. "name": "name",
  804. "isAttr": true,
  805. "type": "String"
  806. },
  807. {
  808. "name": "expression",
  809. "type": "String"
  810. },
  811. {
  812. "name": "stringValue",
  813. "isAttr": true,
  814. "type": "String"
  815. },
  816. {
  817. "name": "string",
  818. "type": "String"
  819. }
  820. ]
  821. },
  822. {
  823. "name": "ChildField",
  824. "superClass": ["Element"],
  825. "properties": [
  826. {
  827. "name": "id",
  828. "type": "String",
  829. "isAttr": true
  830. },
  831. {
  832. "name": "name",
  833. "type": "String",
  834. "isAttr": true
  835. },
  836. {
  837. "name": "type",
  838. "type": "String",
  839. "isAttr": true
  840. },
  841. {
  842. "name": "required",
  843. "type": "String",
  844. "isAttr": true
  845. },
  846. {
  847. "name": "readable",
  848. "type": "String",
  849. "isAttr": true
  850. },
  851. {
  852. "name": "writable",
  853. "type": "String",
  854. "isAttr": true
  855. },
  856. {
  857. "name": "variable",
  858. "type": "String",
  859. "isAttr": true
  860. },
  861. {
  862. "name": "expression",
  863. "type": "String",
  864. "isAttr": true
  865. },
  866. {
  867. "name": "datePattern",
  868. "type": "String",
  869. "isAttr": true
  870. },
  871. {
  872. "name": "default",
  873. "type": "String",
  874. "isAttr": true
  875. },
  876. {
  877. "name": "values",
  878. "type": "Value",
  879. "isMany": true
  880. }
  881. ]
  882. },
  883. {
  884. "name": "InputParameter",
  885. "superClass": ["InputOutputParameter"]
  886. },
  887. {
  888. "name": "OutputParameter",
  889. "superClass": ["InputOutputParameter"]
  890. },
  891. {
  892. "name": "Collectable",
  893. "isAbstract": true,
  894. "extends": ["bpmn:MultiInstanceLoopCharacteristics"],
  895. "superClass": ["flowable:AsyncCapable"],
  896. "properties": [
  897. {
  898. "name": "collection",
  899. "isAttr": true,
  900. "type": "String"
  901. },
  902. {
  903. "name": "elementVariable",
  904. "isAttr": true,
  905. "type": "String"
  906. }
  907. ]
  908. },
  909. {
  910. "name": "FailedJobRetryTimeCycle",
  911. "superClass": ["Element"],
  912. "meta": {
  913. "allowedIn": ["flowable:AsyncCapable", "bpmn:MultiInstanceLoopCharacteristics"]
  914. },
  915. "properties": [
  916. {
  917. "name": "body",
  918. "isBody": true,
  919. "type": "String"
  920. }
  921. ]
  922. },
  923. {
  924. "name": "ExecutionListener",
  925. "superClass": ["Element"],
  926. "meta": {
  927. "allowedIn": [
  928. "bpmn:Task",
  929. "bpmn:ServiceTask",
  930. "bpmn:UserTask",
  931. "bpmn:BusinessRuleTask",
  932. "bpmn:ScriptTask",
  933. "bpmn:ReceiveTask",
  934. "bpmn:ManualTask",
  935. "bpmn:ExclusiveGateway",
  936. "bpmn:SequenceFlow",
  937. "bpmn:ParallelGateway",
  938. "bpmn:InclusiveGateway",
  939. "bpmn:EventBasedGateway",
  940. "bpmn:StartEvent",
  941. "bpmn:IntermediateCatchEvent",
  942. "bpmn:IntermediateThrowEvent",
  943. "bpmn:EndEvent",
  944. "bpmn:BoundaryEvent",
  945. "bpmn:CallActivity",
  946. "bpmn:SubProcess",
  947. "bpmn:Process"
  948. ]
  949. },
  950. "properties": [
  951. {
  952. "name": "expression",
  953. "isAttr": true,
  954. "type": "String"
  955. },
  956. {
  957. "name": "class",
  958. "isAttr": true,
  959. "type": "String"
  960. },
  961. {
  962. "name": "delegateExpression",
  963. "isAttr": true,
  964. "type": "String"
  965. },
  966. {
  967. "name": "event",
  968. "isAttr": true,
  969. "type": "String"
  970. },
  971. {
  972. "name": "script",
  973. "type": "Script"
  974. },
  975. {
  976. "name": "fields",
  977. "type": "Field",
  978. "isMany": true
  979. }
  980. ]
  981. },
  982. {
  983. "name": "TaskListener",
  984. "superClass": ["Element"],
  985. "meta": {
  986. "allowedIn": ["bpmn:UserTask"]
  987. },
  988. "properties": [
  989. {
  990. "name": "expression",
  991. "isAttr": true,
  992. "type": "String"
  993. },
  994. {
  995. "name": "class",
  996. "isAttr": true,
  997. "type": "String"
  998. },
  999. {
  1000. "name": "delegateExpression",
  1001. "isAttr": true,
  1002. "type": "String"
  1003. },
  1004. {
  1005. "name": "event",
  1006. "isAttr": true,
  1007. "type": "String"
  1008. },
  1009. {
  1010. "name": "script",
  1011. "type": "Script"
  1012. },
  1013. {
  1014. "name": "fields",
  1015. "type": "Field",
  1016. "isMany": true
  1017. },
  1018. {
  1019. "name": "id",
  1020. "type": "String",
  1021. "isAttr": true
  1022. },
  1023. {
  1024. "name": "eventDefinitions",
  1025. "type": "bpmn:TimerEventDefinition",
  1026. "isMany": true
  1027. }
  1028. ]
  1029. },
  1030. {
  1031. "name": "FormProperty",
  1032. "superClass": ["Element"],
  1033. "meta": {
  1034. "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
  1035. },
  1036. "properties": [
  1037. {
  1038. "name": "id",
  1039. "type": "String",
  1040. "isAttr": true
  1041. },
  1042. {
  1043. "name": "name",
  1044. "type": "String",
  1045. "isAttr": true
  1046. },
  1047. {
  1048. "name": "type",
  1049. "type": "String",
  1050. "isAttr": true
  1051. },
  1052. {
  1053. "name": "required",
  1054. "type": "String",
  1055. "isAttr": true
  1056. },
  1057. {
  1058. "name": "readable",
  1059. "type": "String",
  1060. "isAttr": true
  1061. },
  1062. {
  1063. "name": "writable",
  1064. "type": "String",
  1065. "isAttr": true
  1066. },
  1067. {
  1068. "name": "variable",
  1069. "type": "String",
  1070. "isAttr": true
  1071. },
  1072. {
  1073. "name": "expression",
  1074. "type": "String",
  1075. "isAttr": true
  1076. },
  1077. {
  1078. "name": "datePattern",
  1079. "type": "String",
  1080. "isAttr": true
  1081. },
  1082. {
  1083. "name": "default",
  1084. "type": "String",
  1085. "isAttr": true
  1086. },
  1087. {
  1088. "name": "values",
  1089. "type": "Value",
  1090. "isMany": true
  1091. },
  1092. {
  1093. "name": "children",
  1094. "type": "ChildField",
  1095. "isMany": true
  1096. },
  1097. {
  1098. "name": "extensionElements",
  1099. "type": "bpmn:ExtensionElements",
  1100. "isMany": true
  1101. }
  1102. ]
  1103. },
  1104. {
  1105. "name": "FormData",
  1106. "superClass": ["Element"],
  1107. "meta": {
  1108. "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
  1109. },
  1110. "properties": [
  1111. {
  1112. "name": "fields",
  1113. "type": "FormField",
  1114. "isMany": true
  1115. },
  1116. {
  1117. "name": "businessKey",
  1118. "type": "String",
  1119. "isAttr": true
  1120. }
  1121. ]
  1122. },
  1123. {
  1124. "name": "FormField",
  1125. "superClass": ["Element"],
  1126. "properties": [
  1127. {
  1128. "name": "id",
  1129. "type": "String",
  1130. "isAttr": true
  1131. },
  1132. {
  1133. "name": "label",
  1134. "type": "String",
  1135. "isAttr": true
  1136. },
  1137. {
  1138. "name": "type",
  1139. "type": "String",
  1140. "isAttr": true
  1141. },
  1142. {
  1143. "name": "datePattern",
  1144. "type": "String",
  1145. "isAttr": true
  1146. },
  1147. {
  1148. "name": "defaultValue",
  1149. "type": "String",
  1150. "isAttr": true
  1151. },
  1152. {
  1153. "name": "properties",
  1154. "type": "Properties"
  1155. },
  1156. {
  1157. "name": "validation",
  1158. "type": "Validation"
  1159. },
  1160. {
  1161. "name": "values",
  1162. "type": "Value",
  1163. "isMany": true
  1164. }
  1165. ]
  1166. },
  1167. {
  1168. "name": "Validation",
  1169. "superClass": ["Element"],
  1170. "properties": [
  1171. {
  1172. "name": "constraints",
  1173. "type": "Constraint",
  1174. "isMany": true
  1175. }
  1176. ]
  1177. },
  1178. {
  1179. "name": "Constraint",
  1180. "superClass": ["Element"],
  1181. "properties": [
  1182. {
  1183. "name": "name",
  1184. "type": "String",
  1185. "isAttr": true
  1186. },
  1187. {
  1188. "name": "config",
  1189. "type": "String",
  1190. "isAttr": true
  1191. }
  1192. ]
  1193. },
  1194. {
  1195. "name": "ConditionalEventDefinition",
  1196. "isAbstract": true,
  1197. "extends": ["bpmn:ConditionalEventDefinition"],
  1198. "properties": [
  1199. {
  1200. "name": "variableName",
  1201. "isAttr": true,
  1202. "type": "String"
  1203. },
  1204. {
  1205. "name": "variableEvent",
  1206. "isAttr": true,
  1207. "type": "String"
  1208. }
  1209. ]
  1210. },
  1211. {
  1212. "name": "Condition",
  1213. "superClass": ["Element"],
  1214. "meta": {
  1215. "allowedIn": ["bpmn:SequenceFlow"]
  1216. },
  1217. "properties": [
  1218. {
  1219. "name": "id",
  1220. "type": "String",
  1221. "isAttr": true
  1222. },
  1223. {
  1224. "name": "field",
  1225. "type": "String",
  1226. "isAttr": true
  1227. },
  1228. {
  1229. "name": "compare",
  1230. "type": "String",
  1231. "isAttr": true
  1232. },
  1233. {
  1234. "name": "value",
  1235. "type": "String",
  1236. "isAttr": true
  1237. },
  1238. {
  1239. "name": "logic",
  1240. "type": "String",
  1241. "isAttr": true
  1242. },
  1243. {
  1244. "name": "sort",
  1245. "type": "Integer",
  1246. "isAttr": true
  1247. }
  1248. ]
  1249. },
  1250. {
  1251. "name": "AssignStartUserHandlerType",
  1252. "superClass": ["Element"],
  1253. "meta": {
  1254. "allowedIn": ["bpmn:StartEvent", "bpmn:UserTask"]
  1255. },
  1256. "properties": [
  1257. {
  1258. "name": "value",
  1259. "type": "Integer",
  1260. "isBody": true
  1261. }
  1262. ]
  1263. },
  1264. {
  1265. "name": "RejectHandlerType",
  1266. "superClass": ["Element"],
  1267. "meta": {
  1268. "allowedIn": ["bpmn:UserTask"]
  1269. },
  1270. "properties": [
  1271. {
  1272. "name": "value",
  1273. "type": "Integer",
  1274. "isBody": true
  1275. }
  1276. ]
  1277. },
  1278. {
  1279. "name": "RejectReturnTaskId",
  1280. "superClass": ["Element"],
  1281. "meta": {
  1282. "allowedIn": ["bpmn:UserTask"]
  1283. },
  1284. "properties": [
  1285. {
  1286. "name": "value",
  1287. "type": "String",
  1288. "isBody": true
  1289. }
  1290. ]
  1291. },
  1292. {
  1293. "name": "AssignEmptyHandlerType",
  1294. "superClass": ["Element"],
  1295. "meta": {
  1296. "allowedIn": ["bpmn:UserTask"]
  1297. },
  1298. "properties": [
  1299. {
  1300. "name": "value",
  1301. "type": "Integer",
  1302. "isBody": true
  1303. }
  1304. ]
  1305. },
  1306. {
  1307. "name": "AssignEmptyUserIds",
  1308. "superClass": ["Element"],
  1309. "meta": {
  1310. "allowedIn": ["bpmn:UserTask"]
  1311. },
  1312. "properties": [
  1313. {
  1314. "name": "value",
  1315. "type": "String",
  1316. "isBody": true
  1317. }
  1318. ]
  1319. },
  1320. {
  1321. "name": "ButtonsSetting",
  1322. "superClass": ["Element"],
  1323. "meta": {
  1324. "allowedIn": ["bpmn:UserTask"]
  1325. },
  1326. "properties": [
  1327. {
  1328. "name": "flowable:id",
  1329. "type": "Integer",
  1330. "isAttr": true
  1331. },
  1332. {
  1333. "name": "flowable:enable",
  1334. "type": "Boolean",
  1335. "isAttr": true
  1336. },
  1337. {
  1338. "name": "flowable:displayName",
  1339. "type": "String",
  1340. "isAttr": true
  1341. }
  1342. ]
  1343. },
  1344. {
  1345. "name": "FieldsPermission",
  1346. "superClass": ["Element"],
  1347. "meta": {
  1348. "allowedIn": ["bpmn:UserTask"]
  1349. },
  1350. "properties": [
  1351. {
  1352. "name": "flowable:field",
  1353. "type": "String",
  1354. "isAttr": true
  1355. },
  1356. {
  1357. "name": "flowable:title",
  1358. "type": "String",
  1359. "isAttr": true
  1360. },
  1361. {
  1362. "name": "flowable:permission",
  1363. "type": "String",
  1364. "isAttr": true
  1365. }
  1366. ]
  1367. },
  1368. {
  1369. "name": "BoundaryEventType",
  1370. "superClass": ["Element"],
  1371. "meta": {
  1372. "allowedIn": ["bpmn:BoundaryEvent"]
  1373. },
  1374. "properties": [
  1375. {
  1376. "name": "value",
  1377. "type": "Integer",
  1378. "isBody": true
  1379. }
  1380. ]
  1381. },
  1382. {
  1383. "name": "TimeoutHandlerType",
  1384. "superClass": ["Element"],
  1385. "meta": {
  1386. "allowedIn": ["bpmn:BoundaryEvent"]
  1387. },
  1388. "properties": [
  1389. {
  1390. "name": "value",
  1391. "type": "Integer",
  1392. "isBody": true
  1393. }
  1394. ]
  1395. },
  1396. {
  1397. "name": "ApproveType",
  1398. "superClass": ["Element"],
  1399. "meta": {
  1400. "allowedIn": ["bpmn:UserTask"]
  1401. },
  1402. "properties": [
  1403. {
  1404. "name": "value",
  1405. "type": "Integer",
  1406. "isBody": true
  1407. }
  1408. ]
  1409. },
  1410. {
  1411. "name": "ApproveMethod",
  1412. "superClass": ["Element"],
  1413. "meta": {
  1414. "allowedIn": ["bpmn:UserTask"]
  1415. },
  1416. "properties": [
  1417. {
  1418. "name": "value",
  1419. "type": "Integer",
  1420. "isBody": true
  1421. }
  1422. ]
  1423. },
  1424. {
  1425. "name": "CandidateStrategy",
  1426. "superClass": ["Element"],
  1427. "meta": {
  1428. "allowedIn": ["bpmn:UserTask"]
  1429. },
  1430. "properties": [
  1431. {
  1432. "name": "value",
  1433. "type": "Integer",
  1434. "isBody": true
  1435. }
  1436. ]
  1437. },
  1438. {
  1439. "name": "CandidateParam",
  1440. "superClass": ["Element"],
  1441. "meta": {
  1442. "allowedIn": ["bpmn:UserTask"]
  1443. },
  1444. "properties": [
  1445. {
  1446. "name": "value",
  1447. "type": "String",
  1448. "isBody": true
  1449. }
  1450. ]
  1451. },
  1452. {
  1453. "name": "SignEnable",
  1454. "superClass": ["Element"],
  1455. "meta": {
  1456. "allowedIn": ["bpmn:UserTask"]
  1457. },
  1458. "properties": [
  1459. {
  1460. "name": "value",
  1461. "type": "Boolean",
  1462. "isBody": true
  1463. }
  1464. ]
  1465. },
  1466. {
  1467. "name": "SkipExpression",
  1468. "extends": ["bpmn:UserTask"],
  1469. "properties": [
  1470. {
  1471. "name": "skipExpression",
  1472. "isAttr": true,
  1473. "type": "String"
  1474. }
  1475. ]
  1476. },
  1477. {
  1478. "name": "ReasonRequire",
  1479. "superClass": ["Element"],
  1480. "meta": {
  1481. "allowedIn": ["bpmn:UserTask"]
  1482. },
  1483. "properties": [
  1484. {
  1485. "name": "value",
  1486. "type": "Boolean",
  1487. "isBody": true
  1488. }
  1489. ]
  1490. }
  1491. ],
  1492. "emumerations": []
  1493. }