{ "$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" ] } } }