Flipdish · Schema

GoogleAddressResult

GoogleAddressResult schema from Flipdish API - Stores.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Address_components array
Formatted_address string
Geometry object
Place_id string
Types array
View JSON Schema on GitHub

JSON Schema

stores-google-address-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-google-address-result-schema.json",
  "title": "GoogleAddressResult",
  "description": "GoogleAddressResult schema from Flipdish API - Stores.",
  "type": "object",
  "properties": {
    "Address_components": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GoogleAddressComponent"
      },
      "example": []
    },
    "Formatted_address": {
      "type": "string",
      "example": "string"
    },
    "Geometry": {
      "$ref": "#/components/schemas/GoogleGeometry"
    },
    "Place_id": {
      "type": "string",
      "example": "500123"
    },
    "Types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "string"
      ]
    }
  }
}