addedInput schema / properties / cursor
Added value: +{
+ "description": "Opaque pagination cursor from a previous call's nextCursor. Omit for the first page; pass it back to fetch the next page of matches over a stable order.",
+ "type": "string"
+}
changedInput schema / properties / limit / description
Previous value: -"Maximum number of results to return (1–100). Default is 20."New value: +"Page size — maximum datasets returned per page (1–100). Default is 20. To retrieve matches beyond one page, pass the returned nextCursor back as cursor; the page size is fixed by this first call."
changedInput schema / properties / query / description
Previous value: -"Search terms — case-insensitive substring match against dataset labels."New value: +"Search terms. Split on whitespace into tokens; every token must match (AND), case-insensitively, somewhere across the dataset label, theme breadcrumb, or code. Word order does not matter, so \"business demography NUTS 3\" or \"regional economic accounts\" resolve without naming a label verbatim."
changedOutput schema / properties / datasets / description
Previous value: -"Matching datasets, up to the requested limit."New value: +"Matching datasets for the current page, up to the requested limit."
addedOutput schema / properties / nextCursor
Added value: +{
+ "description": "Opaque cursor for the next page of matches. Pass it back as cursor. Omitted on the last page.",
+ "type": "string"
+}
addedOutput schema / properties / nextStep
Added value: +{
+ "description": "Suggested next action based on these results. Populated when there is a clear follow-up call.",
+ "type": "string"
+}
changedOutput schema / properties / totalMatches / description
Previous value: -"Total datasets matching the query before the limit."New value: +"Total datasets matching the query across all pages, before the page limit."
addedOutput schema / properties / truncated
Added value: +{
+ "description": "True when more matches remain beyond this page — pass nextCursor as cursor to fetch them.",
+ "type": "boolean"
+}
changedOutput schema / required
Previous value: -[
- "datasets",
- "query",
- "totalMatches"
-]New value: +[
+ "datasets",
+ "query",
+ "totalMatches",
+ "truncated"
+]