Custom properties in Element template for service task Field Injections

Hi,

it should work very similar to the possible configuration of input/output parameters in a template. So the template could look like that:

{
"label": "Type in name",
"type": "String",
"editable": true,
"binding": {
	"type": "camunda:field",
	"name": "fieldName"
},
"constraints": {
	...
}
},...

and the outcoming XML would look like that:

... 
<bpmn:extensionElements>
    ....
    <camunda:field name="fieldName">
       <camunda:string>typed in value</camunda:string>
    </camunda:field>
    ...
</bpmn:extensionElements>
...

Like the custom input/output defined fields on the task, that field should be displayed in the general tab of the task in the section custom fields.

Hope that had it make more clear.

Thanks

Alexander