Voxco · Schema

CreateNewCompanyRequest

Request to create a new Company

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
id string The id for the new Company, which must be unique among all Companies by case insensitive comparison. The id provided will be trimmed of leading and trailing whitespace. The trimmed value must be from
View JSON Schema on GitHub

JSON Schema

CreateNewCompanyRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateNewCompanyRequest",
  "required": [
    "id"
  ],
  "type": "object",
  "properties": {
    "id": {
      "maxLength": 100,
      "minLength": 1,
      "type": "string",
      "description": "The id for the new Company, which must be unique among all Companies by case insensitive comparison.\r\n\r\nThe id provided will be trimmed of leading and trailing whitespace.\r\n  \r\nThe trimmed value must be from 1 to 100 characters in length and may not start with an underscore character '_'."
    }
  },
  "additionalProperties": false,
  "description": "Request to create a new Company"
}