addedInput schema / properties / category
Added value: +{
+ "description": "Filter by exact category value (e.g. 'caribbean_restaurant'). Use list_categories to discover valid values — there are 1,000+, not a small fixed set.",
+ "type": "string"
+}
changedInput schema / properties / entity_type / description
Previous value: -"Filter by type of place"New value: +"Filter by broad type of place"
changedInput schema / properties / limit / description
Previous value: -"Max results, 1-25 (default 10)"New value: +"Max results, 1-50 (default 10)"
removedInput schema / properties / min_rating
Removed value: -{
- "description": "Minimum average rating 1-5",
- "type": "number"
-}
addedInput schema / properties / near_lat
Added value: +{
+ "description": "Latitude to search near (pair with near_lng)",
+ "type": "number"
+}
addedInput schema / properties / near_lng
Added value: +{
+ "description": "Longitude to search near (pair with near_lat)",
+ "type": "number"
+}
addedInput schema / properties / offset
Added value: +{
+ "description": "Skip this many matching results (for paging past the limit)",
+ "type": "number"
+}
addedInput schema / properties / radius_km
Added value: +{
+ "description": "Search radius in km around near_lat/near_lng (default 25, max 500)",
+ "type": "number"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "type": "number"
+ },
+ "places": {
+ "items": {
+ "properties": {
+ "avg_rating": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "category": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "city": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "distance_km": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "is_sponsored": {
+ "type": "boolean"
+ },
+ "is_verified": {
+ "type": "boolean"
+ },
+ "listing_type": {
+ "enum": [
+ "curated",
+ "directory"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "price_tier": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "review_count": {
+ "type": "number"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "summary": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "places"
+ ],
+ "type": "object"
+}