{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CommerceLocation", "title": "CommerceLocation", "properties": { "address": { "$ref": "#/components/schemas/property_CommerceLocation_address" }, "categories": { "$ref": "#/components/schemas/property_CommerceLocation_categories" }, "created_at": { "format": "date-time", "type": "string" }, "currency": { "type": "string" }, "description": { "type": "string" }, "id": { "type": "string" }, "image_url": { "type": "string" }, "is_active": { "type": "boolean" }, "language_locale": { "type": "string" }, "latitude": { "type": "number" }, "location_type": { "enum": [ "RESTAURANT", "SALON", "WAREHOUSE", "STORE", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "longitude": { "type": "number" }, "media": { "$ref": "#/components/schemas/property_CommerceLocation_media" }, "name": { "type": "string" }, "parent_id": { "type": "string" }, "price_level": { "type": "string" }, "rating": { "type": "number" }, "raw": { "additionalProperties": true, "type": "object" }, "review_count": { "type": "number" }, "telephones": { "$ref": "#/components/schemas/property_CommerceLocation_telephones" }, "updated_at": { "format": "date-time", "type": "string" }, "web_url": { "type": "string" } }, "required": [ "name" ], "type": "object" }