Unified.to · Schema

ScimPhoneNumber

IntegrationsUnified API

Properties

Name Type Description
display string
primary boolean
type string
value string
View JSON Schema on GitHub

JSON Schema

unified-to-scimphonenumber-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimPhoneNumber",
  "title": "ScimPhoneNumber",
  "properties": {
    "display": {
      "type": "string"
    },
    "primary": {
      "type": "boolean"
    },
    "type": {
      "enum": [
        "work",
        "home",
        "other",
        "mobile",
        "fax",
        "pager"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "value": {
      "type": "string"
    }
  },
  "type": "object"
}