Properties
| Name | Type | Description |
|---|---|---|
| address | object | |
| categories | object | |
| created_at | string | |
| currency | string | |
| description | string | |
| id | string | |
| image_url | string | |
| is_active | boolean | |
| language_locale | string | |
| latitude | number | |
| location_type | string | |
| longitude | number | |
| media | object | |
| name | string | |
| parent_id | string | |
| price_level | string | |
| rating | number | |
| raw | object | |
| review_count | number | |
| telephones | object | |
| updated_at | string | |
| web_url | string |
JSON Schema
{
"$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"
}