Voxco · Schema

PutResponsesBatchResponse

Response contains information about updated responses in target study questions

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
questionResponses array Array of questions with their responses which were added/updated
View JSON Schema on GitHub

JSON Schema

PutResponsesBatchResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PutResponsesBatchResponse",
  "required": [
    "questionResponses"
  ],
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "questionResponses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PutResponsesBatchResult"
      },
      "description": "Array of questions with their responses which were added/updated"
    }
  },
  "additionalProperties": false,
  "description": "Response contains information about updated responses in target study questions"
}