Microsoft Exchange · Schema

Phone

A phone number

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
type string The type of phone number
number string The phone number
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-phone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Phone",
  "title": "Phone",
  "type": "object",
  "description": "A phone number",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "home",
        "business",
        "mobile",
        "other",
        "assistant",
        "homeFax",
        "businessFax",
        "otherFax",
        "pager",
        "radio"
      ],
      "description": "The type of phone number"
    },
    "number": {
      "type": "string",
      "description": "The phone number"
    }
  }
}