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