@wmfs/tymly
Version:
A framework for building and sharing workflows in Node.js
26 lines (25 loc) • 455 B
JSON
{
"Comment": "Find a dog by id.",
"StartAt": "FindingDonald",
"version": "1.0",
"States": {
"FindingDonald": {
"Type": "Task",
"InputPath": "$.dog",
"Resource": "module:findingById",
"ResourceConfig": {
"modelId": "dog"
},
"ResultPath": "$.dogDocFromStorage",
"End": true
}
},
"restrictions": [
{
"roleId": "$authenticated",
"allows": [
"*"
]
}
]
}