Voxco · Schema

GetCompaniesResponse

Response contains list of available companies

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
companies array List of Companies
View JSON Schema on GitHub

JSON Schema

GetCompaniesResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GetCompaniesResponse",
  "required": [
    "companies"
  ],
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "companies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Company"
      },
      "description": "List of Companies"
    }
  },
  "additionalProperties": false,
  "description": "Response contains list of available companies"
}