Voxco · Schema

GetResponsesResponse

The response of a query to the Responses resource.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
responses array The requested responses in the Question.
View JSON Schema on GitHub

JSON Schema

GetResponsesResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GetResponsesResponse",
  "required": [
    "responses"
  ],
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "responses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExistingResponse"
      },
      "description": "The requested responses in the Question."
    }
  },
  "additionalProperties": false,
  "description": "The response of a query to the Responses resource."
}