Voxco · Schema

DeleteCodebookCodesRequest

Request contains an array of code keys to delete from codebook

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
codeKeys array Array of keys of codes in the specified codebook to delete
uncodeResponses boolean Delete codes from responses as well when it is true
View JSON Schema on GitHub

JSON Schema

DeleteCodebookCodesRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DeleteCodebookCodesRequest",
  "type": "object",
  "properties": {
    "codeKeys": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "description": "Array of keys of codes in the specified codebook to delete",
      "nullable": true
    },
    "uncodeResponses": {
      "type": "boolean",
      "description": "Delete codes from responses as well when it is true"
    }
  },
  "additionalProperties": false,
  "description": "Request contains an array of code keys to delete from codebook"
}