OutlookGeoCoordinates

The geographic coordinates and elevation of a location.

CloudCollaborationEnterpriseMicrosoftProductivity

Properties

Name Type Description
latitude number
longitude number
accuracy number
altitude number
altitudeAccuracy number
View JSON Schema on GitHub

JSON Schema

microsoft-office-365-outlookgeocoordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OutlookGeoCoordinates",
  "title": "OutlookGeoCoordinates",
  "type": "object",
  "description": "The geographic coordinates and elevation of a location.",
  "properties": {
    "latitude": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "longitude": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "accuracy": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "altitude": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "altitudeAccuracy": {
      "type": "number",
      "format": "double",
      "example": 42.5
    }
  }
}