Affinity · Schema

Tenant

CRMRelationship IntelligencePrivate EquityVenture CapitalContactsOrganizationsOpportunitiesDeal Management

Properties

Name Type Description
id integer The tenant's unique identifier
name string The name of the tenant
subdomain string The tenant's subdomain under affinity.co
View JSON Schema on GitHub

JSON Schema

affinity-tenant-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Tenant",
  "type": "object",
  "properties": {
    "id": {
      "description": "The tenant's unique identifier",
      "type": "integer",
      "format": "int64",
      "minimum": 1,
      "maximum": 9007199254740991,
      "examples": [
        1
      ]
    },
    "name": {
      "description": "The name of the tenant",
      "type": "string",
      "examples": [
        "Contoso Ltd."
      ]
    },
    "subdomain": {
      "description": "The tenant's subdomain under affinity.co",
      "type": "string",
      "format": "hostname",
      "examples": [
        "contoso"
      ]
    }
  },
  "required": [
    "id",
    "name",
    "subdomain"
  ],
  "additionalProperties": false,
  "examples": [
    {
      "name": "Contoso Ltd.",
      "subdomain": "contoso",
      "id": 1
    }
  ]
}