{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/SetupAgentsSyncResult",
  "definitions": {
    "SetupAgentsSyncResult": {
      "type": "object",
      "properties": {
        "pushed": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "pulled": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "conflicts": {
          "type": "number"
        },
        "gistId": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "dryRun": {
          "type": "boolean"
        },
        "cwd": {
          "type": "string"
        }
      },
      "required": ["dryRun", "cwd"],
      "additionalProperties": false
    }
  }
}
