Voxco · Schema

PutQuestionResponses

Question's responses to put

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

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