{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/SetupAgentsServeResult",
  "definitions": {
    "SetupAgentsServeResult": {
      "type": "object",
      "properties": {
        "port": {
          "type": "number"
        },
        "hostname": {
          "type": "string"
        },
        "cwd": {
          "type": "string"
        },
        "version": {
          "type": "string"
        }
      },
      "required": ["port", "hostname", "cwd", "version"],
      "additionalProperties": false
    }
  }
}
