Geoposition

A geographic position (Geoposition class)

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
coordinate object
civicAddress object Civic address (if available)
venueData object Venue information (if available)
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-geoposition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Geoposition",
  "title": "Geoposition",
  "type": "object",
  "description": "A geographic position (Geoposition class)",
  "properties": {
    "coordinate": {
      "$ref": "#/components/schemas/Geocoordinate"
    },
    "civicAddress": {
      "type": "object",
      "properties": {
        "city": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "postalCode": {
          "type": "string"
        }
      },
      "description": "Civic address (if available)"
    },
    "venueData": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "level": {
          "type": "string"
        }
      },
      "description": "Venue information (if available)"
    }
  },
  "required": [
    "coordinate"
  ]
}