-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related to bpmn-io/dmn-js#500
- Loading branch information
Showing
6 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "bpmn.io DI for DMN", | ||
"uri": "http://bpmn.io/schema/dmn/biodi/2.0", | ||
"prefix": "biodi", | ||
"xml": { | ||
"tagAlias": "lowerCase" | ||
}, | ||
"types": [ | ||
{ | ||
"name": "DecisionTable", | ||
"isAbstract": true, | ||
"extends": [ | ||
"dmn:DecisionTable" | ||
], | ||
"properties": [ | ||
{ | ||
"name": "annotationsWidth", | ||
"isAttr": true, | ||
"type": "Integer" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "OutputClause", | ||
"isAbstract": true, | ||
"extends": [ | ||
"dmn:OutputClause" | ||
], | ||
"properties": [ | ||
{ | ||
"name": "width", | ||
"isAttr": true, | ||
"type": "Integer" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "InputClause", | ||
"isAbstract": true, | ||
"extends": [ | ||
"dmn:InputClause" | ||
], | ||
"properties": [ | ||
{ | ||
"name": "width", | ||
"isAttr": true, | ||
"type": "Integer" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<definitions xmlns="https://www.omg.org/spec/DMN/20191111/MODEL/" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/2.0" id="Definitions" name="DRD" namespace="http://camunda.org/schema/1.0/dmn" exporter="Camunda Modeler" exporterVersion="4.1.0-dev.20200702"> | ||
<decision id="Decision" name="Decision"> | ||
<decisionTable id="DecisionTable_046av0s" biodi:annotationsWidth="200"> | ||
<input id="InputClause" biodi:width="150"> | ||
<inputExpression id="LiteralExpression_17mnp7i" typeRef="string"> | ||
<text></text> | ||
</inputExpression> | ||
</input> | ||
<output id="Output" typeRef="string" biodi:width="150" /> | ||
</decisionTable> | ||
</decision> | ||
</definitions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters