PhysicalAddress

Represents the street address of a resource such as a contact or event.

CloudCollaborationEnterpriseMicrosoftProductivity

Properties

Name Type Description
street string
city string
state string
countryOrRegion string
postalCode string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-physical-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PhysicalAddress",
  "type": "object",
  "description": "Represents the street address of a resource such as a contact or event.",
  "properties": {
    "street": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "countryOrRegion": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    }
  }
}