Voxco · Schema

UpdateQuestionsBatchResponse

Response contains information about failed questions i.e. questions that could not be updated be some error/reason.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
failedQuestions array Failed questions
newQuestions array Newly created questions
View JSON Schema on GitHub

JSON Schema

UpdateQuestionsBatchResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdateQuestionsBatchResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "failedQuestions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FailedQuestionKeyBatch"
      },
      "description": "Failed questions",
      "nullable": true
    },
    "newQuestions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreateQuestionResponse"
      },
      "description": "Newly created questions",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Response contains information about failed questions i.e. questions that could not be updated be some error/reason."
}