Voxco · Schema

Company

A company

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
key integer Identifying key for the Company. This key will not change for the lifetime of the Company.
id string The id of the Company. This id is unique among Companies, but may be changed by the user.
View JSON Schema on GitHub

JSON Schema

Company.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Company",
  "required": [
    "id",
    "key"
  ],
  "type": "object",
  "properties": {
    "key": {
      "type": "integer",
      "description": "Identifying key for the Company.\r\n\r\nThis key will not change for the lifetime of the Company.",
      "format": "int32"
    },
    "id": {
      "minLength": 1,
      "type": "string",
      "description": "The id of the Company.\r\n  \r\nThis id is unique among Companies, but may be changed by the user."
    }
  },
  "additionalProperties": false,
  "description": "A company"
}