Voxco · Schema

DeleteStudyRespondentFailure

Represents a failure to delete a study respondent

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
respondentID string ID of the respondent that failed to be deleted
errorMessage string Error message describing why the deletion failed
View JSON Schema on GitHub

JSON Schema

DeleteStudyRespondentFailure.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DeleteStudyRespondentFailure",
  "type": "object",
  "properties": {
    "respondentID": {
      "type": "string",
      "description": "ID of the respondent that failed to be deleted",
      "nullable": true
    },
    "errorMessage": {
      "type": "string",
      "description": "Error message describing why the deletion failed",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Represents a failure to delete a study respondent"
}