Skip to main content
Glama
brave

Brave Search MCP Server

Official
by brave

brave_place_search

brave_place_search

Searches for local businesses, cities, addresses, and streets using Brave's Place Search API. Provide coordinates or location to retrieve structured data like hours, ratings, and contact info.

Instructions

Searches Brave's Place Search API. A single call may populate any combination of 'results' (POIs), 'cities', 'addresses', 'streets', and 'location' (the resolved search area), depending on the query's shape.

When to use:
    - POIs near coordinates or a named area (e.g. "coffee shops in Paris") -> 'results', each with structured business data (postal address, hours, contact, ratings, photos, categories, timezone).
    - Browsing general POIs (omit 'query'; supply 'latitude'+'longitude' or 'location').
    - Disambiguating a bare city name (e.g. "springfield") -> 'cities'.
    - Resolving a specific address (e.g. "350 5th avenue" with NYC coords) -> 'addresses' (often plus 'streets').
    - Looking up a street by name (e.g. "michigan avenue" with Chicago coords) -> 'streets'.

Inputs:
    - Anchor the search via 'latitude'+'longitude' or 'location' (or both). With neither, 'query' is required.
    - 'addresses' / 'streets' only surface when the query is address-/street-shaped AND geographically anchored.
    - 'location' format: US -- '<city> <state> <country>' (e.g. 'san francisco ca united states'); non-US -- '<city> <country>' (e.g. 'tokyo japan'). Capitalization and commas don't matter.
    - 'count' caps results (max 50, default 20). 'radius' (meters) biases toward closer results; it does NOT hard-limit the search area.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoNumber of results to return. Maximum is 50. Default is 20.
queryNoQuery string. Shape influences the response: POI-like queries -> `results`; bare/ambiguous city names -> `cities`; address- or street-shaped queries with a geographic anchor -> `addresses` and/or `streets`. If omitted, returns general POIs in the supplied area.
unitsNoUnits of measurement for distance values. Defaults to 'metric'.
acceptNoThe default supported media type is application/json.
geolocNoOptional geolocation token used to refine results.
radiusNoBias toward results closer to the supplied coordinates, in meters. NOT a hard cutoff -- the API may still return more distant results. If omitted, the search is performed globally.
countryNoTwo-letter country code (ISO 3166-1 alpha-2) used to scope the search. Defaults to 'US'.
ui_langNoUser interface language for the response, usually of the form '<language>-<region>'. Defaults to 'en-US'.
latitudeNoLatitude of the geographical coordinates around which to search, in degrees (-90 to 90). Typically paired with `longitude`.
locationNoLocation string to search around, used as an alternative to `latitude` and `longitude`. For US locations prefer the form '<city> <state> <country name>' (e.g. 'san francisco ca united states'); for non-US locations use '<city> <country name>' (e.g. 'tokyo japan'). No commas or special characters needed; capitalization does not matter.
longitudeNoLongitude of the geographical coordinates around which to search, in degrees (-180 to 180). Typically paired with `latitude`.
safesearchNoSafe search level for the query results. 'off' - No filtering. 'moderate' - Filter out explicit content. 'strict' - Filter out explicit and suggestive content. Defaults to 'strict'.
spellcheckNoWhether to apply spellcheck before executing the search. Defaults to true.
user-agentNoThe user agent originating the request. Brave Search can utilize the user agent to provide a different experience depending on the device as described by the string. The user agent should follow the commonly used browser agent strings on each platform. For more information on curating user agents, see RFC 9110.
api-versionNoThe API version to use. This is denoted by the format YYYY-MM-DD. Default is the latest that is available. Read more about API versioning at https://api-dashboard.search.brave.com/documentation/guides/versioning.
search_langNoLanguage for the search results. Defaults to 'en'.
cache-controlNoBrave Search will return cached content by default. To prevent caching set the Cache-Control header to no-cache. This is currently done as best effort.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesTop-level response discriminator. Always "locations" for Place Search.
queryNo
citiesNoCity matches for the query. Typically populated when the query is a bare or ambiguous city name (e.g. "springfield", "san francisco").
resultsNoPoints of interest matching the search. Populated for POI-shaped queries.
streetsNoStreet matches. Typically populated when the query is a street name AND is geographically anchored via `latitude`+`longitude` or a specific `location`.
locationNoThe search area as resolved by the API (e.g. coordinates + city name). Useful for confirming the API interpreted the input as expected and for grounding follow-up queries.
addressesNoAddress matches. Typically populated when the query is a street + number AND is geographically anchored via `latitude`+`longitude` or a specific `location`.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed20 schema fields changedv2.1.3
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • removedOutput schema / properties / addresses / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / addresses / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / addresses / items / properties / pois / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / addresses / items / properties / pois / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / addresses / items / properties / pois_nearby / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / addresses / items / properties / pois_nearby / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / cities / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / cities / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / location / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / location / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / results / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / results / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / streets / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / streets / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / streets / items / properties / pois / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / streets / items / properties / pois / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedOutput schema / properties / streets / items / properties / pois_nearby / items / properties / coordinates / items
      Removed value: -[
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedOutput schema / properties / streets / items / properties / pois_nearby / items / properties / coordinates / prefixItems
      Added value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
  2. Changed55 schema fields changedv2.0.82
    • changedInput schema / properties / query / description
      Previous value: -"Query string to search for points of interest in an area. If no query is provided, the endpoint will return general points of interest in the given area."New value: +"Query string. Shape influences the response: POI-like queries -> `results`; bare/ambiguous city names -> `cities`; address- or street-shaped queries with a geographic anchor -> `addresses` and/or `streets`. If omitted, returns general POIs in the supplied area."
    • changedInput schema / properties / radius / description
      Previous value: -"Search radius around the supplied coordinates, in meters. If omitted, the search is performed globally."New value: +"Bias toward results closer to the supplied coordinates, in meters. NOT a hard cutoff -- the API may still return more distant results. If omitted, the search is performed globally."
    • addedOutput schema / properties / addresses
      Added value: +{
      +  "description": "Address matches. Typically populated when the query is a street + number AND is geographically anchored via `latitude`+`longitude` or a specific `location`.",
      +  "items": {
      +    "additionalProperties": {},
      +    "properties": {
      +      "coordinates": {
      +        "description": "Latitude/longitude of the address",
      +        "items": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "number"
      +          }
      +        ],
      +        "type": "array"
      +      },
      +      "distance": {
      +        "additionalProperties": {},
      +        "description": "Distance from the user's geolocation, if available.",
      +        "properties": {
      +          "units": {
      +            "description": "The name of the unit associated with the quantity.",
      +            "type": "string"
      +          },
      +          "value": {
      +            "description": "The quantity of the unit.",
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "value",
      +          "units"
      +        ],
      +        "type": "object"
      +      },
      +      "name": {
      +        "description": "The name of the address.",
      +        "type": "string"
      +      },
      +      "pois": {
      +        "description": "List of POIs located at this address.",
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "action": {
      +              "additionalProperties": {},
      +              "description": "The action associated with the result.",
      +              "properties": {
      +                "type": {
      +                  "description": "The type representing the action.",
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "description": "A URL representing the action to be taken.",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "url"
      +              ],
      +              "type": "object"
      +            },
      +            "categories": {
      +              "description": "List of category labels.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "contact": {
      +              "additionalProperties": {},
      +              "description": "The contact of the location.",
      +              "properties": {
      +                "email": {
      +                  "description": "Contact email for the business.",
      +                  "type": "string"
      +                },
      +                "telephone": {
      +                  "description": "Contact telephone number for the business.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "coordinates": {
      +              "description": "Latitude/longitude pair for the location, when available.",
      +              "items": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "number"
      +                }
      +              ],
      +              "type": "array"
      +            },
      +            "description": {
      +              "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +              "type": "string"
      +            },
      +            "distance": {
      +              "additionalProperties": {},
      +              "description": "Distance from the user's geolocation, if available.",
      +              "properties": {
      +                "units": {
      +                  "description": "The name of the unit associated with the quantity.",
      +                  "type": "string"
      +                },
      +                "value": {
      +                  "description": "The quantity of the unit.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "value",
      +                "units"
      +              ],
      +              "type": "object"
      +            },
      +            "family_friendly": {
      +              "description": "Whether the result is family friendly.",
      +              "type": "boolean"
      +            },
      +            "fetched_content_timestamp": {
      +              "description": "The timestamp of the content when it was fetched.",
      +              "type": "number"
      +            },
      +            "icon_category": {
      +              "description": "Suggested icon category (e.g. \"cafe\").",
      +              "type": "string"
      +            },
      +            "id": {
      +              "description": "Temporary identifier for the location, valid for ~8 hours. Can be used with brave_local_search-style endpoints to fetch additional information.",
      +              "type": "string"
      +            },
      +            "is_source_both": {
      +              "description": "Whether the result is from both local and global sources.",
      +              "type": "boolean"
      +            },
      +            "is_source_local": {
      +              "description": "Whether the result is from local sources.",
      +              "type": "boolean"
      +            },
      +            "language": {
      +              "description": "The language of the page.",
      +              "type": "string"
      +            },
      +            "opening_hours": {
      +              "additionalProperties": {},
      +              "description": "The opening hours of the location.",
      +              "properties": {
      +                "current_day": {
      +                  "description": "Opening hours for the current day. May contain multiple entries when the location closes and reopens during the day.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "abbr_name": {
      +                        "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                        "type": "string"
      +                      },
      +                      "closes": {
      +                        "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                        "type": "string"
      +                      },
      +                      "full_name": {
      +                        "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                        "type": "string"
      +                      },
      +                      "opens": {
      +                        "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "days": {
      +                  "description": "Opening hours for the rest of the week. Each entry may itself be either a single day-hours object or an array of day-hours objects (when a day has multiple open/close intervals).",
      +                  "items": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "abbr_name": {
      +                            "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                            "type": "string"
      +                          },
      +                          "closes": {
      +                            "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                            "type": "string"
      +                          },
      +                          "full_name": {
      +                            "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                            "type": "string"
      +                          },
      +                          "opens": {
      +                            "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      {
      +                        "items": {
      +                          "additionalProperties": {},
      +                          "properties": {
      +                            "abbr_name": {
      +                              "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                              "type": "string"
      +                            },
      +                            "closes": {
      +                              "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                              "type": "string"
      +                            },
      +                            "full_name": {
      +                              "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                              "type": "string"
      +                            },
      +                            "opens": {
      +                              "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                              "type": "string"
      +                            }
      +                          },
      +                          "type": "object"
      +                        },
      +                        "type": "array"
      +                      }
      +                    ]
      +                  },
      +                  "type": "array"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "page_age": {
      +              "description": "The age of the page as a date string.",
      +              "type": "string"
      +            },
      +            "page_fetched": {
      +              "description": "The date the page was last fetched as a date string.",
      +              "type": "string"
      +            },
      +            "pictures": {
      +              "additionalProperties": {},
      +              "description": "Pictures associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "Thumbnail entries for the location.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "alt": {
      +                        "description": "The alt text for the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "bg_color": {
      +                        "description": "The background color of the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "duplicated": {
      +                        "description": "Whether the thumbnail is duplicated.",
      +                        "type": "boolean"
      +                      },
      +                      "height": {
      +                        "description": "The height of the thumbnail.",
      +                        "type": "number"
      +                      },
      +                      "logo": {
      +                        "description": "Whether the thumbnail is a logo.",
      +                        "type": "boolean"
      +                      },
      +                      "original": {
      +                        "description": "The original URL of the image.",
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      "src": {
      +                        "description": "The served URL of the picture thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "theme": {
      +                        "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                        "type": "string"
      +                      },
      +                      "width": {
      +                        "description": "The width of the thumbnail.",
      +                        "type": "number"
      +                      }
      +                    },
      +                    "required": [
      +                      "src"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "URL where additional pictures can be viewed.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "postal_address": {
      +              "additionalProperties": {},
      +              "description": "The postal address of the location.",
      +              "properties": {
      +                "addressLocality": {
      +                  "description": "The address locality or subregion associated with the location.",
      +                  "type": "string"
      +                },
      +                "addressRegion": {
      +                  "description": "The region associated with the location. Usually a state.",
      +                  "type": "string"
      +                },
      +                "country": {
      +                  "description": "The country associated with the location.",
      +                  "type": "string"
      +                },
      +                "displayAddress": {
      +                  "description": "The displayed address string.",
      +                  "type": "string"
      +                },
      +                "postalCode": {
      +                  "description": "The postal code associated with the location.",
      +                  "type": "string"
      +                },
      +                "streetAddress": {
      +                  "description": "The street address associated with the location.",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "PostalAddress",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "displayAddress"
      +              ],
      +              "type": "object"
      +            },
      +            "price_range": {
      +              "description": "Price classification string for the business (e.g. \"$\", \"$$\").",
      +              "type": "string"
      +            },
      +            "profile": {
      +              "additionalProperties": {},
      +              "description": "The profile associated with the result.",
      +              "properties": {
      +                "img": {
      +                  "type": "string"
      +                },
      +                "long_name": {
      +                  "type": "string"
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "profiles": {
      +              "description": "External profiles (e.g. data providers) associated with the result.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "img": {
      +                    "type": "string"
      +                  },
      +                  "long_name": {
      +                    "type": "string"
      +                  },
      +                  "name": {
      +                    "type": "string"
      +                  },
      +                  "type": {
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "type": "string"
      +                  }
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "provider_url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "URL of the upstream provider for this result. May be an empty string."
      +            },
      +            "rating": {
      +              "additionalProperties": {},
      +              "description": "The rating of the result.",
      +              "properties": {
      +                "bestRating": {
      +                  "description": "Highest possible rating value.",
      +                  "type": "number"
      +                },
      +                "is_tripadvisor": {
      +                  "description": "Whether the rating originates from Tripadvisor.",
      +                  "type": "boolean"
      +                },
      +                "profile": {
      +                  "additionalProperties": {},
      +                  "properties": {
      +                    "img": {
      +                      "type": "string"
      +                    },
      +                    "long_name": {
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "type": "string"
      +                    },
      +                    "type": {
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "ratingValue": {
      +                  "description": "The current value of the rating.",
      +                  "type": "number"
      +                },
      +                "reviewCount": {
      +                  "description": "Number of reviews backing the rating.",
      +                  "type": "number"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "results": {
      +              "description": "Web results related to this location.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "description": {
      +                    "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +                    "type": "string"
      +                  },
      +                  "family_friendly": {
      +                    "description": "Whether the result is family friendly.",
      +                    "type": "boolean"
      +                  },
      +                  "fetched_content_timestamp": {
      +                    "description": "The timestamp of the content when it was fetched.",
      +                    "type": "number"
      +                  },
      +                  "is_source_both": {
      +                    "description": "Whether the result is from both local and global sources.",
      +                    "type": "boolean"
      +                  },
      +                  "is_source_local": {
      +                    "description": "Whether the result is from local sources.",
      +                    "type": "boolean"
      +                  },
      +                  "language": {
      +                    "description": "The language of the page.",
      +                    "type": "string"
      +                  },
      +                  "meta_url": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "favicon": {
      +                        "description": "The favicon used for the URL.",
      +                        "type": "string"
      +                      },
      +                      "hostname": {
      +                        "description": "The lowercased domain name extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "netloc": {
      +                        "description": "The network location part extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "path": {
      +                        "description": "The hierarchical path of the URL useful as a display string.",
      +                        "type": "string"
      +                      },
      +                      "scheme": {
      +                        "description": "The protocol scheme extracted from the URL.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "scheme",
      +                      "netloc"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "page_age": {
      +                    "description": "The age of the page as a date string.",
      +                    "type": "string"
      +                  },
      +                  "page_fetched": {
      +                    "description": "The date the page was last fetched as a date string.",
      +                    "type": "string"
      +                  },
      +                  "profile": {
      +                    "additionalProperties": {},
      +                    "description": "The profile associated with the result.",
      +                    "properties": {
      +                      "img": {
      +                        "type": "string"
      +                      },
      +                      "long_name": {
      +                        "type": "string"
      +                      },
      +                      "name": {
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "type": "string"
      +                      },
      +                      "url": {
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "title": {
      +                    "description": "The display title of the location.",
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "anyOf": [
      +                      {
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      {
      +                        "const": "",
      +                        "type": "string"
      +                      }
      +                    ],
      +                    "description": "Primary URL associated with the location. May be an empty string."
      +                  }
      +                },
      +                "required": [
      +                  "title",
      +                  "url",
      +                  "is_source_local",
      +                  "is_source_both"
      +                ],
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "reviews": {
      +              "additionalProperties": {},
      +              "description": "Reviews associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "A list of trip advisor reviews for the entity.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "author": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "img": {
      +                            "type": "string"
      +                          },
      +                          "long_name": {
      +                            "type": "string"
      +                          },
      +                          "name": {
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "date": {
      +                        "description": "The date when the review was published.",
      +                        "type": "string"
      +                      },
      +                      "description": {
      +                        "description": "A description seen in the review.",
      +                        "type": "string"
      +                      },
      +                      "rating": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "bestRating": {
      +                            "description": "Highest possible rating value.",
      +                            "type": "number"
      +                          },
      +                          "is_tripadvisor": {
      +                            "description": "Whether the rating originates from Tripadvisor.",
      +                            "type": "boolean"
      +                          },
      +                          "profile": {
      +                            "additionalProperties": {},
      +                            "properties": {
      +                              "img": {
      +                                "type": "string"
      +                              },
      +                              "long_name": {
      +                                "type": "string"
      +                              },
      +                              "name": {
      +                                "type": "string"
      +                              },
      +                              "type": {
      +                                "type": "string"
      +                              },
      +                              "url": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "type": "object"
      +                          },
      +                          "ratingValue": {
      +                            "description": "The current value of the rating.",
      +                            "type": "number"
      +                          },
      +                          "reviewCount": {
      +                            "description": "Number of reviews backing the rating.",
      +                            "type": "number"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "title": {
      +                        "description": "The title of the review.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "title",
      +                      "description",
      +                      "date"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "reviews_in_foreign_language": {
      +                  "description": "Any reviews available in a foreign language.",
      +                  "type": "boolean"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "A URL to a web page where more information on the result can be seen.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "serves_cuisine": {
      +              "description": "List of cuisine categories served.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "thumbnail": {
      +              "additionalProperties": {},
      +              "description": "The thumbnail associated with the location.",
      +              "properties": {
      +                "alt": {
      +                  "description": "The alt text for the thumbnail.",
      +                  "type": "string"
      +                },
      +                "bg_color": {
      +                  "description": "The background color of the thumbnail.",
      +                  "type": "string"
      +                },
      +                "duplicated": {
      +                  "description": "Whether the thumbnail is duplicated.",
      +                  "type": "boolean"
      +                },
      +                "height": {
      +                  "description": "The height of the thumbnail.",
      +                  "type": "number"
      +                },
      +                "logo": {
      +                  "description": "Whether the thumbnail is a logo.",
      +                  "type": "boolean"
      +                },
      +                "original": {
      +                  "description": "The original URL of the image.",
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                "src": {
      +                  "description": "The served URL of the picture thumbnail.",
      +                  "type": "string"
      +                },
      +                "theme": {
      +                  "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                  "type": "string"
      +                },
      +                "width": {
      +                  "description": "The width of the thumbnail.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "src"
      +              ],
      +              "type": "object"
      +            },
      +            "timezone": {
      +              "description": "IANA timezone identifier for the location.",
      +              "type": "string"
      +            },
      +            "timezone_offset": {
      +              "description": "UTC offset of the location's timezone, in minutes.",
      +              "type": "number"
      +            },
      +            "title": {
      +              "description": "The display title of the location.",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "location_result",
      +              "description": "Result type identifier.",
      +              "type": "string"
      +            },
      +            "url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "Primary URL associated with the location. May be an empty string."
      +            },
      +            "zoom_level": {
      +              "description": "Suggested zoom level when displaying on a map.",
      +              "type": "number"
      +            }
      +          },
      +          "required": [
      +            "title",
      +            "url",
      +            "is_source_local",
      +            "is_source_both",
      +            "type",
      +            "provider_url",
      +            "zoom_level"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "pois_nearby": {
      +        "description": "List of POIs nearby this address.",
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "action": {
      +              "additionalProperties": {},
      +              "description": "The action associated with the result.",
      +              "properties": {
      +                "type": {
      +                  "description": "The type representing the action.",
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "description": "A URL representing the action to be taken.",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "url"
      +              ],
      +              "type": "object"
      +            },
      +            "categories": {
      +              "description": "List of category labels.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "contact": {
      +              "additionalProperties": {},
      +              "description": "The contact of the location.",
      +              "properties": {
      +                "email": {
      +                  "description": "Contact email for the business.",
      +                  "type": "string"
      +                },
      +                "telephone": {
      +                  "description": "Contact telephone number for the business.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "coordinates": {
      +              "description": "Latitude/longitude pair for the location, when available.",
      +              "items": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "number"
      +                }
      +              ],
      +              "type": "array"
      +            },
      +            "description": {
      +              "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +              "type": "string"
      +            },
      +            "distance": {
      +              "additionalProperties": {},
      +              "description": "Distance from the user's geolocation, if available.",
      +              "properties": {
      +                "units": {
      +                  "description": "The name of the unit associated with the quantity.",
      +                  "type": "string"
      +                },
      +                "value": {
      +                  "description": "The quantity of the unit.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "value",
      +                "units"
      +              ],
      +              "type": "object"
      +            },
      +            "family_friendly": {
      +              "description": "Whether the result is family friendly.",
      +              "type": "boolean"
      +            },
      +            "fetched_content_timestamp": {
      +              "description": "The timestamp of the content when it was fetched.",
      +              "type": "number"
      +            },
      +            "icon_category": {
      +              "description": "Suggested icon category (e.g. \"cafe\").",
      +              "type": "string"
      +            },
      +            "id": {
      +              "description": "Temporary identifier for the location, valid for ~8 hours. Can be used with brave_local_search-style endpoints to fetch additional information.",
      +              "type": "string"
      +            },
      +            "is_source_both": {
      +              "description": "Whether the result is from both local and global sources.",
      +              "type": "boolean"
      +            },
      +            "is_source_local": {
      +              "description": "Whether the result is from local sources.",
      +              "type": "boolean"
      +            },
      +            "language": {
      +              "description": "The language of the page.",
      +              "type": "string"
      +            },
      +            "opening_hours": {
      +              "additionalProperties": {},
      +              "description": "The opening hours of the location.",
      +              "properties": {
      +                "current_day": {
      +                  "description": "Opening hours for the current day. May contain multiple entries when the location closes and reopens during the day.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "abbr_name": {
      +                        "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                        "type": "string"
      +                      },
      +                      "closes": {
      +                        "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                        "type": "string"
      +                      },
      +                      "full_name": {
      +                        "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                        "type": "string"
      +                      },
      +                      "opens": {
      +                        "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "days": {
      +                  "description": "Opening hours for the rest of the week. Each entry may itself be either a single day-hours object or an array of day-hours objects (when a day has multiple open/close intervals).",
      +                  "items": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "abbr_name": {
      +                            "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                            "type": "string"
      +                          },
      +                          "closes": {
      +                            "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                            "type": "string"
      +                          },
      +                          "full_name": {
      +                            "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                            "type": "string"
      +                          },
      +                          "opens": {
      +                            "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      {
      +                        "items": {
      +                          "additionalProperties": {},
      +                          "properties": {
      +                            "abbr_name": {
      +                              "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                              "type": "string"
      +                            },
      +                            "closes": {
      +                              "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                              "type": "string"
      +                            },
      +                            "full_name": {
      +                              "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                              "type": "string"
      +                            },
      +                            "opens": {
      +                              "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                              "type": "string"
      +                            }
      +                          },
      +                          "type": "object"
      +                        },
      +                        "type": "array"
      +                      }
      +                    ]
      +                  },
      +                  "type": "array"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "page_age": {
      +              "description": "The age of the page as a date string.",
      +              "type": "string"
      +            },
      +            "page_fetched": {
      +              "description": "The date the page was last fetched as a date string.",
      +              "type": "string"
      +            },
      +            "pictures": {
      +              "additionalProperties": {},
      +              "description": "Pictures associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "Thumbnail entries for the location.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "alt": {
      +                        "description": "The alt text for the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "bg_color": {
      +                        "description": "The background color of the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "duplicated": {
      +                        "description": "Whether the thumbnail is duplicated.",
      +                        "type": "boolean"
      +                      },
      +                      "height": {
      +                        "description": "The height of the thumbnail.",
      +                        "type": "number"
      +                      },
      +                      "logo": {
      +                        "description": "Whether the thumbnail is a logo.",
      +                        "type": "boolean"
      +                      },
      +                      "original": {
      +                        "description": "The original URL of the image.",
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      "src": {
      +                        "description": "The served URL of the picture thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "theme": {
      +                        "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                        "type": "string"
      +                      },
      +                      "width": {
      +                        "description": "The width of the thumbnail.",
      +                        "type": "number"
      +                      }
      +                    },
      +                    "required": [
      +                      "src"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "URL where additional pictures can be viewed.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "postal_address": {
      +              "additionalProperties": {},
      +              "description": "The postal address of the location.",
      +              "properties": {
      +                "addressLocality": {
      +                  "description": "The address locality or subregion associated with the location.",
      +                  "type": "string"
      +                },
      +                "addressRegion": {
      +                  "description": "The region associated with the location. Usually a state.",
      +                  "type": "string"
      +                },
      +                "country": {
      +                  "description": "The country associated with the location.",
      +                  "type": "string"
      +                },
      +                "displayAddress": {
      +                  "description": "The displayed address string.",
      +                  "type": "string"
      +                },
      +                "postalCode": {
      +                  "description": "The postal code associated with the location.",
      +                  "type": "string"
      +                },
      +                "streetAddress": {
      +                  "description": "The street address associated with the location.",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "PostalAddress",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "displayAddress"
      +              ],
      +              "type": "object"
      +            },
      +            "price_range": {
      +              "description": "Price classification string for the business (e.g. \"$\", \"$$\").",
      +              "type": "string"
      +            },
      +            "profile": {
      +              "additionalProperties": {},
      +              "description": "The profile associated with the result.",
      +              "properties": {
      +                "img": {
      +                  "type": "string"
      +                },
      +                "long_name": {
      +                  "type": "string"
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "profiles": {
      +              "description": "External profiles (e.g. data providers) associated with the result.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "img": {
      +                    "type": "string"
      +                  },
      +                  "long_name": {
      +                    "type": "string"
      +                  },
      +                  "name": {
      +                    "type": "string"
      +                  },
      +                  "type": {
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "type": "string"
      +                  }
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "provider_url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "URL of the upstream provider for this result. May be an empty string."
      +            },
      +            "rating": {
      +              "additionalProperties": {},
      +              "description": "The rating of the result.",
      +              "properties": {
      +                "bestRating": {
      +                  "description": "Highest possible rating value.",
      +                  "type": "number"
      +                },
      +                "is_tripadvisor": {
      +                  "description": "Whether the rating originates from Tripadvisor.",
      +                  "type": "boolean"
      +                },
      +                "profile": {
      +                  "additionalProperties": {},
      +                  "properties": {
      +                    "img": {
      +                      "type": "string"
      +                    },
      +                    "long_name": {
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "type": "string"
      +                    },
      +                    "type": {
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "ratingValue": {
      +                  "description": "The current value of the rating.",
      +                  "type": "number"
      +                },
      +                "reviewCount": {
      +                  "description": "Number of reviews backing the rating.",
      +                  "type": "number"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "results": {
      +              "description": "Web results related to this location.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "description": {
      +                    "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +                    "type": "string"
      +                  },
      +                  "family_friendly": {
      +                    "description": "Whether the result is family friendly.",
      +                    "type": "boolean"
      +                  },
      +                  "fetched_content_timestamp": {
      +                    "description": "The timestamp of the content when it was fetched.",
      +                    "type": "number"
      +                  },
      +                  "is_source_both": {
      +                    "description": "Whether the result is from both local and global sources.",
      +                    "type": "boolean"
      +                  },
      +                  "is_source_local": {
      +                    "description": "Whether the result is from local sources.",
      +                    "type": "boolean"
      +                  },
      +                  "language": {
      +                    "description": "The language of the page.",
      +                    "type": "string"
      +                  },
      +                  "meta_url": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "favicon": {
      +                        "description": "The favicon used for the URL.",
      +                        "type": "string"
      +                      },
      +                      "hostname": {
      +                        "description": "The lowercased domain name extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "netloc": {
      +                        "description": "The network location part extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "path": {
      +                        "description": "The hierarchical path of the URL useful as a display string.",
      +                        "type": "string"
      +                      },
      +                      "scheme": {
      +                        "description": "The protocol scheme extracted from the URL.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "scheme",
      +                      "netloc"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "page_age": {
      +                    "description": "The age of the page as a date string.",
      +                    "type": "string"
      +                  },
      +                  "page_fetched": {
      +                    "description": "The date the page was last fetched as a date string.",
      +                    "type": "string"
      +                  },
      +                  "profile": {
      +                    "additionalProperties": {},
      +                    "description": "The profile associated with the result.",
      +                    "properties": {
      +                      "img": {
      +                        "type": "string"
      +                      },
      +                      "long_name": {
      +                        "type": "string"
      +                      },
      +                      "name": {
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "type": "string"
      +                      },
      +                      "url": {
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "title": {
      +                    "description": "The display title of the location.",
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "anyOf": [
      +                      {
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      {
      +                        "const": "",
      +                        "type": "string"
      +                      }
      +                    ],
      +                    "description": "Primary URL associated with the location. May be an empty string."
      +                  }
      +                },
      +                "required": [
      +                  "title",
      +                  "url",
      +                  "is_source_local",
      +                  "is_source_both"
      +                ],
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "reviews": {
      +              "additionalProperties": {},
      +              "description": "Reviews associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "A list of trip advisor reviews for the entity.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "author": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "img": {
      +                            "type": "string"
      +                          },
      +                          "long_name": {
      +                            "type": "string"
      +                          },
      +                          "name": {
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "date": {
      +                        "description": "The date when the review was published.",
      +                        "type": "string"
      +                      },
      +                      "description": {
      +                        "description": "A description seen in the review.",
      +                        "type": "string"
      +                      },
      +                      "rating": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "bestRating": {
      +                            "description": "Highest possible rating value.",
      +                            "type": "number"
      +                          },
      +                          "is_tripadvisor": {
      +                            "description": "Whether the rating originates from Tripadvisor.",
      +                            "type": "boolean"
      +                          },
      +                          "profile": {
      +                            "additionalProperties": {},
      +                            "properties": {
      +                              "img": {
      +                                "type": "string"
      +                              },
      +                              "long_name": {
      +                                "type": "string"
      +                              },
      +                              "name": {
      +                                "type": "string"
      +                              },
      +                              "type": {
      +                                "type": "string"
      +                              },
      +                              "url": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "type": "object"
      +                          },
      +                          "ratingValue": {
      +                            "description": "The current value of the rating.",
      +                            "type": "number"
      +                          },
      +                          "reviewCount": {
      +                            "description": "Number of reviews backing the rating.",
      +                            "type": "number"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "title": {
      +                        "description": "The title of the review.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "title",
      +                      "description",
      +                      "date"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "reviews_in_foreign_language": {
      +                  "description": "Any reviews available in a foreign language.",
      +                  "type": "boolean"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "A URL to a web page where more information on the result can be seen.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "serves_cuisine": {
      +              "description": "List of cuisine categories served.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "thumbnail": {
      +              "additionalProperties": {},
      +              "description": "The thumbnail associated with the location.",
      +              "properties": {
      +                "alt": {
      +                  "description": "The alt text for the thumbnail.",
      +                  "type": "string"
      +                },
      +                "bg_color": {
      +                  "description": "The background color of the thumbnail.",
      +                  "type": "string"
      +                },
      +                "duplicated": {
      +                  "description": "Whether the thumbnail is duplicated.",
      +                  "type": "boolean"
      +                },
      +                "height": {
      +                  "description": "The height of the thumbnail.",
      +                  "type": "number"
      +                },
      +                "logo": {
      +                  "description": "Whether the thumbnail is a logo.",
      +                  "type": "boolean"
      +                },
      +                "original": {
      +                  "description": "The original URL of the image.",
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                "src": {
      +                  "description": "The served URL of the picture thumbnail.",
      +                  "type": "string"
      +                },
      +                "theme": {
      +                  "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                  "type": "string"
      +                },
      +                "width": {
      +                  "description": "The width of the thumbnail.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "src"
      +              ],
      +              "type": "object"
      +            },
      +            "timezone": {
      +              "description": "IANA timezone identifier for the location.",
      +              "type": "string"
      +            },
      +            "timezone_offset": {
      +              "description": "UTC offset of the location's timezone, in minutes.",
      +              "type": "number"
      +            },
      +            "title": {
      +              "description": "The display title of the location.",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "location_result",
      +              "description": "Result type identifier.",
      +              "type": "string"
      +            },
      +            "url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "Primary URL associated with the location. May be an empty string."
      +            },
      +            "zoom_level": {
      +              "description": "Suggested zoom level when displaying on a map.",
      +              "type": "number"
      +            }
      +          },
      +          "required": [
      +            "title",
      +            "url",
      +            "is_source_local",
      +            "is_source_both",
      +            "type",
      +            "provider_url",
      +            "zoom_level"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "postal_address": {
      +        "additionalProperties": {},
      +        "description": "The postal address of the address.",
      +        "properties": {
      +          "addressLocality": {
      +            "description": "The address locality or subregion associated with the location.",
      +            "type": "string"
      +          },
      +          "addressRegion": {
      +            "description": "The region associated with the location. Usually a state.",
      +            "type": "string"
      +          },
      +          "country": {
      +            "description": "The country associated with the location.",
      +            "type": "string"
      +          },
      +          "displayAddress": {
      +            "description": "The displayed address string.",
      +            "type": "string"
      +          },
      +          "postalCode": {
      +            "description": "The postal code associated with the location.",
      +            "type": "string"
      +          },
      +          "streetAddress": {
      +            "description": "The street address associated with the location.",
      +            "type": "string"
      +          },
      +          "type": {
      +            "const": "PostalAddress",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "type",
      +          "displayAddress"
      +        ],
      +        "type": "object"
      +      },
      +      "type": {
      +        "description": "Result is \"address\" when the result refers to an explicit street + number, but \"street\" when it refers only to the street itself.",
      +        "enum": [
      +          "address",
      +          "street"
      +        ],
      +        "type": "string"
      +      },
      +      "zoom_level": {
      +        "description": "Suggested zoom level when displaying on a map.",
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "name",
      +      "coordinates",
      +      "pois",
      +      "pois_nearby",
      +      "zoom_level"
      +    ],
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
    • addedOutput schema / properties / cities
      Added value: +{
      +  "description": "City matches for the query. Typically populated when the query is a bare or ambiguous city name (e.g. \"springfield\", \"san francisco\").",
      +  "items": {
      +    "additionalProperties": {},
      +    "properties": {
      +      "coordinates": {
      +        "description": "Latitude/longitude of the city",
      +        "items": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "number"
      +          }
      +        ],
      +        "type": "array"
      +      },
      +      "country": {
      +        "description": "ISO country code for the city",
      +        "type": "string"
      +      },
      +      "name": {
      +        "description": "Name of the city",
      +        "type": "string"
      +      },
      +      "thumbnail": {
      +        "additionalProperties": {},
      +        "description": "Primary image for the city",
      +        "properties": {
      +          "alt": {
      +            "description": "The alt text for the thumbnail.",
      +            "type": "string"
      +          },
      +          "bg_color": {
      +            "description": "The background color of the thumbnail.",
      +            "type": "string"
      +          },
      +          "duplicated": {
      +            "description": "Whether the thumbnail is duplicated.",
      +            "type": "boolean"
      +          },
      +          "height": {
      +            "description": "The height of the thumbnail.",
      +            "type": "number"
      +          },
      +          "logo": {
      +            "description": "Whether the thumbnail is a logo.",
      +            "type": "boolean"
      +          },
      +          "original": {
      +            "description": "The original URL of the image.",
      +            "format": "uri",
      +            "type": "string"
      +          },
      +          "src": {
      +            "description": "The served URL of the picture thumbnail.",
      +            "type": "string"
      +          },
      +          "theme": {
      +            "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +            "type": "string"
      +          },
      +          "width": {
      +            "description": "The width of the thumbnail.",
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "src"
      +        ],
      +        "type": "object"
      +      },
      +      "type": {
      +        "const": "city",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "name",
      +      "country",
      +      "coordinates",
      +      "thumbnail"
      +    ],
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
    • changedOutput schema / properties / location / description
      Previous value: -"The resolved search-area metadata, when available."New value: +"The search area as resolved by the API (e.g. coordinates + city name). Useful for confirming the API interpreted the input as expected and for grounding follow-up queries."
    • changedOutput schema / properties / location / properties / coordinates / items
      Previous value: -{
      -  "type": "number"
      -}New value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • changedOutput schema / properties / results / description
      Previous value: -"Array of points-of-interest matching the search."New value: +"Points of interest matching the search. Populated for POI-shaped queries."
    • addedOutput schema / properties / results / items / properties / action / description
      Added value: +"The action associated with the result."
    • addedOutput schema / properties / results / items / properties / contact / description
      Added value: +"The contact of the location."
    • changedOutput schema / properties / results / items / properties / coordinates / items
      Previous value: -{
      -  "type": "number"
      -}New value: +[
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • addedOutput schema / properties / results / items / properties / distance / description
      Added value: +"Distance from the user's geolocation, if available."
    • addedOutput schema / properties / results / items / properties / family_friendly / description
      Added value: +"Whether the result is family friendly."
    • addedOutput schema / properties / results / items / properties / is_source_both / description
      Added value: +"Whether the result is from both local and global sources."
    • addedOutput schema / properties / results / items / properties / is_source_local / description
      Added value: +"Whether the result is from local sources."
    • addedOutput schema / properties / results / items / properties / opening_hours / description
      Added value: +"The opening hours of the location."
    • addedOutput schema / properties / results / items / properties / pictures / description
      Added value: +"Pictures associated with the result."
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / alt
      Added value: +{
      +  "description": "The alt text for the thumbnail.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / bg_color
      Added value: +{
      +  "description": "The background color of the thumbnail.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / duplicated
      Added value: +{
      +  "description": "Whether the thumbnail is duplicated.",
      +  "type": "boolean"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / height
      Added value: +{
      +  "description": "The height of the thumbnail.",
      +  "type": "number"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / logo
      Added value: +{
      +  "description": "Whether the thumbnail is a logo.",
      +  "type": "boolean"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / original / format
      Added value: +"uri"
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / theme
      Added value: +{
      +  "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +  "type": "string"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / properties / width
      Added value: +{
      +  "description": "The width of the thumbnail.",
      +  "type": "number"
      +}
    • addedOutput schema / properties / results / items / properties / pictures / properties / results / items / required
      Added value: +[
      +  "src"
      +]
    • addedOutput schema / properties / results / items / properties / postal_address / description
      Added value: +"The postal address of the location."
    • addedOutput schema / properties / results / items / properties / postal_address / required
      Added value: +[
      +  "type",
      +  "displayAddress"
      +]
    • addedOutput schema / properties / results / items / properties / profile / description
      Added value: +"The profile associated with the result."
    • addedOutput schema / properties / results / items / properties / provider_url / anyOf
      Added value: +[
      +  {
      +    "format": "uri",
      +    "type": "string"
      +  },
      +  {
      +    "const": "",
      +    "type": "string"
      +  }
      +]
    • removedOutput schema / properties / results / items / properties / provider_url / type
      Removed value: -"string"
    • addedOutput schema / properties / results / items / properties / rating / description
      Added value: +"The rating of the result."
    • addedOutput schema / properties / results / items / properties / results / items / properties / family_friendly / description
      Added value: +"Whether the result is family friendly."
    • addedOutput schema / properties / results / items / properties / results / items / properties / is_source_both / description
      Added value: +"Whether the result is from both local and global sources."
    • addedOutput schema / properties / results / items / properties / results / items / properties / is_source_local / description
      Added value: +"Whether the result is from local sources."
    • addedOutput schema / properties / results / items / properties / results / items / properties / profile / description
      Added value: +"The profile associated with the result."
    • addedOutput schema / properties / results / items / properties / results / items / properties / url / anyOf
      Added value: +[
      +  {
      +    "format": "uri",
      +    "type": "string"
      +  },
      +  {
      +    "const": "",
      +    "type": "string"
      +  }
      +]
    • changedOutput schema / properties / results / items / properties / results / items / properties / url / description
      Previous value: -"Primary URL associated with the location."New value: +"Primary URL associated with the location. May be an empty string."
    • removedOutput schema / properties / results / items / properties / results / items / properties / url / type
      Removed value: -"string"
    • changedOutput schema / properties / results / items / properties / results / items / required
      Previous value: -[
      -  "title",
      -  "url"
      -]New value: +[
      +  "title",
      +  "url",
      +  "is_source_local",
      +  "is_source_both"
      +]
    • addedOutput schema / properties / results / items / properties / reviews / description
      Added value: +"Reviews associated with the result."
    • addedOutput schema / properties / results / items / properties / thumbnail / description
      Added value: +"The thumbnail associated with the location."
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / alt
      Added value: +{
      +  "description": "The alt text for the thumbnail.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / bg_color
      Added value: +{
      +  "description": "The background color of the thumbnail.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / duplicated
      Added value: +{
      +  "description": "Whether the thumbnail is duplicated.",
      +  "type": "boolean"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / height
      Added value: +{
      +  "description": "The height of the thumbnail.",
      +  "type": "number"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / logo
      Added value: +{
      +  "description": "Whether the thumbnail is a logo.",
      +  "type": "boolean"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / original / format
      Added value: +"uri"
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / theme
      Added value: +{
      +  "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +  "type": "string"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / properties / width
      Added value: +{
      +  "description": "The width of the thumbnail.",
      +  "type": "number"
      +}
    • addedOutput schema / properties / results / items / properties / thumbnail / required
      Added value: +[
      +  "src"
      +]
    • addedOutput schema / properties / results / items / properties / url / anyOf
      Added value: +[
      +  {
      +    "format": "uri",
      +    "type": "string"
      +  },
      +  {
      +    "const": "",
      +    "type": "string"
      +  }
      +]
    • changedOutput schema / properties / results / items / properties / url / description
      Previous value: -"Primary URL associated with the location."New value: +"Primary URL associated with the location. May be an empty string."
    • removedOutput schema / properties / results / items / properties / url / type
      Removed value: -"string"
    • changedOutput schema / properties / results / items / required
      Previous value: -[
      -  "title",
      -  "url"
      -]New value: +[
      +  "title",
      +  "url",
      +  "is_source_local",
      +  "is_source_both",
      +  "type",
      +  "provider_url",
      +  "zoom_level"
      +]
    • addedOutput schema / properties / streets
      Added value: +{
      +  "description": "Street matches. Typically populated when the query is a street name AND is geographically anchored via `latitude`+`longitude` or a specific `location`.",
      +  "items": {
      +    "additionalProperties": {},
      +    "properties": {
      +      "coordinates": {
      +        "description": "Latitude/longitude of the address",
      +        "items": [
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "number"
      +          }
      +        ],
      +        "type": "array"
      +      },
      +      "distance": {
      +        "additionalProperties": {},
      +        "description": "Distance from the user's geolocation, if available.",
      +        "properties": {
      +          "units": {
      +            "description": "The name of the unit associated with the quantity.",
      +            "type": "string"
      +          },
      +          "value": {
      +            "description": "The quantity of the unit.",
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "value",
      +          "units"
      +        ],
      +        "type": "object"
      +      },
      +      "name": {
      +        "description": "The name of the address.",
      +        "type": "string"
      +      },
      +      "pois": {
      +        "description": "List of POIs located at this address.",
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "action": {
      +              "additionalProperties": {},
      +              "description": "The action associated with the result.",
      +              "properties": {
      +                "type": {
      +                  "description": "The type representing the action.",
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "description": "A URL representing the action to be taken.",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "url"
      +              ],
      +              "type": "object"
      +            },
      +            "categories": {
      +              "description": "List of category labels.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "contact": {
      +              "additionalProperties": {},
      +              "description": "The contact of the location.",
      +              "properties": {
      +                "email": {
      +                  "description": "Contact email for the business.",
      +                  "type": "string"
      +                },
      +                "telephone": {
      +                  "description": "Contact telephone number for the business.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "coordinates": {
      +              "description": "Latitude/longitude pair for the location, when available.",
      +              "items": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "number"
      +                }
      +              ],
      +              "type": "array"
      +            },
      +            "description": {
      +              "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +              "type": "string"
      +            },
      +            "distance": {
      +              "additionalProperties": {},
      +              "description": "Distance from the user's geolocation, if available.",
      +              "properties": {
      +                "units": {
      +                  "description": "The name of the unit associated with the quantity.",
      +                  "type": "string"
      +                },
      +                "value": {
      +                  "description": "The quantity of the unit.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "value",
      +                "units"
      +              ],
      +              "type": "object"
      +            },
      +            "family_friendly": {
      +              "description": "Whether the result is family friendly.",
      +              "type": "boolean"
      +            },
      +            "fetched_content_timestamp": {
      +              "description": "The timestamp of the content when it was fetched.",
      +              "type": "number"
      +            },
      +            "icon_category": {
      +              "description": "Suggested icon category (e.g. \"cafe\").",
      +              "type": "string"
      +            },
      +            "id": {
      +              "description": "Temporary identifier for the location, valid for ~8 hours. Can be used with brave_local_search-style endpoints to fetch additional information.",
      +              "type": "string"
      +            },
      +            "is_source_both": {
      +              "description": "Whether the result is from both local and global sources.",
      +              "type": "boolean"
      +            },
      +            "is_source_local": {
      +              "description": "Whether the result is from local sources.",
      +              "type": "boolean"
      +            },
      +            "language": {
      +              "description": "The language of the page.",
      +              "type": "string"
      +            },
      +            "opening_hours": {
      +              "additionalProperties": {},
      +              "description": "The opening hours of the location.",
      +              "properties": {
      +                "current_day": {
      +                  "description": "Opening hours for the current day. May contain multiple entries when the location closes and reopens during the day.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "abbr_name": {
      +                        "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                        "type": "string"
      +                      },
      +                      "closes": {
      +                        "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                        "type": "string"
      +                      },
      +                      "full_name": {
      +                        "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                        "type": "string"
      +                      },
      +                      "opens": {
      +                        "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "days": {
      +                  "description": "Opening hours for the rest of the week. Each entry may itself be either a single day-hours object or an array of day-hours objects (when a day has multiple open/close intervals).",
      +                  "items": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "abbr_name": {
      +                            "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                            "type": "string"
      +                          },
      +                          "closes": {
      +                            "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                            "type": "string"
      +                          },
      +                          "full_name": {
      +                            "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                            "type": "string"
      +                          },
      +                          "opens": {
      +                            "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      {
      +                        "items": {
      +                          "additionalProperties": {},
      +                          "properties": {
      +                            "abbr_name": {
      +                              "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                              "type": "string"
      +                            },
      +                            "closes": {
      +                              "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                              "type": "string"
      +                            },
      +                            "full_name": {
      +                              "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                              "type": "string"
      +                            },
      +                            "opens": {
      +                              "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                              "type": "string"
      +                            }
      +                          },
      +                          "type": "object"
      +                        },
      +                        "type": "array"
      +                      }
      +                    ]
      +                  },
      +                  "type": "array"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "page_age": {
      +              "description": "The age of the page as a date string.",
      +              "type": "string"
      +            },
      +            "page_fetched": {
      +              "description": "The date the page was last fetched as a date string.",
      +              "type": "string"
      +            },
      +            "pictures": {
      +              "additionalProperties": {},
      +              "description": "Pictures associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "Thumbnail entries for the location.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "alt": {
      +                        "description": "The alt text for the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "bg_color": {
      +                        "description": "The background color of the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "duplicated": {
      +                        "description": "Whether the thumbnail is duplicated.",
      +                        "type": "boolean"
      +                      },
      +                      "height": {
      +                        "description": "The height of the thumbnail.",
      +                        "type": "number"
      +                      },
      +                      "logo": {
      +                        "description": "Whether the thumbnail is a logo.",
      +                        "type": "boolean"
      +                      },
      +                      "original": {
      +                        "description": "The original URL of the image.",
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      "src": {
      +                        "description": "The served URL of the picture thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "theme": {
      +                        "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                        "type": "string"
      +                      },
      +                      "width": {
      +                        "description": "The width of the thumbnail.",
      +                        "type": "number"
      +                      }
      +                    },
      +                    "required": [
      +                      "src"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "URL where additional pictures can be viewed.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "postal_address": {
      +              "additionalProperties": {},
      +              "description": "The postal address of the location.",
      +              "properties": {
      +                "addressLocality": {
      +                  "description": "The address locality or subregion associated with the location.",
      +                  "type": "string"
      +                },
      +                "addressRegion": {
      +                  "description": "The region associated with the location. Usually a state.",
      +                  "type": "string"
      +                },
      +                "country": {
      +                  "description": "The country associated with the location.",
      +                  "type": "string"
      +                },
      +                "displayAddress": {
      +                  "description": "The displayed address string.",
      +                  "type": "string"
      +                },
      +                "postalCode": {
      +                  "description": "The postal code associated with the location.",
      +                  "type": "string"
      +                },
      +                "streetAddress": {
      +                  "description": "The street address associated with the location.",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "PostalAddress",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "displayAddress"
      +              ],
      +              "type": "object"
      +            },
      +            "price_range": {
      +              "description": "Price classification string for the business (e.g. \"$\", \"$$\").",
      +              "type": "string"
      +            },
      +            "profile": {
      +              "additionalProperties": {},
      +              "description": "The profile associated with the result.",
      +              "properties": {
      +                "img": {
      +                  "type": "string"
      +                },
      +                "long_name": {
      +                  "type": "string"
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "profiles": {
      +              "description": "External profiles (e.g. data providers) associated with the result.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "img": {
      +                    "type": "string"
      +                  },
      +                  "long_name": {
      +                    "type": "string"
      +                  },
      +                  "name": {
      +                    "type": "string"
      +                  },
      +                  "type": {
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "type": "string"
      +                  }
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "provider_url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "URL of the upstream provider for this result. May be an empty string."
      +            },
      +            "rating": {
      +              "additionalProperties": {},
      +              "description": "The rating of the result.",
      +              "properties": {
      +                "bestRating": {
      +                  "description": "Highest possible rating value.",
      +                  "type": "number"
      +                },
      +                "is_tripadvisor": {
      +                  "description": "Whether the rating originates from Tripadvisor.",
      +                  "type": "boolean"
      +                },
      +                "profile": {
      +                  "additionalProperties": {},
      +                  "properties": {
      +                    "img": {
      +                      "type": "string"
      +                    },
      +                    "long_name": {
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "type": "string"
      +                    },
      +                    "type": {
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "ratingValue": {
      +                  "description": "The current value of the rating.",
      +                  "type": "number"
      +                },
      +                "reviewCount": {
      +                  "description": "Number of reviews backing the rating.",
      +                  "type": "number"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "results": {
      +              "description": "Web results related to this location.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "description": {
      +                    "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +                    "type": "string"
      +                  },
      +                  "family_friendly": {
      +                    "description": "Whether the result is family friendly.",
      +                    "type": "boolean"
      +                  },
      +                  "fetched_content_timestamp": {
      +                    "description": "The timestamp of the content when it was fetched.",
      +                    "type": "number"
      +                  },
      +                  "is_source_both": {
      +                    "description": "Whether the result is from both local and global sources.",
      +                    "type": "boolean"
      +                  },
      +                  "is_source_local": {
      +                    "description": "Whether the result is from local sources.",
      +                    "type": "boolean"
      +                  },
      +                  "language": {
      +                    "description": "The language of the page.",
      +                    "type": "string"
      +                  },
      +                  "meta_url": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "favicon": {
      +                        "description": "The favicon used for the URL.",
      +                        "type": "string"
      +                      },
      +                      "hostname": {
      +                        "description": "The lowercased domain name extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "netloc": {
      +                        "description": "The network location part extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "path": {
      +                        "description": "The hierarchical path of the URL useful as a display string.",
      +                        "type": "string"
      +                      },
      +                      "scheme": {
      +                        "description": "The protocol scheme extracted from the URL.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "scheme",
      +                      "netloc"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "page_age": {
      +                    "description": "The age of the page as a date string.",
      +                    "type": "string"
      +                  },
      +                  "page_fetched": {
      +                    "description": "The date the page was last fetched as a date string.",
      +                    "type": "string"
      +                  },
      +                  "profile": {
      +                    "additionalProperties": {},
      +                    "description": "The profile associated with the result.",
      +                    "properties": {
      +                      "img": {
      +                        "type": "string"
      +                      },
      +                      "long_name": {
      +                        "type": "string"
      +                      },
      +                      "name": {
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "type": "string"
      +                      },
      +                      "url": {
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "title": {
      +                    "description": "The display title of the location.",
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "anyOf": [
      +                      {
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      {
      +                        "const": "",
      +                        "type": "string"
      +                      }
      +                    ],
      +                    "description": "Primary URL associated with the location. May be an empty string."
      +                  }
      +                },
      +                "required": [
      +                  "title",
      +                  "url",
      +                  "is_source_local",
      +                  "is_source_both"
      +                ],
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "reviews": {
      +              "additionalProperties": {},
      +              "description": "Reviews associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "A list of trip advisor reviews for the entity.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "author": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "img": {
      +                            "type": "string"
      +                          },
      +                          "long_name": {
      +                            "type": "string"
      +                          },
      +                          "name": {
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "date": {
      +                        "description": "The date when the review was published.",
      +                        "type": "string"
      +                      },
      +                      "description": {
      +                        "description": "A description seen in the review.",
      +                        "type": "string"
      +                      },
      +                      "rating": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "bestRating": {
      +                            "description": "Highest possible rating value.",
      +                            "type": "number"
      +                          },
      +                          "is_tripadvisor": {
      +                            "description": "Whether the rating originates from Tripadvisor.",
      +                            "type": "boolean"
      +                          },
      +                          "profile": {
      +                            "additionalProperties": {},
      +                            "properties": {
      +                              "img": {
      +                                "type": "string"
      +                              },
      +                              "long_name": {
      +                                "type": "string"
      +                              },
      +                              "name": {
      +                                "type": "string"
      +                              },
      +                              "type": {
      +                                "type": "string"
      +                              },
      +                              "url": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "type": "object"
      +                          },
      +                          "ratingValue": {
      +                            "description": "The current value of the rating.",
      +                            "type": "number"
      +                          },
      +                          "reviewCount": {
      +                            "description": "Number of reviews backing the rating.",
      +                            "type": "number"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "title": {
      +                        "description": "The title of the review.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "title",
      +                      "description",
      +                      "date"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "reviews_in_foreign_language": {
      +                  "description": "Any reviews available in a foreign language.",
      +                  "type": "boolean"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "A URL to a web page where more information on the result can be seen.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "serves_cuisine": {
      +              "description": "List of cuisine categories served.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "thumbnail": {
      +              "additionalProperties": {},
      +              "description": "The thumbnail associated with the location.",
      +              "properties": {
      +                "alt": {
      +                  "description": "The alt text for the thumbnail.",
      +                  "type": "string"
      +                },
      +                "bg_color": {
      +                  "description": "The background color of the thumbnail.",
      +                  "type": "string"
      +                },
      +                "duplicated": {
      +                  "description": "Whether the thumbnail is duplicated.",
      +                  "type": "boolean"
      +                },
      +                "height": {
      +                  "description": "The height of the thumbnail.",
      +                  "type": "number"
      +                },
      +                "logo": {
      +                  "description": "Whether the thumbnail is a logo.",
      +                  "type": "boolean"
      +                },
      +                "original": {
      +                  "description": "The original URL of the image.",
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                "src": {
      +                  "description": "The served URL of the picture thumbnail.",
      +                  "type": "string"
      +                },
      +                "theme": {
      +                  "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                  "type": "string"
      +                },
      +                "width": {
      +                  "description": "The width of the thumbnail.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "src"
      +              ],
      +              "type": "object"
      +            },
      +            "timezone": {
      +              "description": "IANA timezone identifier for the location.",
      +              "type": "string"
      +            },
      +            "timezone_offset": {
      +              "description": "UTC offset of the location's timezone, in minutes.",
      +              "type": "number"
      +            },
      +            "title": {
      +              "description": "The display title of the location.",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "location_result",
      +              "description": "Result type identifier.",
      +              "type": "string"
      +            },
      +            "url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "Primary URL associated with the location. May be an empty string."
      +            },
      +            "zoom_level": {
      +              "description": "Suggested zoom level when displaying on a map.",
      +              "type": "number"
      +            }
      +          },
      +          "required": [
      +            "title",
      +            "url",
      +            "is_source_local",
      +            "is_source_both",
      +            "type",
      +            "provider_url",
      +            "zoom_level"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "pois_nearby": {
      +        "description": "List of POIs nearby this address.",
      +        "items": {
      +          "additionalProperties": {},
      +          "properties": {
      +            "action": {
      +              "additionalProperties": {},
      +              "description": "The action associated with the result.",
      +              "properties": {
      +                "type": {
      +                  "description": "The type representing the action.",
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "description": "A URL representing the action to be taken.",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "url"
      +              ],
      +              "type": "object"
      +            },
      +            "categories": {
      +              "description": "List of category labels.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "contact": {
      +              "additionalProperties": {},
      +              "description": "The contact of the location.",
      +              "properties": {
      +                "email": {
      +                  "description": "Contact email for the business.",
      +                  "type": "string"
      +                },
      +                "telephone": {
      +                  "description": "Contact telephone number for the business.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "coordinates": {
      +              "description": "Latitude/longitude pair for the location, when available.",
      +              "items": [
      +                {
      +                  "type": "number"
      +                },
      +                {
      +                  "type": "number"
      +                }
      +              ],
      +              "type": "array"
      +            },
      +            "description": {
      +              "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +              "type": "string"
      +            },
      +            "distance": {
      +              "additionalProperties": {},
      +              "description": "Distance from the user's geolocation, if available.",
      +              "properties": {
      +                "units": {
      +                  "description": "The name of the unit associated with the quantity.",
      +                  "type": "string"
      +                },
      +                "value": {
      +                  "description": "The quantity of the unit.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "value",
      +                "units"
      +              ],
      +              "type": "object"
      +            },
      +            "family_friendly": {
      +              "description": "Whether the result is family friendly.",
      +              "type": "boolean"
      +            },
      +            "fetched_content_timestamp": {
      +              "description": "The timestamp of the content when it was fetched.",
      +              "type": "number"
      +            },
      +            "icon_category": {
      +              "description": "Suggested icon category (e.g. \"cafe\").",
      +              "type": "string"
      +            },
      +            "id": {
      +              "description": "Temporary identifier for the location, valid for ~8 hours. Can be used with brave_local_search-style endpoints to fetch additional information.",
      +              "type": "string"
      +            },
      +            "is_source_both": {
      +              "description": "Whether the result is from both local and global sources.",
      +              "type": "boolean"
      +            },
      +            "is_source_local": {
      +              "description": "Whether the result is from local sources.",
      +              "type": "boolean"
      +            },
      +            "language": {
      +              "description": "The language of the page.",
      +              "type": "string"
      +            },
      +            "opening_hours": {
      +              "additionalProperties": {},
      +              "description": "The opening hours of the location.",
      +              "properties": {
      +                "current_day": {
      +                  "description": "Opening hours for the current day. May contain multiple entries when the location closes and reopens during the day.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "abbr_name": {
      +                        "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                        "type": "string"
      +                      },
      +                      "closes": {
      +                        "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                        "type": "string"
      +                      },
      +                      "full_name": {
      +                        "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                        "type": "string"
      +                      },
      +                      "opens": {
      +                        "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "days": {
      +                  "description": "Opening hours for the rest of the week. Each entry may itself be either a single day-hours object or an array of day-hours objects (when a day has multiple open/close intervals).",
      +                  "items": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "abbr_name": {
      +                            "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                            "type": "string"
      +                          },
      +                          "closes": {
      +                            "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                            "type": "string"
      +                          },
      +                          "full_name": {
      +                            "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                            "type": "string"
      +                          },
      +                          "opens": {
      +                            "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      {
      +                        "items": {
      +                          "additionalProperties": {},
      +                          "properties": {
      +                            "abbr_name": {
      +                              "description": "Short name of the day of the week (e.g. \"Mon\").",
      +                              "type": "string"
      +                            },
      +                            "closes": {
      +                              "description": "Closing time in 24h format (e.g. \"17:00\").",
      +                              "type": "string"
      +                            },
      +                            "full_name": {
      +                              "description": "Full name of the day of the week (e.g. \"Monday\").",
      +                              "type": "string"
      +                            },
      +                            "opens": {
      +                              "description": "Opening time in 24h format (e.g. \"09:00\").",
      +                              "type": "string"
      +                            }
      +                          },
      +                          "type": "object"
      +                        },
      +                        "type": "array"
      +                      }
      +                    ]
      +                  },
      +                  "type": "array"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "page_age": {
      +              "description": "The age of the page as a date string.",
      +              "type": "string"
      +            },
      +            "page_fetched": {
      +              "description": "The date the page was last fetched as a date string.",
      +              "type": "string"
      +            },
      +            "pictures": {
      +              "additionalProperties": {},
      +              "description": "Pictures associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "Thumbnail entries for the location.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "alt": {
      +                        "description": "The alt text for the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "bg_color": {
      +                        "description": "The background color of the thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "duplicated": {
      +                        "description": "Whether the thumbnail is duplicated.",
      +                        "type": "boolean"
      +                      },
      +                      "height": {
      +                        "description": "The height of the thumbnail.",
      +                        "type": "number"
      +                      },
      +                      "logo": {
      +                        "description": "Whether the thumbnail is a logo.",
      +                        "type": "boolean"
      +                      },
      +                      "original": {
      +                        "description": "The original URL of the image.",
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      "src": {
      +                        "description": "The served URL of the picture thumbnail.",
      +                        "type": "string"
      +                      },
      +                      "theme": {
      +                        "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                        "type": "string"
      +                      },
      +                      "width": {
      +                        "description": "The width of the thumbnail.",
      +                        "type": "number"
      +                      }
      +                    },
      +                    "required": [
      +                      "src"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "URL where additional pictures can be viewed.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "postal_address": {
      +              "additionalProperties": {},
      +              "description": "The postal address of the location.",
      +              "properties": {
      +                "addressLocality": {
      +                  "description": "The address locality or subregion associated with the location.",
      +                  "type": "string"
      +                },
      +                "addressRegion": {
      +                  "description": "The region associated with the location. Usually a state.",
      +                  "type": "string"
      +                },
      +                "country": {
      +                  "description": "The country associated with the location.",
      +                  "type": "string"
      +                },
      +                "displayAddress": {
      +                  "description": "The displayed address string.",
      +                  "type": "string"
      +                },
      +                "postalCode": {
      +                  "description": "The postal code associated with the location.",
      +                  "type": "string"
      +                },
      +                "streetAddress": {
      +                  "description": "The street address associated with the location.",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "PostalAddress",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "displayAddress"
      +              ],
      +              "type": "object"
      +            },
      +            "price_range": {
      +              "description": "Price classification string for the business (e.g. \"$\", \"$$\").",
      +              "type": "string"
      +            },
      +            "profile": {
      +              "additionalProperties": {},
      +              "description": "The profile associated with the result.",
      +              "properties": {
      +                "img": {
      +                  "type": "string"
      +                },
      +                "long_name": {
      +                  "type": "string"
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "profiles": {
      +              "description": "External profiles (e.g. data providers) associated with the result.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "img": {
      +                    "type": "string"
      +                  },
      +                  "long_name": {
      +                    "type": "string"
      +                  },
      +                  "name": {
      +                    "type": "string"
      +                  },
      +                  "type": {
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "type": "string"
      +                  }
      +                },
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "provider_url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "URL of the upstream provider for this result. May be an empty string."
      +            },
      +            "rating": {
      +              "additionalProperties": {},
      +              "description": "The rating of the result.",
      +              "properties": {
      +                "bestRating": {
      +                  "description": "Highest possible rating value.",
      +                  "type": "number"
      +                },
      +                "is_tripadvisor": {
      +                  "description": "Whether the rating originates from Tripadvisor.",
      +                  "type": "boolean"
      +                },
      +                "profile": {
      +                  "additionalProperties": {},
      +                  "properties": {
      +                    "img": {
      +                      "type": "string"
      +                    },
      +                    "long_name": {
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "type": "string"
      +                    },
      +                    "type": {
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "ratingValue": {
      +                  "description": "The current value of the rating.",
      +                  "type": "number"
      +                },
      +                "reviewCount": {
      +                  "description": "Number of reviews backing the rating.",
      +                  "type": "number"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "results": {
      +              "description": "Web results related to this location.",
      +              "items": {
      +                "additionalProperties": {},
      +                "properties": {
      +                  "description": {
      +                    "description": "Short description of the location (e.g. \"Plaza\", \"Theater\").",
      +                    "type": "string"
      +                  },
      +                  "family_friendly": {
      +                    "description": "Whether the result is family friendly.",
      +                    "type": "boolean"
      +                  },
      +                  "fetched_content_timestamp": {
      +                    "description": "The timestamp of the content when it was fetched.",
      +                    "type": "number"
      +                  },
      +                  "is_source_both": {
      +                    "description": "Whether the result is from both local and global sources.",
      +                    "type": "boolean"
      +                  },
      +                  "is_source_local": {
      +                    "description": "Whether the result is from local sources.",
      +                    "type": "boolean"
      +                  },
      +                  "language": {
      +                    "description": "The language of the page.",
      +                    "type": "string"
      +                  },
      +                  "meta_url": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "favicon": {
      +                        "description": "The favicon used for the URL.",
      +                        "type": "string"
      +                      },
      +                      "hostname": {
      +                        "description": "The lowercased domain name extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "netloc": {
      +                        "description": "The network location part extracted from the URL.",
      +                        "type": "string"
      +                      },
      +                      "path": {
      +                        "description": "The hierarchical path of the URL useful as a display string.",
      +                        "type": "string"
      +                      },
      +                      "scheme": {
      +                        "description": "The protocol scheme extracted from the URL.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "scheme",
      +                      "netloc"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "page_age": {
      +                    "description": "The age of the page as a date string.",
      +                    "type": "string"
      +                  },
      +                  "page_fetched": {
      +                    "description": "The date the page was last fetched as a date string.",
      +                    "type": "string"
      +                  },
      +                  "profile": {
      +                    "additionalProperties": {},
      +                    "description": "The profile associated with the result.",
      +                    "properties": {
      +                      "img": {
      +                        "type": "string"
      +                      },
      +                      "long_name": {
      +                        "type": "string"
      +                      },
      +                      "name": {
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "type": "string"
      +                      },
      +                      "url": {
      +                        "type": "string"
      +                      }
      +                    },
      +                    "type": "object"
      +                  },
      +                  "title": {
      +                    "description": "The display title of the location.",
      +                    "type": "string"
      +                  },
      +                  "url": {
      +                    "anyOf": [
      +                      {
      +                        "format": "uri",
      +                        "type": "string"
      +                      },
      +                      {
      +                        "const": "",
      +                        "type": "string"
      +                      }
      +                    ],
      +                    "description": "Primary URL associated with the location. May be an empty string."
      +                  }
      +                },
      +                "required": [
      +                  "title",
      +                  "url",
      +                  "is_source_local",
      +                  "is_source_both"
      +                ],
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "reviews": {
      +              "additionalProperties": {},
      +              "description": "Reviews associated with the result.",
      +              "properties": {
      +                "results": {
      +                  "description": "A list of trip advisor reviews for the entity.",
      +                  "items": {
      +                    "additionalProperties": {},
      +                    "properties": {
      +                      "author": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "img": {
      +                            "type": "string"
      +                          },
      +                          "long_name": {
      +                            "type": "string"
      +                          },
      +                          "name": {
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "type": "string"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "date": {
      +                        "description": "The date when the review was published.",
      +                        "type": "string"
      +                      },
      +                      "description": {
      +                        "description": "A description seen in the review.",
      +                        "type": "string"
      +                      },
      +                      "rating": {
      +                        "additionalProperties": {},
      +                        "properties": {
      +                          "bestRating": {
      +                            "description": "Highest possible rating value.",
      +                            "type": "number"
      +                          },
      +                          "is_tripadvisor": {
      +                            "description": "Whether the rating originates from Tripadvisor.",
      +                            "type": "boolean"
      +                          },
      +                          "profile": {
      +                            "additionalProperties": {},
      +                            "properties": {
      +                              "img": {
      +                                "type": "string"
      +                              },
      +                              "long_name": {
      +                                "type": "string"
      +                              },
      +                              "name": {
      +                                "type": "string"
      +                              },
      +                              "type": {
      +                                "type": "string"
      +                              },
      +                              "url": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "type": "object"
      +                          },
      +                          "ratingValue": {
      +                            "description": "The current value of the rating.",
      +                            "type": "number"
      +                          },
      +                          "reviewCount": {
      +                            "description": "Number of reviews backing the rating.",
      +                            "type": "number"
      +                          }
      +                        },
      +                        "type": "object"
      +                      },
      +                      "title": {
      +                        "description": "The title of the review.",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "title",
      +                      "description",
      +                      "date"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "reviews_in_foreign_language": {
      +                  "description": "Any reviews available in a foreign language.",
      +                  "type": "boolean"
      +                },
      +                "viewMoreUrl": {
      +                  "description": "A URL to a web page where more information on the result can be seen.",
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "serves_cuisine": {
      +              "description": "List of cuisine categories served.",
      +              "items": {
      +                "type": "string"
      +              },
      +              "type": "array"
      +            },
      +            "thumbnail": {
      +              "additionalProperties": {},
      +              "description": "The thumbnail associated with the location.",
      +              "properties": {
      +                "alt": {
      +                  "description": "The alt text for the thumbnail.",
      +                  "type": "string"
      +                },
      +                "bg_color": {
      +                  "description": "The background color of the thumbnail.",
      +                  "type": "string"
      +                },
      +                "duplicated": {
      +                  "description": "Whether the thumbnail is duplicated.",
      +                  "type": "boolean"
      +                },
      +                "height": {
      +                  "description": "The height of the thumbnail.",
      +                  "type": "number"
      +                },
      +                "logo": {
      +                  "description": "Whether the thumbnail is a logo.",
      +                  "type": "boolean"
      +                },
      +                "original": {
      +                  "description": "The original URL of the image.",
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                "src": {
      +                  "description": "The served URL of the picture thumbnail.",
      +                  "type": "string"
      +                },
      +                "theme": {
      +                  "description": "The theme of the thumbnail (e.g. \"light\", \"dark\").",
      +                  "type": "string"
      +                },
      +                "width": {
      +                  "description": "The width of the thumbnail.",
      +                  "type": "number"
      +                }
      +              },
      +              "required": [
      +                "src"
      +              ],
      +              "type": "object"
      +            },
      +            "timezone": {
      +              "description": "IANA timezone identifier for the location.",
      +              "type": "string"
      +            },
      +            "timezone_offset": {
      +              "description": "UTC offset of the location's timezone, in minutes.",
      +              "type": "number"
      +            },
      +            "title": {
      +              "description": "The display title of the location.",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "location_result",
      +              "description": "Result type identifier.",
      +              "type": "string"
      +            },
      +            "url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "const": "",
      +                  "type": "string"
      +                }
      +              ],
      +              "description": "Primary URL associated with the location. May be an empty string."
      +            },
      +            "zoom_level": {
      +              "description": "Suggested zoom level when displaying on a map.",
      +              "type": "number"
      +            }
      +          },
      +          "required": [
      +            "title",
      +            "url",
      +            "is_source_local",
      +            "is_source_both",
      +            "type",
      +            "provider_url",
      +            "zoom_level"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "postal_address": {
      +        "additionalProperties": {},
      +        "description": "The postal address of the address.",
      +        "properties": {
      +          "addressLocality": {
      +            "description": "The address locality or subregion associated with the location.",
      +            "type": "string"
      +          },
      +          "addressRegion": {
      +            "description": "The region associated with the location. Usually a state.",
      +            "type": "string"
      +          },
      +          "country": {
      +            "description": "The country associated with the location.",
      +            "type": "string"
      +          },
      +          "displayAddress": {
      +            "description": "The displayed address string.",
      +            "type": "string"
      +          },
      +          "postalCode": {
      +            "description": "The postal code associated with the location.",
      +            "type": "string"
      +          },
      +          "streetAddress": {
      +            "description": "The street address associated with the location.",
      +            "type": "string"
      +          },
      +          "type": {
      +            "const": "PostalAddress",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "type",
      +          "displayAddress"
      +        ],
      +        "type": "object"
      +      },
      +      "type": {
      +        "description": "Result is \"address\" when the result refers to an explicit street + number, but \"street\" when it refers only to the street itself.",
      +        "enum": [
      +          "address",
      +          "street"
      +        ],
      +        "type": "string"
      +      },
      +      "zoom_level": {
      +        "description": "Suggested zoom level when displaying on a map.",
      +        "type": "number"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "name",
      +      "coordinates",
      +      "pois",
      +      "pois_nearby",
      +      "zoom_level"
      +    ],
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
  3. Addedv2.0.66

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses that a single call may populate any combination of fields based on query shape, that 'radius' is a bias rather than a hard limit, and that 'count' caps results. It also details 'location' format requirements. These behaviors extend well beyond the openWorldHint annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with clear headings and bullet points, leading with purpose before details. It is dense with information but not redundant; every sentence contributes to selection or invocation understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers all key usage scenarios, parameter interdependencies, and edge cases (e.g., radius not hard-limiting, location format). Given the output schema and full schema coverage, it omits only what is already structured, making it complete for an agent to call correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Even with 100% schema coverage, the description adds significant meaning: it maps query shapes to response types, requires geographic anchors for address/street queries, clarifies 'location' formatting, and explains radius/count behavior. This goes far beyond the schema's individual parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it 'Searches Brave's Place Search API' and enumerates the response categories (results, cities, addresses, streets, location). The title and content unambiguously differentiate it from sibling search tools by focusing on places and geographic data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

A dedicated 'When to use' section lists five distinct scenarios with concrete examples (POIs near coordinates, general browsing, city disambiguation, address resolution, street lookup). It also explains anchor requirements and query prerequisites, giving agents explicit decision criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/brave/brave-search-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server