CMMN 1.1 RTF Avatar
  1. OMG Issue

CR — Typo in the xsd: in Task we have inputs and outputs instead of input and output

  • Key: CR-120
  • Status: closed  
  • Source: Trisotech ( Mr. Denis Gagne)
  • Summary:

    Task, as Case and Process, holds a list of input and a list of output. For Case an Process, input and output is used for every entry while Task use inputs and outputs, which is wrong.

  • Reported: CMMN 1.0 — Wed, 16 Sep 2015 13:25 GMT
  • Disposition: Resolved — CMMN 1.1
  • Disposition Summary:

    Remove "s" to input/output of tTask in the XSD

    1. In tTask complex type change

    <xsd:element name="inputs" type="tCaseParameter" minOccurs="0" maxOccurs="unbounded" /> 
    <xsd:element name="outputs" type="tCaseParameter" minOccurs="0" maxOccurs="unbounded" /> 
    

    to

    <xsd:element name="input" type="tCaseParameter" minOccurs="0" maxOccurs="unbounded" /> 
    <xsd:element name="output" type="tCaseParameter" minOccurs="0" maxOccurs="unbounded" /> 
    
  • Updated: Tue, 29 Mar 2016 15:06 GMT