Voxco · Schema

CreateQuestionsBatchResponse

Response contains information about newly created study questions

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
studyKey integer Key of study
questions array Array of questions
failedQuestions array Array of failed questions
View JSON Schema on GitHub

JSON Schema

CreateQuestionsBatchResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateQuestionsBatchResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "studyKey": {
      "type": "integer",
      "description": "Key of study",
      "format": "int32"
    },
    "questions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreateQuestionResponse"
      },
      "description": "Array of questions",
      "nullable": true
    },
    "failedQuestions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FailedQuestionIdBatch"
      },
      "description": "Array of failed questions",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Response contains information about newly created study questions"
}