Voxco · Schema

CreateQuestionsBatchRequest

Request with inforamtion for creating multiple questions via one API call (batch operation)

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questions array Array of questions to create
View JSON Schema on GitHub

JSON Schema

CreateQuestionsBatchRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateQuestionsBatchRequest",
  "type": "object",
  "properties": {
    "questions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreateQuestionRequest"
      },
      "description": "Array of questions to create",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Request with inforamtion for creating multiple questions via one API call (batch operation)"
}