{
  "Comment": "An example form-filling state machine",
  "StartAt": "Hello",
  "States": {
    "Hello": {
      "Type": "Task",
      "Resource": "module:hello",
      "Next": "FormFilling"
    },
    "FormFilling": {
      "Type": "Task",
      "Resource": "module:formFilling",
      "Next": "World"
    },
    "World": {
      "Type": "Task",
      "Resource": "module:world",
      "End": true
    }
  }
}