Microsoft Exchange · Schema

PhysicalAddress

Physical street address

CalendarCollaborationContactsEmailEnterprise

Properties

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

JSON Schema

microsoft-exchange-physicaladdress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhysicalAddress",
  "title": "PhysicalAddress",
  "type": "object",
  "description": "Physical street address",
  "properties": {
    "street": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "countryOrRegion": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    }
  }
}