Quandoo · JSON Structure

Quandoo Public Partner Api Location Dto Structure

LocationDto schema from Quandoo Public Partner API

Type: object Properties: 2
RestaurantReservationsBookingAvailabilityMerchantsMarketplace

LocationDto is a JSON Structure definition published by Quandoo, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

coordinates address

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/quandoo/refs/heads/main/json-structure/quandoo-public-partner-api-location-dto-structure.json",
  "name": "LocationDto",
  "description": "LocationDto schema from Quandoo Public Partner API",
  "type": "object",
  "properties": {
    "coordinates": {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "double"
        },
        "longitude": {
          "type": "double"
        }
      }
    },
    "address": {
      "type": "object",
      "properties": {
        "street": {
          "type": "string"
        },
        "number": {
          "type": "string"
        },
        "zipcode": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "district": {
          "type": "string"
        }
      }
    }
  }
}