Voxco · Schema

PostQuestionResponses

Question's responses to post

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questionKey integer Key of target question
responses array Responses
View JSON Schema on GitHub

JSON Schema

PostQuestionResponses.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PostQuestionResponses",
  "required": [
    "questionKey",
    "responses"
  ],
  "type": "object",
  "properties": {
    "questionKey": {
      "type": "integer",
      "description": "Key of target question",
      "format": "int32"
    },
    "responses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PostResponseBatch"
      },
      "description": "Responses"
    }
  },
  "additionalProperties": false,
  "description": "Question's responses to post"
}