Bunq · Schema

ActivityMapPlacePublicRead

Banking

Properties

Name Type Description
name string The name of the place.
public_uuid string The public uuid of the place.
geolocation object The geolocation of this place.
address object The address of this place.
phone_number string The phone number of this place.
url_merchant string The URL to this place's merchant website.
url_google_maps string The URL to the place's Google maps location.
all_attachment_photo array The attachments for the place's photos.
all_type array The google types of the place.
all_opening_period array The opening periods of the place.
number_of_recommendation_total integer The total number of recommendations.
View JSON Schema on GitHub

JSON Schema

bunq-activitymapplacepublicread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActivityMapPlacePublicRead",
  "title": "ActivityMapPlacePublicRead",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the place.",
      "readOnly": true,
      "writeOnly": false
    },
    "public_uuid": {
      "type": "string",
      "description": "The public uuid of the place.",
      "readOnly": true,
      "writeOnly": false
    },
    "geolocation": {
      "type": "object",
      "description": "The geolocation of this place.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Geolocation"
    },
    "address": {
      "type": "object",
      "description": "The address of this place.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Address"
    },
    "phone_number": {
      "type": "string",
      "description": "The phone number of this place.",
      "readOnly": true,
      "writeOnly": false
    },
    "url_merchant": {
      "type": "string",
      "description": "The URL to this place's merchant website.",
      "readOnly": true,
      "writeOnly": false
    },
    "url_google_maps": {
      "type": "string",
      "description": "The URL to the place's Google maps location.",
      "readOnly": true,
      "writeOnly": false
    },
    "all_attachment_photo": {
      "type": "array",
      "description": "The attachments for the place's photos.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/AttachmentPublic"
      }
    },
    "all_type": {
      "type": "array",
      "description": "The google types of the place.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "type": "string"
      }
    },
    "all_opening_period": {
      "type": "array",
      "description": "The opening periods of the place.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "type": "string"
      }
    },
    "number_of_recommendation_total": {
      "type": "integer",
      "description": "The total number of recommendations.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}