Voxco · Schema

PostResponsesBatchRequest

Request with information for creating multiple responses via one API call (batch operation)

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questionResponses array Array of questions with their responses to create
View JSON Schema on GitHub

JSON Schema

PostResponsesBatchRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PostResponsesBatchRequest",
  "required": [
    "questionResponses"
  ],
  "type": "object",
  "properties": {
    "questionResponses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PostQuestionResponses"
      },
      "description": "Array of questions with their responses to create"
    }
  },
  "additionalProperties": false,
  "description": "Request with information for creating multiple responses via one API call (batch operation)"
}