@wmfs/tymly
Version:
A framework for building and sharing workflows in Node.js
25 lines (24 loc) • 409 B
JSON
{
"Comment": "Delete a dog.",
"StartAt": "DeletingAlfie",
"version": "1.0",
"States": {
"DeletingAlfie": {
"Type": "Task",
"Resource": "module:deletingById",
"InputPath": "$.dog",
"ResourceConfig": {
"modelId": "dog"
},
"End": true
}
},
"restrictions": [
{
"roleId": "$authenticated",
"allows": [
"*"
]
}
]
}