Voxco · Schema

PutResponsesBatchRequest

Request with inforamtion for updating 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 update
allowEmptyStrings boolean When it is true it allows setting empty string as value for verbatim/translation/transcription/notes fields. Otherwise empty string is ignored (i.e. it works like null value). By default it is false.
View JSON Schema on GitHub

JSON Schema

PutResponsesBatchRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PutResponsesBatchRequest",
  "required": [
    "questionResponses"
  ],
  "type": "object",
  "properties": {
    "questionResponses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PutQuestionResponses"
      },
      "description": "Array of questions with their responses to update"
    },
    "allowEmptyStrings": {
      "type": "boolean",
      "description": "When it is true it allows setting empty string as value for verbatim/translation/transcription/notes fields. \r\nOtherwise empty string is ignored (i.e. it works like null value). By default it is false."
    }
  },
  "additionalProperties": false,
  "description": "Request with inforamtion for updating multiple responses via one API call (batch operation)"
}