Voxco · Schema

GetStudiesResponse

Information about the requested Studies.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
studies array A list of Studies.
View JSON Schema on GitHub

JSON Schema

GetStudiesResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GetStudiesResponse",
  "required": [
    "studies"
  ],
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "studies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Study"
      },
      "description": "A list of Studies."
    }
  },
  "additionalProperties": false,
  "description": "Information about the requested Studies."
}