Voxco · Schema

NonGenerativeAIOptions

Non-generative AI options

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
splitCharacters string Set of characters for splitting on words
splitWords array Set of short-words for splitting
responsesAreAllEnglish boolean True if all responses in English, otherwise false
View JSON Schema on GitHub

JSON Schema

NonGenerativeAIOptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NonGenerativeAIOptions",
  "type": "object",
  "properties": {
    "splitCharacters": {
      "type": "string",
      "description": "Set of characters for splitting on words",
      "nullable": true
    },
    "splitWords": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Set of short-words for splitting",
      "nullable": true
    },
    "responsesAreAllEnglish": {
      "type": "boolean",
      "description": "True if all responses in English, otherwise false"
    }
  },
  "additionalProperties": false,
  "description": "Non-generative AI options"
}