flowable.json 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109
  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": "Definitions",
  12. "isAbstract": true,
  13. "extends": [
  14. "bpmn:Definitions"
  15. ],
  16. "properties": [
  17. {
  18. "name": "diagramRelationId",
  19. "isAttr": true,
  20. "type": "String"
  21. }
  22. ]
  23. },
  24. {
  25. "name": "InOutBinding",
  26. "superClass": [
  27. "Element"
  28. ],
  29. "isAbstract": true,
  30. "properties": [
  31. {
  32. "name": "source",
  33. "isAttr": true,
  34. "type": "String"
  35. },
  36. {
  37. "name": "sourceExpression",
  38. "isAttr": true,
  39. "type": "String"
  40. },
  41. {
  42. "name": "target",
  43. "isAttr": true,
  44. "type": "String"
  45. },
  46. {
  47. "name": "businessKey",
  48. "isAttr": true,
  49. "type": "String"
  50. },
  51. {
  52. "name": "local",
  53. "isAttr": true,
  54. "type": "Boolean",
  55. "default": false
  56. },
  57. {
  58. "name": "variables",
  59. "isAttr": true,
  60. "type": "String"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "In",
  66. "superClass": [
  67. "InOutBinding"
  68. ],
  69. "meta": {
  70. "allowedIn": [
  71. "bpmn:CallActivity"
  72. ]
  73. }
  74. },
  75. {
  76. "name": "Out",
  77. "superClass": [
  78. "InOutBinding"
  79. ],
  80. "meta": {
  81. "allowedIn": [
  82. "bpmn:CallActivity"
  83. ]
  84. }
  85. },
  86. {
  87. "name": "AsyncCapable",
  88. "isAbstract": true,
  89. "extends": [
  90. "bpmn:Activity",
  91. "bpmn:Gateway",
  92. "bpmn:Event"
  93. ],
  94. "properties": [
  95. {
  96. "name": "async",
  97. "isAttr": true,
  98. "type": "Boolean",
  99. "default": false
  100. },
  101. {
  102. "name": "asyncBefore",
  103. "isAttr": true,
  104. "type": "Boolean",
  105. "default": false
  106. },
  107. {
  108. "name": "asyncAfter",
  109. "isAttr": true,
  110. "type": "Boolean",
  111. "default": false
  112. },
  113. {
  114. "name": "exclusive",
  115. "isAttr": true,
  116. "type": "Boolean",
  117. "default": true
  118. }
  119. ]
  120. },
  121. {
  122. "name": "JobPriorized",
  123. "isAbstract": true,
  124. "extends": [
  125. "bpmn:Process",
  126. "flowable:AsyncCapable"
  127. ],
  128. "properties": [
  129. {
  130. "name": "jobPriority",
  131. "isAttr": true,
  132. "type": "String"
  133. }
  134. ]
  135. },
  136. {
  137. "name": "SignalEventDefinition",
  138. "isAbstract": true,
  139. "extends": [
  140. "bpmn:SignalEventDefinition"
  141. ],
  142. "properties": [
  143. {
  144. "name": "async",
  145. "isAttr": true,
  146. "type": "Boolean",
  147. "default": false
  148. }
  149. ]
  150. },
  151. {
  152. "name": "ErrorEventDefinition",
  153. "isAbstract": true,
  154. "extends": [
  155. "bpmn:ErrorEventDefinition"
  156. ],
  157. "properties": [
  158. {
  159. "name": "errorCodeVariable",
  160. "isAttr": true,
  161. "type": "String"
  162. },
  163. {
  164. "name": "errorMessageVariable",
  165. "isAttr": true,
  166. "type": "String"
  167. }
  168. ]
  169. },
  170. {
  171. "name": "Error",
  172. "isAbstract": true,
  173. "extends": [
  174. "bpmn:Error"
  175. ],
  176. "properties": [
  177. {
  178. "name": "flowable:errorMessage",
  179. "isAttr": true,
  180. "type": "String"
  181. }
  182. ]
  183. },
  184. {
  185. "name": "PotentialStarter",
  186. "superClass": [
  187. "Element"
  188. ],
  189. "properties": [
  190. {
  191. "name": "resourceAssignmentExpression",
  192. "type": "bpmn:ResourceAssignmentExpression"
  193. }
  194. ]
  195. },
  196. {
  197. "name": "FormSupported",
  198. "isAbstract": true,
  199. "extends": [
  200. "bpmn:StartEvent",
  201. "bpmn:UserTask"
  202. ],
  203. "properties": [
  204. {
  205. "name": "formHandlerClass",
  206. "isAttr": true,
  207. "type": "String"
  208. },
  209. {
  210. "name": "formKey",
  211. "isAttr": true,
  212. "type": "String"
  213. }
  214. ]
  215. },
  216. {
  217. "name": "TemplateSupported",
  218. "isAbstract": true,
  219. "extends": [
  220. "bpmn:Process",
  221. "bpmn:FlowElement"
  222. ],
  223. "properties": [
  224. {
  225. "name": "modelerTemplate",
  226. "isAttr": true,
  227. "type": "String"
  228. }
  229. ]
  230. },
  231. {
  232. "name": "Initiator",
  233. "isAbstract": true,
  234. "extends": [
  235. "bpmn:StartEvent"
  236. ],
  237. "properties": [
  238. {
  239. "name": "initiator",
  240. "isAttr": true,
  241. "type": "String"
  242. }
  243. ]
  244. },
  245. {
  246. "name": "ScriptTask",
  247. "isAbstract": true,
  248. "extends": [
  249. "bpmn:ScriptTask"
  250. ],
  251. "properties": [
  252. {
  253. "name": "resultVariable",
  254. "isAttr": true,
  255. "type": "String"
  256. },
  257. {
  258. "name": "resource",
  259. "isAttr": true,
  260. "type": "String"
  261. }
  262. ]
  263. },
  264. {
  265. "name": "Process",
  266. "isAbstract": true,
  267. "extends": [
  268. "bpmn:Process"
  269. ],
  270. "properties": [
  271. {
  272. "name": "candidateStarterGroups",
  273. "isAttr": true,
  274. "type": "String"
  275. },
  276. {
  277. "name": "candidateStarterUsers",
  278. "isAttr": true,
  279. "type": "String"
  280. },
  281. {
  282. "name": "versionTag",
  283. "isAttr": true,
  284. "type": "String"
  285. },
  286. {
  287. "name": "historyTimeToLive",
  288. "isAttr": true,
  289. "type": "String"
  290. },
  291. {
  292. "name": "isStartableInTasklist",
  293. "isAttr": true,
  294. "type": "Boolean",
  295. "default": true
  296. },
  297. {
  298. "name": "executionListener",
  299. "isAbstract": true,
  300. "type": "Expression"
  301. }
  302. ]
  303. },
  304. {
  305. "name": "EscalationEventDefinition",
  306. "isAbstract": true,
  307. "extends": [
  308. "bpmn:EscalationEventDefinition"
  309. ],
  310. "properties": [
  311. {
  312. "name": "escalationCodeVariable",
  313. "isAttr": true,
  314. "type": "String"
  315. }
  316. ]
  317. },
  318. {
  319. "name": "FormalExpression",
  320. "isAbstract": true,
  321. "extends": [
  322. "bpmn:FormalExpression"
  323. ],
  324. "properties": [
  325. {
  326. "name": "resource",
  327. "isAttr": true,
  328. "type": "String"
  329. }
  330. ]
  331. },
  332. {
  333. "name": "multiinstance_type",
  334. "superClass": [
  335. "Element"
  336. ]
  337. },
  338. {
  339. "name": "multiinstance_condition",
  340. "superClass": [
  341. "Element"
  342. ]
  343. },
  344. {
  345. "name": "Assignable",
  346. "extends": [
  347. "bpmn:UserTask"
  348. ],
  349. "properties": [
  350. {
  351. "name": "assignee",
  352. "isAttr": true,
  353. "type": "String"
  354. },
  355. {
  356. "name": "candidateUsers",
  357. "isAttr": true,
  358. "type": "String"
  359. },
  360. {
  361. "name": "candidateGroups",
  362. "isAttr": true,
  363. "type": "String"
  364. },
  365. {
  366. "name": "dueDate",
  367. "isAttr": true,
  368. "type": "String"
  369. },
  370. {
  371. "name": "followUpDate",
  372. "isAttr": true,
  373. "type": "String"
  374. },
  375. {
  376. "name": "priority",
  377. "isAttr": true,
  378. "type": "String"
  379. },
  380. {
  381. "name": "multiinstance_condition",
  382. "isAttr": true,
  383. "type": "String"
  384. }
  385. ]
  386. },
  387. {
  388. "name": "CallActivity",
  389. "extends": [
  390. "bpmn:CallActivity"
  391. ],
  392. "properties": [
  393. {
  394. "name": "calledElementBinding",
  395. "isAttr": true,
  396. "type": "String",
  397. "default": "latest"
  398. },
  399. {
  400. "name": "calledElementVersion",
  401. "isAttr": true,
  402. "type": "String"
  403. },
  404. {
  405. "name": "calledElementVersionTag",
  406. "isAttr": true,
  407. "type": "String"
  408. },
  409. {
  410. "name": "calledElementTenantId",
  411. "isAttr": true,
  412. "type": "String"
  413. },
  414. {
  415. "name": "caseRef",
  416. "isAttr": true,
  417. "type": "String"
  418. },
  419. {
  420. "name": "caseBinding",
  421. "isAttr": true,
  422. "type": "String",
  423. "default": "latest"
  424. },
  425. {
  426. "name": "caseVersion",
  427. "isAttr": true,
  428. "type": "String"
  429. },
  430. {
  431. "name": "caseTenantId",
  432. "isAttr": true,
  433. "type": "String"
  434. },
  435. {
  436. "name": "variableMappingClass",
  437. "isAttr": true,
  438. "type": "String"
  439. },
  440. {
  441. "name": "variableMappingDelegateExpression",
  442. "isAttr": true,
  443. "type": "String"
  444. }
  445. ]
  446. },
  447. {
  448. "name": "ServiceTaskLike",
  449. "extends": [
  450. "bpmn:ServiceTask",
  451. "bpmn:BusinessRuleTask",
  452. "bpmn:SendTask",
  453. "bpmn:MessageEventDefinition"
  454. ],
  455. "properties": [
  456. {
  457. "name": "expression",
  458. "isAttr": true,
  459. "type": "String"
  460. },
  461. {
  462. "name": "class",
  463. "isAttr": true,
  464. "type": "String"
  465. },
  466. {
  467. "name": "delegateExpression",
  468. "isAttr": true,
  469. "type": "String"
  470. },
  471. {
  472. "name": "resultVariable",
  473. "isAttr": true,
  474. "type": "String"
  475. }
  476. ]
  477. },
  478. {
  479. "name": "DmnCapable",
  480. "extends": [
  481. "bpmn:BusinessRuleTask"
  482. ],
  483. "properties": [
  484. {
  485. "name": "decisionRef",
  486. "isAttr": true,
  487. "type": "String"
  488. },
  489. {
  490. "name": "decisionRefBinding",
  491. "isAttr": true,
  492. "type": "String",
  493. "default": "latest"
  494. },
  495. {
  496. "name": "decisionRefVersion",
  497. "isAttr": true,
  498. "type": "String"
  499. },
  500. {
  501. "name": "mapDecisionResult",
  502. "isAttr": true,
  503. "type": "String",
  504. "default": "resultList"
  505. },
  506. {
  507. "name": "decisionRefTenantId",
  508. "isAttr": true,
  509. "type": "String"
  510. }
  511. ]
  512. },
  513. {
  514. "name": "ExternalCapable",
  515. "extends": [
  516. "flowable:ServiceTaskLike"
  517. ],
  518. "properties": [
  519. {
  520. "name": "type",
  521. "isAttr": true,
  522. "type": "String"
  523. },
  524. {
  525. "name": "topic",
  526. "isAttr": true,
  527. "type": "String"
  528. }
  529. ]
  530. },
  531. {
  532. "name": "TaskPriorized",
  533. "extends": [
  534. "bpmn:Process",
  535. "flowable:ExternalCapable"
  536. ],
  537. "properties": [
  538. {
  539. "name": "taskPriority",
  540. "isAttr": true,
  541. "type": "String"
  542. }
  543. ]
  544. },
  545. {
  546. "name": "Properties",
  547. "superClass": [
  548. "Element"
  549. ],
  550. "meta": {
  551. "allowedIn": [
  552. "*"
  553. ]
  554. },
  555. "properties": [
  556. {
  557. "name": "values",
  558. "type": "Property",
  559. "isMany": true
  560. }
  561. ]
  562. },
  563. {
  564. "name": "Property",
  565. "superClass": [
  566. "Element"
  567. ],
  568. "properties": [
  569. {
  570. "name": "id",
  571. "type": "String",
  572. "isAttr": true
  573. },
  574. {
  575. "name": "name",
  576. "type": "String",
  577. "isAttr": true
  578. },
  579. {
  580. "name": "value",
  581. "type": "String",
  582. "isAttr": true
  583. }
  584. ]
  585. },
  586. {
  587. "name": "Connector",
  588. "superClass": [
  589. "Element"
  590. ],
  591. "meta": {
  592. "allowedIn": [
  593. "flowable:ServiceTaskLike"
  594. ]
  595. },
  596. "properties": [
  597. {
  598. "name": "inputOutput",
  599. "type": "InputOutput"
  600. },
  601. {
  602. "name": "connectorId",
  603. "type": "String"
  604. }
  605. ]
  606. },
  607. {
  608. "name": "InputOutput",
  609. "superClass": [
  610. "Element"
  611. ],
  612. "meta": {
  613. "allowedIn": [
  614. "bpmn:FlowNode",
  615. "flowable:Connector"
  616. ]
  617. },
  618. "properties": [
  619. {
  620. "name": "inputOutput",
  621. "type": "InputOutput"
  622. },
  623. {
  624. "name": "connectorId",
  625. "type": "String"
  626. },
  627. {
  628. "name": "inputParameters",
  629. "isMany": true,
  630. "type": "InputParameter"
  631. },
  632. {
  633. "name": "outputParameters",
  634. "isMany": true,
  635. "type": "OutputParameter"
  636. }
  637. ]
  638. },
  639. {
  640. "name": "InputOutputParameter",
  641. "properties": [
  642. {
  643. "name": "name",
  644. "isAttr": true,
  645. "type": "String"
  646. },
  647. {
  648. "name": "value",
  649. "isBody": true,
  650. "type": "String"
  651. },
  652. {
  653. "name": "definition",
  654. "type": "InputOutputParameterDefinition"
  655. }
  656. ]
  657. },
  658. {
  659. "name": "InputOutputParameterDefinition",
  660. "isAbstract": true
  661. },
  662. {
  663. "name": "List",
  664. "superClass": [
  665. "InputOutputParameterDefinition"
  666. ],
  667. "properties": [
  668. {
  669. "name": "items",
  670. "isMany": true,
  671. "type": "InputOutputParameterDefinition"
  672. }
  673. ]
  674. },
  675. {
  676. "name": "Map",
  677. "superClass": [
  678. "InputOutputParameterDefinition"
  679. ],
  680. "properties": [
  681. {
  682. "name": "entries",
  683. "isMany": true,
  684. "type": "Entry"
  685. }
  686. ]
  687. },
  688. {
  689. "name": "Entry",
  690. "properties": [
  691. {
  692. "name": "key",
  693. "isAttr": true,
  694. "type": "String"
  695. },
  696. {
  697. "name": "value",
  698. "isBody": true,
  699. "type": "String"
  700. },
  701. {
  702. "name": "definition",
  703. "type": "InputOutputParameterDefinition"
  704. }
  705. ]
  706. },
  707. {
  708. "name": "Value",
  709. "superClass": [
  710. "InputOutputParameterDefinition"
  711. ],
  712. "properties": [
  713. {
  714. "name": "id",
  715. "isAttr": true,
  716. "type": "String"
  717. },
  718. {
  719. "name": "name",
  720. "isAttr": true,
  721. "type": "String"
  722. },
  723. {
  724. "name": "value",
  725. "isBody": true,
  726. "type": "String"
  727. }
  728. ]
  729. },
  730. {
  731. "name": "Script",
  732. "superClass": [
  733. "InputOutputParameterDefinition"
  734. ],
  735. "properties": [
  736. {
  737. "name": "scriptFormat",
  738. "isAttr": true,
  739. "type": "String"
  740. },
  741. {
  742. "name": "resource",
  743. "isAttr": true,
  744. "type": "String"
  745. },
  746. {
  747. "name": "value",
  748. "isBody": true,
  749. "type": "String"
  750. }
  751. ]
  752. },
  753. {
  754. "name": "Field",
  755. "superClass": [
  756. "Element"
  757. ],
  758. "meta": {
  759. "allowedIn": [
  760. "flowable:ServiceTaskLike",
  761. "flowable:ExecutionListener",
  762. "flowable:TaskListener"
  763. ]
  764. },
  765. "properties": [
  766. {
  767. "name": "name",
  768. "isAttr": true,
  769. "type": "String"
  770. },
  771. {
  772. "name": "expression",
  773. "type": "String"
  774. },
  775. {
  776. "name": "stringValue",
  777. "isAttr": true,
  778. "type": "String"
  779. },
  780. {
  781. "name": "string",
  782. "type": "String"
  783. }
  784. ]
  785. },
  786. {
  787. "name": "InputParameter",
  788. "superClass": [
  789. "InputOutputParameter"
  790. ]
  791. },
  792. {
  793. "name": "OutputParameter",
  794. "superClass": [
  795. "InputOutputParameter"
  796. ]
  797. },
  798. {
  799. "name": "Collectable",
  800. "isAbstract": true,
  801. "extends": [
  802. "bpmn:MultiInstanceLoopCharacteristics"
  803. ],
  804. "superClass": [
  805. "flowable:AsyncCapable"
  806. ],
  807. "properties": [
  808. {
  809. "name": "collection",
  810. "isAttr": true,
  811. "type": "String"
  812. },
  813. {
  814. "name": "elementVariable",
  815. "isAttr": true,
  816. "type": "String"
  817. }
  818. ]
  819. },
  820. {
  821. "name": "FailedJobRetryTimeCycle",
  822. "superClass": [
  823. "Element"
  824. ],
  825. "meta": {
  826. "allowedIn": [
  827. "flowable:AsyncCapable",
  828. "bpmn:MultiInstanceLoopCharacteristics"
  829. ]
  830. },
  831. "properties": [
  832. {
  833. "name": "body",
  834. "isBody": true,
  835. "type": "String"
  836. }
  837. ]
  838. },
  839. {
  840. "name": "ExecutionListener",
  841. "superClass": [
  842. "Element"
  843. ],
  844. "meta": {
  845. "allowedIn": [
  846. "bpmn:Task",
  847. "bpmn:ServiceTask",
  848. "bpmn:UserTask",
  849. "bpmn:BusinessRuleTask",
  850. "bpmn:ScriptTask",
  851. "bpmn:ReceiveTask",
  852. "bpmn:ManualTask",
  853. "bpmn:ExclusiveGateway",
  854. "bpmn:SequenceFlow",
  855. "bpmn:ParallelGateway",
  856. "bpmn:InclusiveGateway",
  857. "bpmn:EventBasedGateway",
  858. "bpmn:StartEvent",
  859. "bpmn:IntermediateCatchEvent",
  860. "bpmn:IntermediateThrowEvent",
  861. "bpmn:EndEvent",
  862. "bpmn:BoundaryEvent",
  863. "bpmn:CallActivity",
  864. "bpmn:SubProcess",
  865. "bpmn:Process"
  866. ]
  867. },
  868. "properties": [
  869. {
  870. "name": "expression",
  871. "isAttr": true,
  872. "type": "String"
  873. },
  874. {
  875. "name": "class",
  876. "isAttr": true,
  877. "type": "String"
  878. },
  879. {
  880. "name": "delegateExpression",
  881. "isAttr": true,
  882. "type": "String"
  883. },
  884. {
  885. "name": "event",
  886. "isAttr": true,
  887. "type": "String"
  888. },
  889. {
  890. "name": "script",
  891. "type": "Script"
  892. },
  893. {
  894. "name": "fields",
  895. "type": "Field",
  896. "isMany": true
  897. }
  898. ]
  899. },
  900. {
  901. "name": "TaskListener",
  902. "superClass": [
  903. "Element"
  904. ],
  905. "meta": {
  906. "allowedIn": [
  907. "bpmn:UserTask"
  908. ]
  909. },
  910. "properties": [
  911. {
  912. "name": "expression",
  913. "isAttr": true,
  914. "type": "String"
  915. },
  916. {
  917. "name": "class",
  918. "isAttr": true,
  919. "type": "String"
  920. },
  921. {
  922. "name": "delegateExpression",
  923. "isAttr": true,
  924. "type": "String"
  925. },
  926. {
  927. "name": "event",
  928. "isAttr": true,
  929. "type": "String"
  930. },
  931. {
  932. "name": "script",
  933. "type": "Script"
  934. },
  935. {
  936. "name": "fields",
  937. "type": "Field",
  938. "isMany": true
  939. }
  940. ]
  941. },
  942. {
  943. "name": "FormProperty",
  944. "superClass": [
  945. "Element"
  946. ],
  947. "meta": {
  948. "allowedIn": [
  949. "bpmn:StartEvent",
  950. "bpmn:UserTask"
  951. ]
  952. },
  953. "properties": [
  954. {
  955. "name": "id",
  956. "type": "String",
  957. "isAttr": true
  958. },
  959. {
  960. "name": "name",
  961. "type": "String",
  962. "isAttr": true
  963. },
  964. {
  965. "name": "type",
  966. "type": "String",
  967. "isAttr": true
  968. },
  969. {
  970. "name": "required",
  971. "type": "String",
  972. "isAttr": true
  973. },
  974. {
  975. "name": "readable",
  976. "type": "String",
  977. "isAttr": true
  978. },
  979. {
  980. "name": "writable",
  981. "type": "String",
  982. "isAttr": true
  983. },
  984. {
  985. "name": "variable",
  986. "type": "String",
  987. "isAttr": true
  988. },
  989. {
  990. "name": "expression",
  991. "type": "String",
  992. "isAttr": true
  993. },
  994. {
  995. "name": "datePattern",
  996. "type": "String",
  997. "isAttr": true
  998. },
  999. {
  1000. "name": "default",
  1001. "type": "String",
  1002. "isAttr": true
  1003. },
  1004. {
  1005. "name": "values",
  1006. "type": "Value",
  1007. "isMany": true
  1008. }
  1009. ]
  1010. },
  1011. {
  1012. "name": "FormProperty",
  1013. "superClass": [
  1014. "Element"
  1015. ],
  1016. "properties": [
  1017. {
  1018. "name": "id",
  1019. "type": "String",
  1020. "isAttr": true
  1021. },
  1022. {
  1023. "name": "label",
  1024. "type": "String",
  1025. "isAttr": true
  1026. },
  1027. {
  1028. "name": "type",
  1029. "type": "String",
  1030. "isAttr": true
  1031. },
  1032. {
  1033. "name": "datePattern",
  1034. "type": "String",
  1035. "isAttr": true
  1036. },
  1037. {
  1038. "name": "defaultValue",
  1039. "type": "String",
  1040. "isAttr": true
  1041. },
  1042. {
  1043. "name": "properties",
  1044. "type": "Properties"
  1045. },
  1046. {
  1047. "name": "validation",
  1048. "type": "Validation"
  1049. },
  1050. {
  1051. "name": "values",
  1052. "type": "Value",
  1053. "isMany": true
  1054. }
  1055. ]
  1056. },
  1057. {
  1058. "name": "Validation",
  1059. "superClass": [
  1060. "Element"
  1061. ],
  1062. "properties": [
  1063. {
  1064. "name": "constraints",
  1065. "type": "Constraint",
  1066. "isMany": true
  1067. }
  1068. ]
  1069. },
  1070. {
  1071. "name": "Constraint",
  1072. "superClass": [
  1073. "Element"
  1074. ],
  1075. "properties": [
  1076. {
  1077. "name": "name",
  1078. "type": "String",
  1079. "isAttr": true
  1080. },
  1081. {
  1082. "name": "config",
  1083. "type": "String",
  1084. "isAttr": true
  1085. }
  1086. ]
  1087. },
  1088. {
  1089. "name": "ConditionalEventDefinition",
  1090. "isAbstract": true,
  1091. "extends": [
  1092. "bpmn:ConditionalEventDefinition"
  1093. ],
  1094. "properties": [
  1095. {
  1096. "name": "variableName",
  1097. "isAttr": true,
  1098. "type": "String"
  1099. },
  1100. {
  1101. "name": "variableEvent",
  1102. "isAttr": true,
  1103. "type": "String"
  1104. }
  1105. ]
  1106. }
  1107. ],
  1108. "emumerations": []
  1109. }