{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ToolRequestUserInputResponse",
  "description": "EXPERIMENTAL. Response payload mapping question ids to answers.",
  "type": "object",
  "required": [
    "answers"
  ],
  "properties": {
    "answers": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/definitions/ToolRequestUserInputAnswer"
      }
    }
  },
  "definitions": {
    "ToolRequestUserInputAnswer": {
      "description": "EXPERIMENTAL. Captures a user's answer to a request_user_input question.",
      "type": "object",
      "required": [
        "answers"
      ],
      "properties": {
        "answers": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    }
  }
}