Voxco · Schema

ResponseCodeRemoved

Contains information about codes that were uncode from responses

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questionKey integer Key of question
questionId string Id of question
respondentId string Id of respondent
codeKey integer Key of code
codeId string Code Id (output)
View JSON Schema on GitHub

JSON Schema

ResponseCodeRemoved.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ResponseCodeRemoved",
  "required": [
    "codeId",
    "codeKey",
    "questionId",
    "questionKey",
    "respondentId"
  ],
  "type": "object",
  "properties": {
    "questionKey": {
      "type": "integer",
      "description": "Key of question",
      "format": "int32"
    },
    "questionId": {
      "type": "string",
      "description": "Id of question",
      "nullable": true
    },
    "respondentId": {
      "type": "string",
      "description": "Id of respondent",
      "nullable": true
    },
    "codeKey": {
      "type": "integer",
      "description": "Key of code",
      "format": "int32"
    },
    "codeId": {
      "type": "string",
      "description": "Code Id (output)",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Contains information about codes that were uncode from responses"
}