{ "$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" } } }