Bunq · Schema

Geolocation

Banking

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.
View JSON Schema on GitHub

JSON Schema

bunq-geolocation-schema.json Raw ↑
{
  "$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
    }
  }
}