Voxco · Schema

AddedResponseBatchResult

Class contains information about newly created responses for target questions

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
questionKey integer Key of target question
questionId string Id of target question
addedResponses array Responses
View JSON Schema on GitHub

JSON Schema

AddedResponseBatchResult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddedResponseBatchResult",
  "required": [
    "addedResponses",
    "questionId",
    "questionKey"
  ],
  "type": "object",
  "properties": {
    "questionKey": {
      "type": "integer",
      "description": "Key of target question",
      "format": "int32"
    },
    "questionId": {
      "type": "string",
      "description": "Id of target question",
      "nullable": true
    },
    "addedResponses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PostResponseBatch"
      },
      "description": "Responses",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Class contains information about newly created responses for target questions"
}