addedInput schema / properties / kind
Added value: +{
+ "description": "Restrict results to one entity kind. Omit to search every kind.",
+ "enum": [
+ "clinic",
+ "doctor",
+ "treatment",
+ "credential",
+ "service",
+ "policy"
+ ],
+ "type": "string"
+}
changedInput schema / properties / query / description
Previous value: -"Free-text search query, e.g. a doctor name, treatment name, or clinic name"New value: +"Free-text search query in any of the seven site languages, e.g. \"dental implant price\", \"implant fiyatı\", \"Zahnimplantat Preis\", \"цена импланта\""
addedInput schema / properties / top_k
Added value: +{
+ "description": "Maximum number of results to return (default 10, maximum 50). Results are ordered by relevance, so the first rows are the strongest matches. total_matches reports how many entities matched in total.",
+ "maximum": 50,
+ "minimum": 1,
+ "type": "integer"
+}
addedOutput schema / properties / data / properties / results / items / properties / id
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / data / properties / results / items / properties / title
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / data / properties / results / items / properties / url
Added value: +{
+ "type": "string"
+}
changedOutput schema / properties / data / properties / results / items / required
Previous value: -[
- "entity_id",
- "kind",
- "name",
- "canonical_url",
- "summary"
-]New value: +[
+ "id",
+ "title",
+ "url",
+ "entity_id",
+ "kind",
+ "name",
+ "canonical_url",
+ "summary"
+]
addedOutput schema / properties / data / properties / returned
Added value: +{
+ "type": "integer"
+}
addedOutput schema / properties / data / properties / total_matches
Added value: +{
+ "description": "How many entities matched before top_k truncation.",
+ "type": "integer"
+}
addedOutput schema / properties / data / properties / truncated
Added value: +{
+ "description": "True when total_matches exceeded top_k and results were cut.",
+ "type": "boolean"
+}
changedOutput schema / properties / data / required
Previous value: -[
- "results"
-]New value: +[
+ "results",
+ "total_matches",
+ "returned",
+ "truncated"
+]