Voxco · Schema

FailedQuestionIdBatch

Record contains information about failed questins in batch operation and reason/error message why it failed.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
id string ID of failed question
errorMessage string Error message
View JSON Schema on GitHub

JSON Schema

FailedQuestionIdBatch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FailedQuestionIdBatch",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of failed question",
      "nullable": true
    },
    "errorMessage": {
      "type": "string",
      "description": "Error message",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Record contains information about failed questins in batch operation and reason/error message why it failed."
}