{
  "StartAt": "FG",
  "States": {
    "FG": {
      "Type": "Parallel",
      "End": true,
      "Branches": [
        {
          "StartAt": "Wait",
          "States": {
            "Wait": {
              "Type": "Wait",
              "Seconds": 1,
              "Next": "F"
            },
            "F": {
              "Type": "Task",
              "Resource": "module:f",
              "End": true
            }
          }
        },
        {
          "StartAt": "G",
          "States": {
            "G": {
              "Type": "Task",
              "Resource": "module:g",
              "End": true
            }
          }
        }
      ]
    }
  }
}