{
  "Defaults": {
    "Application": "TestApp",
    "SubApplication": "RandomTest",
    "RunAs": "workbench",
    "Host": "localhost"
  },
  "RandomOutcomeFolder": {
    "Type": "Folder",
    "Comment": "A folder with a job that randomly succeeds or fails and triggers webhooks",
    "RandomOutcomeJob": {
      "Type": "Job:Command",
      "Command": "bash -c 'exit $((RANDOM % 2))'",
      "Variables": [
        {
          "\\\\xmatters\\runAs": "%%OWNER"
        },
        {
          "\\\\xmatters\\runId": "%%ORDERID"
        }
      ],
      "Description": "Random success/failure",
      "SuccessAction": {
        "Type": "If",
        "CompletionStatus": "OK",
        "Correction": {
          "Type": "Action:Run",
          "Folder": "Xmatters",
          "Job": "XmJob"
        }
      },
      "FailureAction": {
        "Type": "If",
        "CompletionStatus": "NOTOK",
        "Correction": {
          "Type": "Action:Run",
          "Folder": "Xmatters",
          "Job": "XmJob"
        }
      }
    }
  }
}