Microsoft Graph · Schema
geoCoordinates
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| altitude | object | Optional. The altitude (height), in feet, above sea level for the item. Read-only. |
| latitude | object | Optional. The latitude, in decimal, for the item. Read-only. |
| longitude | object | Optional. The longitude, in decimal, for the item. Read-only. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.geoCoordinates",
"title": "geoCoordinates",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"altitude": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "Optional. The altitude (height), in feet, above sea level for the item. Read-only."
},
"latitude": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "Optional. The latitude, in decimal, for the item. Read-only."
},
"longitude": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "Optional. The longitude, in decimal, for the item. Read-only."
},
"@odata.type": {
"type": "string"
}
}
}