Voxco · Schema

User

Information about a user.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
key integer The key for this user. The key for a user cannot be changed, and will always identify that user in the account.
id string The user's logon id. This value is unique by case-insensitive comparison across all users in the account. However, this value may be changed by an administrator of the account.
View JSON Schema on GitHub

JSON Schema

User.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "User",
  "required": [
    "id",
    "key"
  ],
  "type": "object",
  "properties": {
    "key": {
      "type": "integer",
      "description": "The key for this user.  The key for a user cannot be changed, and will always identify that user in the account.",
      "format": "int32"
    },
    "id": {
      "minLength": 1,
      "type": "string",
      "description": "The user's logon id.  This value is unique by case-insensitive comparison across all users in the account.  However, this value may be changed by an administrator of the account."
    }
  },
  "additionalProperties": false,
  "description": "Information about a user."
}