Microsoft Exchange · Schema
Location
Represents location information for an event
CalendarCollaborationContactsEmailEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | The name associated with the location |
| locationType | string | The type of location |
| locationUri | string | URI representing the location |
| locationEmailAddress | string | Email address of the location |
| address | object | |
| coordinates | object | |
| uniqueId | string | An internal identifier for the location |
| uniqueIdType | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Location",
"title": "Location",
"type": "object",
"description": "Represents location information for an event",
"properties": {
"displayName": {
"type": "string",
"description": "The name associated with the location"
},
"locationType": {
"type": "string",
"enum": [
"default",
"conferenceRoom",
"homeAddress",
"businessAddress",
"geoCoordinates",
"streetAddress",
"hotel",
"restaurant",
"localBusiness",
"postalAddress"
],
"description": "The type of location"
},
"locationUri": {
"type": "string",
"description": "URI representing the location"
},
"locationEmailAddress": {
"type": "string",
"description": "Email address of the location"
},
"address": {
"$ref": "#/components/schemas/PhysicalAddress"
},
"coordinates": {
"$ref": "#/components/schemas/OutlookGeoCoordinates"
},
"uniqueId": {
"type": "string",
"description": "An internal identifier for the location"
},
"uniqueIdType": {
"type": "string",
"enum": [
"unknown",
"locationStore",
"directory",
"private",
"bing"
]
}
}
}