Microsoft Graph · Schema

phone

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
language string
number string The phone number.
region string
type object The type of phone number. The possible values are: home, business, mobile, other, assistant, homeFax, businessFax, otherFax, pager, radio.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphphone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.phone",
  "title": "phone",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "language": {
      "type": "string",
      "nullable": true
    },
    "number": {
      "type": "string",
      "description": "The phone number.",
      "nullable": true
    },
    "region": {
      "type": "string",
      "nullable": true
    },
    "type": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.phoneType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The type of phone number. The possible values are: home, business, mobile, other, assistant, homeFax, businessFax, otherFax, pager, radio."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}