Unified.to · Schema

CrmTelephone

IntegrationsUnified API

Properties

Name Type Description
telephone string
type string
View JSON Schema on GitHub

JSON Schema

unified-to-crmtelephone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CrmTelephone",
  "title": "CrmTelephone",
  "properties": {
    "telephone": {
      "type": "string"
    },
    "type": {
      "enum": [
        "WORK",
        "HOME",
        "OTHER",
        "FAX",
        "MOBILE"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "telephone"
  ],
  "type": "object"
}