Properties
| Name | Type | Description |
|---|---|---|
| latitude | integer | The latitude for a geolocation restriction. |
| longitude | integer | The longitude for a geolocation restriction. |
| altitude | integer | The altitude for a geolocation restriction. |
| radius | integer | The radius for a geolocation restriction. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Geolocation",
"title": "Geolocation",
"type": "object",
"properties": {
"latitude": {
"type": "integer",
"description": "The latitude for a geolocation restriction.",
"readOnly": false,
"writeOnly": false
},
"longitude": {
"type": "integer",
"description": "The longitude for a geolocation restriction.",
"readOnly": false,
"writeOnly": false
},
"altitude": {
"type": "integer",
"description": "The altitude for a geolocation restriction.",
"readOnly": false,
"writeOnly": false
},
"radius": {
"type": "integer",
"description": "The radius for a geolocation restriction.",
"readOnly": false,
"writeOnly": false
}
}
}