Voxco · Schema

PostResponsesBatchResponse

Response contains information about newly created 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 to create
View JSON Schema on GitHub

JSON Schema

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