Voxco · Schema

NaturalLanguage

A natural language supported by this API.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
code string The language code, used to specify the language in API operations.
name string The name of the language suitable for display to the user.
View JSON Schema on GitHub

JSON Schema

NaturalLanguage.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NaturalLanguage",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The language code, used to specify the language in API operations.",
      "nullable": true
    },
    "name": {
      "type": "string",
      "description": "The name of the language suitable for display to the user.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "A natural language supported by this API."
}