activiti.json 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151
  1. {
  2. "name": "Activiti",
  3. "uri": "http://activiti.org/bpmn",
  4. "prefix": "activiti",
  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. "activiti: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": "activiti: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. "activiti: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. "activiti: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. "activiti: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. "activiti: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. "activiti:ServiceTaskLike",
  761. "activiti:ExecutionListener",
  762. "activiti:TaskListener",
  763. "activiti:EventListener"
  764. ]
  765. },
  766. "properties": [
  767. {
  768. "name": "name",
  769. "isAttr": true,
  770. "type": "String"
  771. },
  772. {
  773. "name": "expression",
  774. "type": "String"
  775. },
  776. {
  777. "name": "stringValue",
  778. "isAttr": true,
  779. "type": "String"
  780. },
  781. {
  782. "name": "string",
  783. "type": "String"
  784. }
  785. ]
  786. },
  787. {
  788. "name": "InputParameter",
  789. "superClass": [
  790. "InputOutputParameter"
  791. ]
  792. },
  793. {
  794. "name": "OutputParameter",
  795. "superClass": [
  796. "InputOutputParameter"
  797. ]
  798. },
  799. {
  800. "name": "Collectable",
  801. "isAbstract": true,
  802. "extends": [
  803. "bpmn:MultiInstanceLoopCharacteristics"
  804. ],
  805. "superClass": [
  806. "activiti:AsyncCapable"
  807. ],
  808. "properties": [
  809. {
  810. "name": "collection",
  811. "isAttr": true,
  812. "type": "String"
  813. },
  814. {
  815. "name": "elementVariable",
  816. "isAttr": true,
  817. "type": "String"
  818. }
  819. ]
  820. },
  821. {
  822. "name": "FailedJobRetryTimeCycle",
  823. "superClass": [
  824. "Element"
  825. ],
  826. "meta": {
  827. "allowedIn": [
  828. "activiti:AsyncCapable",
  829. "bpmn:MultiInstanceLoopCharacteristics"
  830. ]
  831. },
  832. "properties": [
  833. {
  834. "name": "body",
  835. "isBody": true,
  836. "type": "String"
  837. }
  838. ]
  839. },
  840. {
  841. "name": "ExecutionListener",
  842. "superClass": [
  843. "Element"
  844. ],
  845. "meta": {
  846. "allowedIn": [
  847. "bpmn:Task",
  848. "bpmn:ServiceTask",
  849. "bpmn:UserTask",
  850. "bpmn:BusinessRuleTask",
  851. "bpmn:ScriptTask",
  852. "bpmn:ReceiveTask",
  853. "bpmn:ManualTask",
  854. "bpmn:ExclusiveGateway",
  855. "bpmn:SequenceFlow",
  856. "bpmn:ParallelGateway",
  857. "bpmn:InclusiveGateway",
  858. "bpmn:EventBasedGateway",
  859. "bpmn:StartEvent",
  860. "bpmn:IntermediateCatchEvent",
  861. "bpmn:IntermediateThrowEvent",
  862. "bpmn:EndEvent",
  863. "bpmn:BoundaryEvent",
  864. "bpmn:CallActivity",
  865. "bpmn:SubProcess",
  866. "bpmn:Process"
  867. ]
  868. },
  869. "properties": [
  870. {
  871. "name": "expression",
  872. "isAttr": true,
  873. "type": "String"
  874. },
  875. {
  876. "name": "class",
  877. "isAttr": true,
  878. "type": "String"
  879. },
  880. {
  881. "name": "delegateExpression",
  882. "isAttr": true,
  883. "type": "String"
  884. },
  885. {
  886. "name": "event",
  887. "isAttr": true,
  888. "type": "String"
  889. },
  890. {
  891. "name": "script",
  892. "type": "Script"
  893. },
  894. {
  895. "name": "fields",
  896. "type": "Field",
  897. "isMany": true
  898. }
  899. ]
  900. },
  901. {
  902. "name": "TaskListener",
  903. "superClass": [
  904. "Element"
  905. ],
  906. "meta": {
  907. "allowedIn": [
  908. "bpmn:UserTask"
  909. ]
  910. },
  911. "properties": [
  912. {
  913. "name": "expression",
  914. "isAttr": true,
  915. "type": "String"
  916. },
  917. {
  918. "name": "class",
  919. "isAttr": true,
  920. "type": "String"
  921. },
  922. {
  923. "name": "delegateExpression",
  924. "isAttr": true,
  925. "type": "String"
  926. },
  927. {
  928. "name": "event",
  929. "isAttr": true,
  930. "type": "String"
  931. },
  932. {
  933. "name": "script",
  934. "type": "Script"
  935. },
  936. {
  937. "name": "fields",
  938. "type": "Field",
  939. "isMany": true
  940. }
  941. ]
  942. },{
  943. "name": "EventListener",
  944. "superClass": [
  945. "Element"
  946. ],
  947. "meta": {
  948. "allowedIn": [
  949. "bpmn:UserTask"
  950. ]
  951. },
  952. "properties": [
  953. {
  954. "name": "expression",
  955. "isAttr": true,
  956. "type": "String"
  957. },
  958. {
  959. "name": "class",
  960. "isAttr": true,
  961. "type": "String"
  962. },
  963. {
  964. "name": "delegateExpression",
  965. "isAttr": true,
  966. "type": "String"
  967. },
  968. {
  969. "name": "event",
  970. "isAttr": true,
  971. "type": "String"
  972. },
  973. {
  974. "name": "script",
  975. "type": "Script"
  976. },
  977. {
  978. "name": "fields",
  979. "type": "Field",
  980. "isMany": true
  981. }
  982. ]
  983. },
  984. {
  985. "name": "FormProperty",
  986. "superClass": [
  987. "Element"
  988. ],
  989. "meta": {
  990. "allowedIn": [
  991. "bpmn:StartEvent",
  992. "bpmn:UserTask"
  993. ]
  994. },
  995. "properties": [
  996. {
  997. "name": "id",
  998. "type": "String",
  999. "isAttr": true
  1000. },
  1001. {
  1002. "name": "name",
  1003. "type": "String",
  1004. "isAttr": true
  1005. },
  1006. {
  1007. "name": "type",
  1008. "type": "String",
  1009. "isAttr": true
  1010. },
  1011. {
  1012. "name": "required",
  1013. "type": "String",
  1014. "isAttr": true
  1015. },
  1016. {
  1017. "name": "readable",
  1018. "type": "String",
  1019. "isAttr": true
  1020. },
  1021. {
  1022. "name": "writable",
  1023. "type": "String",
  1024. "isAttr": true
  1025. },
  1026. {
  1027. "name": "variable",
  1028. "type": "String",
  1029. "isAttr": true
  1030. },
  1031. {
  1032. "name": "expression",
  1033. "type": "String",
  1034. "isAttr": true
  1035. },
  1036. {
  1037. "name": "datePattern",
  1038. "type": "String",
  1039. "isAttr": true
  1040. },
  1041. {
  1042. "name": "default",
  1043. "type": "String",
  1044. "isAttr": true
  1045. },
  1046. {
  1047. "name": "values",
  1048. "type": "Value",
  1049. "isMany": true
  1050. }
  1051. ]
  1052. },
  1053. {
  1054. "name": "FormProperty",
  1055. "superClass": [
  1056. "Element"
  1057. ],
  1058. "properties": [
  1059. {
  1060. "name": "id",
  1061. "type": "String",
  1062. "isAttr": true
  1063. },
  1064. {
  1065. "name": "label",
  1066. "type": "String",
  1067. "isAttr": true
  1068. },
  1069. {
  1070. "name": "type",
  1071. "type": "String",
  1072. "isAttr": true
  1073. },
  1074. {
  1075. "name": "datePattern",
  1076. "type": "String",
  1077. "isAttr": true
  1078. },
  1079. {
  1080. "name": "defaultValue",
  1081. "type": "String",
  1082. "isAttr": true
  1083. },
  1084. {
  1085. "name": "properties",
  1086. "type": "Properties"
  1087. },
  1088. {
  1089. "name": "validation",
  1090. "type": "Validation"
  1091. },
  1092. {
  1093. "name": "values",
  1094. "type": "Value",
  1095. "isMany": true
  1096. }
  1097. ]
  1098. },
  1099. {
  1100. "name": "Validation",
  1101. "superClass": [
  1102. "Element"
  1103. ],
  1104. "properties": [
  1105. {
  1106. "name": "constraints",
  1107. "type": "Constraint",
  1108. "isMany": true
  1109. }
  1110. ]
  1111. },
  1112. {
  1113. "name": "Constraint",
  1114. "superClass": [
  1115. "Element"
  1116. ],
  1117. "properties": [
  1118. {
  1119. "name": "name",
  1120. "type": "String",
  1121. "isAttr": true
  1122. },
  1123. {
  1124. "name": "config",
  1125. "type": "String",
  1126. "isAttr": true
  1127. }
  1128. ]
  1129. },
  1130. {
  1131. "name": "ConditionalEventDefinition",
  1132. "isAbstract": true,
  1133. "extends": [
  1134. "bpmn:ConditionalEventDefinition"
  1135. ],
  1136. "properties": [
  1137. {
  1138. "name": "variableName",
  1139. "isAttr": true,
  1140. "type": "String"
  1141. },
  1142. {
  1143. "name": "variableEvent",
  1144. "isAttr": true,
  1145. "type": "String"
  1146. }
  1147. ]
  1148. }
  1149. ],
  1150. "emumerations": []
  1151. }