Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DMN16-130/DMN16-130 Use fixed Namespace URIs and xsi:schemaLocation #33

Draft
wants to merge 9 commits into
base: 1.6-ballot05
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -19,40 +17,40 @@ jobs:
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "./examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "./examples/Chapter 11 Example 1 Originations/Financial.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "examples/Diagram Interchange/diagram-interchange-decision-service.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "examples/Diagram Interchange/diagram-interchange-decision-with-listed-input-data.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "examples/Diagram Interchange/diagram-interchange-dish-example.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
- uses: ChristophWurst/xmllint-action@v1.2
with:
xml-file: "examples/Diagram Interchange/diagram-interchange-shape-with-label-text.dmn"
xml-schema-file: ./xsd/DMN15.xsd
xml-schema-file: ./xsd/DMN.xsd
if: always()
62 changes: 62 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"xml.catalogs": [
"xsd/catalog.xml"
],
"xml.filePathSupport.mappings": [
// see: https://github.com/redhat-developer/vscode-xml/blob/main/docs/Features/XMLFilePathSupport.md
{
"pattern": "**/*.dmn",
"expressions": [
{
"xpath": "import/@locationURI"
}
]
}
],
"xml.references": [
// see: https://github.com/redhat-developer/vscode-xml/blob/main/docs/Features/XMLReferencesFeatures.md
{
"pattern": "**/*.dmn",
"expressions": [
{
"from": "itemComponent/typeRef/text()",
"to": "itemDefinition/@name"
},
{
"from": "@dmnElementRef",
"to": "@id"
},
{
"from": "@href",
"prefix": "#",
"to": "@id"
},
{
"from": "DMNEdge/@sourceElement",
"to": "DMNShape/@id"
},
{
"from": "DMNEdge/@targetElement",
"to": "DMNShape/@id"
}
]
},
{
"pattern": "**/*.xmi",
"expressions": [
{
"from": "@idref",
"to": "@id"
},
{
"from": "@type",
"to": "@id"
},
{
"from": "@element",
"to": "@id"
}
]
}
]
}
15 changes: 13 additions & 2 deletions examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<semantic:definitions xmlns:semantic="https://www.omg.org/spec/DMN/20230324/MODEL/" xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/" xmlns:include1="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" xmlns:drools="http://www.drools.org/kie/dmn/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rss="http://purl.org/rss/2.0/" xmlns:trisofeed="http://trisotech.com/feed" xmlns:trisodmn="http://www.trisotech.com/2016/triso/dmn" xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/" xmlns:triso="http://www.trisotech.com/2015/triso/modeling" xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" xmlns:feel="https://www.omg.org/spec/DMN/20230324/FEEL/" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase" xmlns="http://www.trisotech.com/definitions/_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4" id="_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4" name="Chapter 11 Example" namespace="http://www.trisotech.com/definitions/_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4" exporter="DMN Modeler" exporterVersion="6.2.2.1" triso:logoChoice="None">
<semantic:definitions xmlns:semantic="https://www.omg.org/spec/DMN/" xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/" xmlns:include1="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" xmlns:drools="http://www.drools.org/kie/dmn/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rss="http://purl.org/rss/2.0/" xmlns:trisofeed="http://trisotech.com/feed" xmlns:trisodmn="http://www.trisotech.com/2016/triso/dmn" xmlns:dmndi="https://www.omg.org/spec/DMN/DI/" xmlns:triso="http://www.trisotech.com/2015/triso/modeling" xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" xmlns:feel="https://www.omg.org/spec/DMN/20240513/FEEL/" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase" xmlns="http://www.trisotech.com/definitions/_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4" id="_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4" name="Chapter 11 Example" namespace="http://www.trisotech.com/definitions/_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4" exporter="DMN Modeler" exporterVersion="6.2.2.1" triso:logoChoice="None"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">

<semantic:description/>
<semantic:extensionElements>
<triso:ProjectCharter>
Expand All @@ -7,7 +18,7 @@
<triso:projectStakeholders/>
</triso:ProjectCharter>
</semantic:extensionElements>
<semantic:import namespace="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" name="Financial" triso:fileId="eyJmIjp7InNrdSI6IjU1ZTFkZDA5LTdjYTUtNGUyMC04NzI1LWVlOTI5NzI2OTZkYiIsIm5hbWUiOiJGaW5hbmNpYWwifSwiciI6eyJhcGlrZXkiOiIyOTIwMDNmNjk4NDBlNzEyIn19" triso:fileName="Chapter 11 Example/Financial" importType="https://www.omg.org/spec/DMN/20230324/MODEL/" drools:modelName="Financial"/>
<semantic:import namespace="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" name="Financial" triso:fileId="eyJmIjp7InNrdSI6IjU1ZTFkZDA5LTdjYTUtNGUyMC04NzI1LWVlOTI5NzI2OTZkYiIsIm5hbWUiOiJGaW5hbmNpYWwifSwiciI6eyJhcGlrZXkiOiIyOTIwMDNmNjk4NDBlNzEyIn19" triso:fileName="Chapter 11 Example/Financial" importType="https://www.omg.org/spec/DMN/" drools:modelName="Financial"/>
<semantic:itemDefinition isCollection="false" name="tStrategy" label="tStrategy">
<semantic:typeRef>string</semantic:typeRef>
<semantic:allowedValues triso:constraintsType="enumeration">
Expand Down
12 changes: 11 additions & 1 deletion examples/Chapter 11 Example 1 Originations/Financial.dmn
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<semantic:definitions xmlns:semantic="https://www.omg.org/spec/DMN/20230324/MODEL/" xmlns:rss="http://purl.org/rss/2.0/" xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/" xmlns:trisofeed="http://trisotech.com/feed" xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/" xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" xmlns:triso="http://www.trisotech.com/2015/triso/modeling" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:feel="https://www.omg.org/spec/DMN/20230324/FEEL/" xmlns:trisodmn="http://www.trisotech.com/2016/triso/dmn" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase" xmlns:drools="http://www.drools.org/kie/dmn/1.1" xmlns="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" id="_5e8e877a-af87-434b-9c36-ed51c8d6b514" name="Financial" namespace="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" exporter="DMN Modeler" exporterVersion="6.2.2.1" triso:logoChoice="None">
<semantic:definitions xmlns:semantic="https://www.omg.org/spec/DMN/" xmlns:rss="http://purl.org/rss/2.0/" xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/" xmlns:trisofeed="http://trisotech.com/feed" xmlns:dmndi="https://www.omg.org/spec/DMN/DI/" xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" xmlns:triso="http://www.trisotech.com/2015/triso/modeling" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:feel="https://www.omg.org/spec/DMN/20240513/FEEL/" xmlns:trisodmn="http://www.trisotech.com/2016/triso/dmn" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase" xmlns:drools="http://www.drools.org/kie/dmn/1.1" xmlns="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" id="_5e8e877a-af87-434b-9c36-ed51c8d6b514" name="Financial" namespace="http://www.trisotech.com/definitions/_5e8e877a-af87-434b-9c36-ed51c8d6b514" exporter="DMN Modeler" exporterVersion="6.2.2.1" triso:logoChoice="None"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">
<semantic:decisionService id="_5e8e877a-af87-434b-9c36-ed51c8d6b514_DS" name="Whole Model Decision Service" triso:dynamicDecisionService="true">
<semantic:variable name="Whole Model Decision Service" id="_7510044d-9f94-4b5a-a172-bb5412031a86" typeRef="Any"/>
</semantic:decisionService>
Expand Down
15 changes: 13 additions & 2 deletions examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<semantic:definitions id="_5c8b9296-96cf-4898-bba5-3a2d21d34eed" name="Loan info" namespace="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed" exporter="DMN Modeler" exporterVersion="6.2.2.3" xmlns:semantic="https://www.omg.org/spec/DMN/20230324/MODEL/" xmlns="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed">
<semantic:definitions id="_5c8b9296-96cf-4898-bba5-3a2d21d34eed" name="Loan info" namespace="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed" exporter="DMN Modeler" exporterVersion="6.2.2.3" xmlns:semantic="https://www.omg.org/spec/DMN/" xmlns="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">
<semantic:itemDefinition name="tBorrower" label="tBorrower">
<semantic:itemComponent id="_b7dcc14d-510d-4628-a510-ca774208e501" name="Full Name">
<semantic:typeRef>string</semantic:typeRef>
Expand Down Expand Up @@ -640,7 +651,7 @@
<semantic:inputData href="#_e0cfe605-3068-42a2-946f-c7db3774de1e"/>
<semantic:inputData href="#_d78ee6d5-96ed-43e6-89d2-123e0f388a67"/>
</semantic:decisionService>
<dmndi:DMNDI xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/">
<dmndi:DMNDI xmlns:dmndi="https://www.omg.org/spec/DMN/DI/">
<dmndi:DMNDiagram id="_0b101bf8-a9c5-4e7c-8763-c8fcb4263a32" name="Page 1">
<di:extension xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/"/>
<dmndi:Size height="1054.996529420125" width="1803.949344176753"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<semantic:definitions id="_736fa164-03d8-429f-8318-4913a548c3a6" name="Recommended Loan Products" namespace="http://www.trisotech.com/definitions/_736fa164-03d8-429f-8318-4913a548c3a6" exporter="DMN Modeler" exporterVersion="6.2.3" xmlns:semantic="https://www.omg.org/spec/DMN/20230324/MODEL/" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:include1="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed" xmlns="http://www.trisotech.com/definitions/_736fa164-03d8-429f-8318-4913a548c3a6">
<semantic:import namespace="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed" name="Services" importType="https://www.omg.org/spec/DMN/20230324/MODEL/"/>
<semantic:definitions id="_736fa164-03d8-429f-8318-4913a548c3a6" name="Recommended Loan Products" namespace="http://www.trisotech.com/definitions/_736fa164-03d8-429f-8318-4913a548c3a6" exporter="DMN Modeler" exporterVersion="6.2.3" xmlns:semantic="https://www.omg.org/spec/DMN/" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:include1="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed" xmlns="http://www.trisotech.com/definitions/_736fa164-03d8-429f-8318-4913a548c3a6"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">
<semantic:import namespace="http://www.trisotech.com/definitions/_5c8b9296-96cf-4898-bba5-3a2d21d34eed" name="Services" importType="https://www.omg.org/spec/DMN/"/>
<semantic:itemDefinition name="tBorrower" label="tBorrower">
<semantic:itemComponent id="_b7dcc14d-510d-4628-a510-ca774208e501" name="Full Name">
<semantic:typeRef>string</semantic:typeRef>
Expand Down Expand Up @@ -1171,7 +1181,7 @@ and To be paid off=true].Balance[item!=null])</semantic:text>
</semantic:context>
</semantic:encapsulatedLogic>
</semantic:businessKnowledgeModel>
<dmndi:DMNDI xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/">
<dmndi:DMNDI xmlns:dmndi="https://www.omg.org/spec/DMN/DI/">
<dmndi:DMNDiagram id="_0b101bf8-a9c5-4e7c-8763-c8fcb4263a32" name="Page 1">
<di:extension xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/"/>
<dmndi:Size height="1050" width="1550.4755458831787"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@
id="Definitions_DecisionService"
name="Decision Service"
namespace="http://www.omg.org/spec/DMN/20180521/diagram-interchange-decision-service/"
xmlns="https://www.omg.org/spec/DMN/20230324/MODEL/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/"
xmlns="https://www.omg.org/spec/DMN/"
xmlns:dmndi="https://www.omg.org/spec/DMN/DI/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/"
xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">
<decisionService id="DecisionService_1" name="Decision Service 1">
</decisionService>
<dmndi:DMNDI>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@
id="Definitions_0v8cooh"
name="Decision with Listed Input data"
namespace="http://www.omg.org/spec/DMN/20180521/diagram-interchange-decision-with-listed-input-data/"
xmlns="https://www.omg.org/spec/DMN/20230324/MODEL/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/"
xmlns="https://www.omg.org/spec/DMN/"
xmlns:dmndi="https://www.omg.org/spec/DMN/DI/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/"
xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">
<decision id="Decision_1" name="Decision">
<informationRequirement>
<requiredInput href="#InputData_1" />
Expand Down
18 changes: 14 additions & 4 deletions examples/Diagram Interchange/diagram-interchange-dish-example.dmn
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions id="dish-decisions" name="Dish Decisions"
namespace="http://www.omg.org/spec/DMN/20180521/dish-example/"
xmlns="https://www.omg.org/spec/DMN/20230324/MODEL/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/"
xmlns="https://www.omg.org/spec/DMN/"
xmlns:dmndi="https://www.omg.org/spec/DMN/DI/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/"
xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">

<inputData name="Type of day" id="dayType_id">
<variable typeRef="string" name="Type of day" id="dayType_ii"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@
id="definitions_0v8cooh"
name="Decision"
namespace="http://www.omg.org/spec/DMN/20180521/diagram-interchange-shape-with-label-text/"
xmlns="https://www.omg.org/spec/DMN/20230324/MODEL/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dmndi="https://www.omg.org/spec/DMN/20230324/DMNDI/"
xmlns="https://www.omg.org/spec/DMN/"
xmlns:dmndi="https://www.omg.org/spec/DMN/DI/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/"
xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/"
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
https://www.omg.org/spec/DMN/
https://www.omg.org/spec/DMN/20240513/DMN.xsd
https://www.omg.org/spec/DMN/DI/
https://www.omg.org/spec/DMN/20240513/DMNDI.xsd
http://www.omg.org/spec/DMN/20180521/DI/
https://www.omg.org/spec/DMN/20180521/DI.xsd
http://www.omg.org/spec/DMN/20180521/DC/
https://www.omg.org/spec/DMN/20180521/DC.xsd
">
<decision id="Decision_1" name="Decision 1"/>
<dmndi:DMNDI>
<dmndi:DMNDiagram id="DRD1">
Expand Down
Loading