{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/SetupAgentsDecisionRenderResult",
  "definitions": {
    "SetupAgentsDecisionRenderResult": {
      "type": "object",
      "properties": {
        "written": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "path": {
                "type": "string"
              }
            },
            "required": ["id", "path"],
            "additionalProperties": false
          }
        },
        "dir": {
          "type": "string"
        },
        "cwd": {
          "type": "string"
        }
      },
      "required": ["written", "dir", "cwd"],
      "additionalProperties": false
    }
  }
}
