Voxco · Schema

TranslateQuestionRequest

Request to translate specified question

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questionKey integer Key of question to translate
targetLanguageCode string Code of target language
View JSON Schema on GitHub

JSON Schema

TranslateQuestionRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TranslateQuestionRequest",
  "required": [
    "questionKey",
    "targetLanguageCode"
  ],
  "type": "object",
  "properties": {
    "questionKey": {
      "type": "integer",
      "description": "Key of question to translate",
      "format": "int32"
    },
    "targetLanguageCode": {
      "minLength": 1,
      "type": "string",
      "description": "Code of target language"
    }
  },
  "additionalProperties": false,
  "description": "Request to translate specified question"
}