Microsoft Graph · Schema

physicalAddress

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
city string The city.
countryOrRegion string The country or region. It's a free-format string value, for example, 'United States'.
postalCode string The postal code.
state string The state.
street string The street.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphphysicaladdress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.physicalAddress",
  "title": "physicalAddress",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "The city.",
      "nullable": true
    },
    "countryOrRegion": {
      "type": "string",
      "description": "The country or region. It's a free-format string value, for example, 'United States'.",
      "nullable": true
    },
    "postalCode": {
      "type": "string",
      "description": "The postal code.",
      "nullable": true
    },
    "state": {
      "type": "string",
      "description": "The state.",
      "nullable": true
    },
    "street": {
      "type": "string",
      "description": "The street.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}