{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Auto List (request)",
  "description": "Retrieve the list of automated trading runs for the current account",
  "type": "object",
  "auth_required": 1,
  "auth_scopes": ["trade"],
  "additionalProperties": false,
  "required": ["auto_list"],
  "properties": {
    "auto_list": {
      "description": "Must be `1`",
      "type": "integer",
      "enum": [1]
    },
    "passthrough": {
      "description": "[Optional] Used to pass data through the websocket, which may be retrieved via the `echo_req` output field.",
      "type": "object"
    },
    "req_id": {
      "description": "[Optional] Used to map request to response.",
      "type": "integer"
    }
  }
}
