bpmn-js-properties-panel
Version:
A simple properties panel for bpmn-js
33 lines • 723 B
JSON
{
"name": "WS Caller Task",
"id": "com.mycompany.WsCaller",
"appliesTo": [
"bpmn:Task"
],
"properties": [
{
"type": "Hidden",
"value": "${ wsCaller.exec() }",
"binding": {
"type": "property",
"name": "camunda:expression"
}
},
{
"label": "Web Service URL",
"description": "Specify the url of the web service to talk to",
"type": "String",
"binding": {
"type": "camunda:property",
"name": "webServiceUrl"
},
"constraints": {
"notEmpty": true,
"pattern": {
"value": "https://.*",
"message": "Must be https URL"
}
}
}
]
}