Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of contents

Table of Contents

Example Decision Requirements Graph

Image Added

XML representation

In the example decision requirements graph (DRG), the decision was made on the amount of a monthly installment. When storing this decision in the trace engine, an XML representation of that decision is generated. The XML document contains the entire DRG from the image shown above. All the XML components for a single DRG are placed between the definitions start and end tag.

This document describes how the decision graph is stored in such a way it follows the XSD of the DMN specification.

The goal of storing a decision is that an organization can rebuild a model of the decisions that has been made by the runtime. By rebuilding the decisions with the values organization have insight how decisions are made. The meta model for the exchange of decisions according to the DMN specifications prescribes that each decision, each, Business knowledge model and each input is a separate DMN element. So for each type a description will be given here how the information will be stored. 

More information on the specification of the meta model and the XSD can be found here: http://www.omg.org/spec/DMN/1.0/Beta1/

 

Image Removed

Description of all the parts of a DRG at runtime

Code Block
themeEclipse
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<Definitions xmlns="http://www.omg.org/spec/DMN/20130901" xmlns:bq="http://www.blueriq.com/dmn/drg" id="DRG_for_Application.RequiredMonthlyInstallment" namespace="http://www.blueriq.com/dmn">
   <Decision id="decision1" name="Application.RequiredMonthlyInstallment">
      <bq:value>284.219374515558</bq:value>
      <bq:instanceId>2e479125instanceId>e2575ae5-32c2e344-47c846bd-bf3188b5-7ea245687f6a<f5a98cb76ca8</bq:instanceId>
      <bq:sourceType>Default</bq:sourceType>
      <bq:justificationText justificationTextId="RequiredMonthlyInstallmentCalculation">
		The formula is M = P * (J / (1 - (1 - (1 + J)^ -N)) - F. 
		M: monthly payment. 
		P: principal or amount of loan. 
		J: monthly interest; annual interest divided by 100, then divided by 12. 
		N: number of months of amortization, determined by length in years of loan. 
		F: monthly fee.
	  </bq:justificationText>
      <informationRequirement>
         <InformationItem id="decision1InformationItem0" name="RequestedProduct.Amount" />
         <requiredInput>inputData1</requiredInput>
      </informationRequirement>
      <informationRequirement>
         <InformationItem id="decision1InformationItem1" name="Control.MonthlyInterest" />
         <requiredDecision>decision2</requiredDecision>
      </informationRequirement>
      <informationRequirement>
         <InformationItem id="decision1InformationItem2" name="RequestedProduct.Term" />
         <requiredInput>inputData3</requiredInput>
      </informationRequirement>
      <informationRequirement>
         <InformationItem id="decision1InformationItem3" name="RequestedProduct.MonthlyFee" />
         <requiredDecision>decision3</requiredDecision>
      </informationRequirement>
      <knowledgeRequirement>
         <requiredKnowledge>businessKnowledgeModel3</requiredKnowledge>
      </knowledgeRequirement>
   </Decision>
   <Decision id="decision2" name="Control.MonthlyInterest">
      <bq:value>0.0050</bq:value>
      <bq:instanceId>3ccfa67einstanceId>7e72ae81-686d34a8-47244c52-b9ac8538-c04068716586<0e09549ab3fe</bq:instanceId>
      <bq:sourceType>Default</bq:sourceType>
      <informationRequirement>
         <InformationItem id="decision2InformationItem0" name="RequestedProduct.Rate" />
         <requiredInput>inputData2</requiredInput>
      </informationRequirement>
      <knowledgeRequirement>
         <requiredKnowledge>businessKnowledgeModel1</requiredKnowledge>
      </knowledgeRequirement>
   </Decision>
   <Decision id="decision3" name="RequestedProduct.MonthlyFee">
      <bq:value>20.0</bq:value>
      <bq:instanceId>100ba8bfinstanceId>e7b51f3c-25a70181-48de42b9-8f2594f3-6508bd090941<dd6fc05ddae3</bq:instanceId>
      <bq:sourceType>System</bq:sourceType>
      <informationRequirement>
         <InformationItem id="decision3InformationItem0" name="RequestedProduct.ProductType" />
         <requiredInput>inputData4</requiredInput>
      </informationRequirement>
      <knowledgeRequirement>
         <requiredKnowledge>businessKnowledgeModel2</requiredKnowledge>
      </knowledgeRequirement>
   </Decision>
   <InputData id="inputData1" name="RequestedProduct.Amount">
      <bq:value>10000.0</bq:value>
      <bq:instanceId>100ba8bfinstanceId>e7b51f3c-25a70181-48de42b9-8f2594f3-6508bd090941<dd6fc05ddae3</bq:instanceId>
      <bq:sourceType>User</bq:sourceType>
   </InputData>
   <InputData id="inputData2" name="RequestedProduct.Rate">
      <bq:value>6.0</bq:value>
      <bq:instanceId>100ba8bfinstanceId>e7b51f3c-25a70181-48de42b9-8f2594f3-6508bd090941<dd6fc05ddae3</bq:instanceId>
      <bq:sourceType>User</bq:sourceType>
   </InputData>
   <InputData id="inputData3" name="RequestedProduct.Term">
      <bq:value>36.0</bq:value>
      <bq:instanceId>100ba8bfinstanceId>e7b51f3c-25a70181-48de42b9-8f2594f3-6508bd090941<dd6fc05ddae3</bq:instanceId>
      <bq:sourceType>User</bq:sourceType>
   </InputData>
   <InputData id="inputData4" name="RequestedProduct.ProductType">
      <bq:value>Standard loan</bq:value>
      <bq:instanceId>100ba8bfinstanceId>e7b51f3c-25a70181-48de42b9-8f2594f3-6508bd090941<dd6fc05ddae3</bq:instanceId>
      <bq:sourceType>User</bq:sourceType>
   </InputData>
   <BusinessKnowledgeModel id="businessKnowledgeModel1" name="Control.MonthlyInterest-default-expression" />
   <BusinessKnowledgeModel id="businessKnowledgeModel2" name="MonthlyFeeDecisionTableMonthlyFee" />
   <BusinessKnowledgeModel id="businessKnowledgeModel3" name="Application.RequiredMonthlyInstallment-default-expression" />
</Definitions>

XML representation of the decision requirements graph shown above.The XML document contains the entire decision requirements graph (DRG) from the image shown above.
All the XML components for a single DRG are placed between the definitions start and end tag.

Decision

Between the decision tags, the DRG components are placed to identify and determine the decision.
The attribute name attribute of the decision refers to an [entity.attributewhere ] that was subject to a decision had to be made for.
The id attribute uniquely indentifies identifies the decision in the entire diagram.
Inside the decision other default and custom XML components are included. The custom components can be indentified identified by the bq prefix.
The value element contains the value after determination of the decisondecision.
To determine a decision, information is needed. To accomplish this, "informationRequirement" tags are included inside a decision.
The "informationRequirement" These tags point on their way forth to input data ("inputData") or other decisions ("decision").

For determining a decision, logic is needed. This logic can come from different sources, for example a decision table, bussiness business rule, default rule etc.
To indicate which logic is used to determine the decision, a "knowledgeRequirement" tag is placed inside the decision.
For Take for example the entity attribute " RequiredMonthlyInstallment where are a DRG is made for, it uses a default rule ("A rule that is linked to this attribute and evaluated each time a underlying component changes.").
BusinessKnowledeModel
InputData

 

Image Removed

The metamodel of a DMN element

 

In the XSD the model will be stored by using three types of DRG elements, the InformationRequirement (a reference to input and decisions) and the KnowledgeRequirement (a reference to a BusinessKnowledgeModel)

Decision

A DRG element of the type decision will consist of the parts described underneath

 DMNElement attributes and model associations

...

XSD Attribute

...

Description

...

name: String [0..1]

...

The name of this element.

...

The string that identifies this DMNElement uniquely within its containing Definitions element.

...

 

 

Decision attributes and model associations

Attribute

Description

Data from runtimeRequired

informationRequirement:

InformationRequirement [*]

This attribute lists the instances of

InformationRequirement that compose this Decision.

Reference to all the InformationRequirements used as to make the decision (Informationrequirement is a reference to an input or another decision)No

knowledgeRequirement:

KnowledgeRequirement [*]

This attribute lists the instances of

KnowledgeRequirement that compose this Decision.

Reference to the knowledge requirement used to make the decision

(Knowledge requirement contains a reference to the logic element used to set the value)

No

 

Custom part for Blueriq

AttributeDescriptionRequired
Value: 1 : 1The value for the decisionYes
Sourcetype 1: 1the sourcetype for the decision (User, System, Constant , etc)Yes
Justification 1 : 1The justification for the resultNo

 

InputData

A DRG element of the type decision will consist of the parts described underneath

 DMNElement attributes and model associations

...

Attribute

...

Description

...

name: String [0..1]

...

The name of this element.

...

.

When an attribute contains a justification text, it will also be displayed inside the DRG graph and the XML variant. In XML this text is displayed between the JustificationText start and end tags inside a decision.

Business knowledge model

Inside the name attribute of the BusinessKnowledeModel the name of a logic component, such as a decision table, default rule, business rule is placed.

Input data  

...

The string that identifies this DMNElement uniquely within its containing Definitions element.

...

 

InputData attributes and model associations

Attribute

Description

Data from runtimeRequired

 

Custom part for a Blueriq

AttributeDescriptionRequired
Value: 1 : 1The value for the decisionYes
Sourcetype 1: 1the sourcetype for the decision (User, System, Constant , etc)Yes

BusinessKnowledgeModel

 

 DMNElement attributes and model associations

...

Attribute

...

Description

...

name: String [0..1]

...

The name of this element.

...

Technical name used logic element

(expression for default expression

Constant fro constant)

...

The string that identifies this DMNElement uniquely within its containing Definitions element.

...

 

BusinessKnowledgeModel attributes and model associations

Attribute

Description

Data from runtimeRequired

 

InformationRequirement

DMNElement attributes and model associations

...

Attribute

...

Description

...

name: String [0..1]

...

The name of this element.

...

The string that identifies this DMNElement uniquely within its containing Definitions element.

...

 

InformationRequirement attributes and model associations

Attribute

Description

Data from runtimeRequired

requiredDecision: Decision [0..1]

The instance of Decision that this

InformationRequirement associates with its containing Decision element.

ID of a DRGelement containing a decisionNo

requiredInput: InputData [0..1]

The instance of InputData that this

InformationRequirement associates with its containing Decision element.

ID of a DRGelement conatining an InputNo

 

KnowledgeRequirement

DMNElement attributes and model associations

...

Attribute

...

Description

...

name: String [0..1]

...

The name of this element.

...

The string that identifies this DMNElement uniquely within its containing Definitions element.

...

 

KnowledgeRequirement attributes and model associations

...

Attribute

...

Description

...

requiredKnowledge:

BusinessKnowledgeModel

...

The instance of BusinessKnowledgeModel that this KnowledgeRequirement associates with its its containing Decision or

BusinessKnowledgeModel element.

...

The data that is set by the user is placed inside the InputData element tags.