Voxco · Schema

AICoderAnalyzeGetCodebooksResponse

Contains list of available codebooks for using in further interaction with the API

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
codebooks array List of available codebooks to use
View JSON Schema on GitHub

JSON Schema

AICoderAnalyzeGetCodebooksResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AICoderAnalyzeGetCodebooksResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "codebooks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CodebookItem"
      },
      "description": "List of available codebooks to use",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Contains list of available codebooks for using in further interaction with the API"
}