camunda.json 22 KB

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