Voxco · Schema

AddCodesIntoCodebooksBatchRequest

Request contains a list of codebooks and their codes to add

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
codebooksAndTheirCodes array A list of codebooks and their codes to add
overwrite boolean Overwrites non-unique codes
View JSON Schema on GitHub

JSON Schema

AddCodesIntoCodebooksBatchRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddCodesIntoCodebooksBatchRequest",
  "type": "object",
  "properties": {
    "codebooksAndTheirCodes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CodebookNewCodes"
      },
      "description": "A list of codebooks and their codes to add",
      "nullable": true
    },
    "overwrite": {
      "type": "boolean",
      "description": "Overwrites non-unique codes"
    }
  },
  "additionalProperties": false,
  "description": "Request contains a list of codebooks and their codes to add"
}