yesamer opened a new issue, #1411:
URL: https://github.com/apache/incubator-kie-issues/issues/1411
Using `informationRequirement` and `knowledgeRequirement` can refer to
internal and external nodes using the `href` attribute.
Please notice the case of internal nodes above:
```
<informationRequirement>
<requiredDecision href="_decision_001"/>
</informationRequirement>
<informationRequirement>
<requiredInput href="_input_001"/>
</informationRequirement>
<knowledgeRequirement>
<requiredKnowledge href="_bkm_001"/>
</knowledgeRequirement>
```
This case is currently working as expected.
The spec `12.3.2 References within the DMN XSD` states that is it possible
to refer to external nodes using the following syntax:
```
<informationRequirement>
<requiredDecision
href="http://www.montera.com.au/spec/DMN/0091-local-hrefs#_decision_001"/>
</informationRequirement>
<informationRequirement>
<requiredInput
href="http://www.montera.com.au/spec/DMN/0091-local-hrefs#_input_001"/>
</informationRequirement>
<knowledgeRequirement>
<requiredKnowledge
href="http://www.montera.com.au/spec/DMN/0091-local-hrefs#_bkm_001"/>
</knowledgeRequirement>
```
This case is currently NOT working
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]