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