removedInput schema / properties / address
Removed value: -{
- "description": "Address filter",
- "type": "string"
-}
changedInput schema / properties / category / description
Previous value: -"Restrict results to one property type"New value: +"Restrict to one category"
changedInput schema / properties / category / enum
Previous value: -[
- "hotels",
- "attractions",
- "restaurants",
- "geos"
-]New value: +[
+ "RESTAURANT",
+ "ATTRACTION",
+ "HOTEL"
+]
addedInput schema / properties / country_code
Added value: +{
+ "description": "Alpha-2 country code (e.g. \"US\")",
+ "maxLength": 2,
+ "minLength": 2,
+ "type": "string"
+}
addedInput schema / properties / geo_name
Added value: +{
+ "description": "City, town, or country name to scope the search",
+ "type": "string"
+}
removedInput schema / properties / language
Removed value: -{
- "description": "Result language code (default: en)",
- "type": "string"
-}
removedInput schema / properties / latLong
Removed value: -{
- "description": "Center point to scope the search, e.g. \"42.3455,-71.10767\"",
- "pattern": "^-?\\d+(\\.\\d+)?\\s*,\\s*-?\\d+(\\.\\d+)?$",
- "type": "string"
-}
addedInput schema / properties / locale
Added value: +{
+ "description": "Preferred locales for localized fields, in priority order (e.g. [\"en\",\"es\"])",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / page
Added value: +{
+ "description": "Page index (1-based)",
+ "maximum": 9007199254740991,
+ "minimum": 1,
+ "type": "integer"
+}
removedInput schema / properties / phone
Removed value: -{
- "description": "Phone number filter (spaces/dashes ok, no leading \"+\")",
- "type": "string"
-}
addedInput schema / properties / postal_code
Added value: +{
+ "description": "Postal/ZIP code (takes precedence over geo_name)",
+ "type": "string"
+}
addedInput schema / properties / query
Added value: +{
+ "description": "Text to search location names for",
+ "maxLength": 500,
+ "minLength": 1,
+ "type": "string"
+}
removedInput schema / properties / radius
Removed value: -{
- "description": "Search radius around latLong (must be > 0)",
- "exclusiveMinimum": 0,
- "type": "number"
-}
removedInput schema / properties / radiusUnit
Removed value: -{
- "description": "Unit for radius",
- "enum": [
- "km",
- "mi",
- "m"
- ],
- "type": "string"
-}
removedInput schema / properties / searchQuery
Removed value: -{
- "description": "Text to search location names for",
- "minLength": 1,
- "type": "string"
-}
addedInput schema / properties / size
Added value: +{
+ "description": "Results per page (max 20)",
+ "maximum": 20,
+ "minimum": 1,
+ "type": "integer"
+}
changedInput schema / required
Previous value: -[
- "searchQuery"
-]New value: +[
+ "query"
+]