Extension element list attribute

Hello !

I have an extension for my custom task.
I have registered some simple attributes.
But now i need an attribute with a value of list of another type.

It’s look like this:

<bpmn:serviceTask>
  <bpmn:extensionElements>

    <-- whats done: -->
    <myNS:myTask
       stringValue="some"
       otherStringValue="how">

       <-- what i need to do: -->
       <listValue>
         <dictionaryValue 
           code="some-code"
           value="some-value"/>

         <dictionaryValue 
           code="some-other-code"
           value="some-other-value"/>
       </listValue>

    </myNS:myTask>
  </bpmn:extensionElements>
</bpmn:serviceTask>

Is this real to do ? :slight_smile:

I’m not sure what the question is. Is it related to any Camunda tooling or is it about the BPMN specification? If the latter: Yes, that is valid BPMN XML.