Voxco · Schema

DeleteQuestionResponses

Question respondents to delete.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questionKey integer Key of question
respondentIDs array Array of respondent ids to delete from the question
View JSON Schema on GitHub

JSON Schema

DeleteQuestionResponses.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DeleteQuestionResponses",
  "type": "object",
  "properties": {
    "questionKey": {
      "type": "integer",
      "description": "Key of question",
      "format": "int32"
    },
    "respondentIDs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of respondent ids to delete from the question",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Question respondents to delete."
}