Microsoft Graph · Schema
geoLocation
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| city | string | |
| countryName | string | |
| latitude | object | |
| longitude | object | |
| state | string | |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.security.geoLocation",
"title": "geoLocation",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"city": {
"type": "string",
"nullable": true
},
"countryName": {
"type": "string",
"nullable": true
},
"latitude": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
]
},
"longitude": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
]
},
"state": {
"type": "string",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}