addedInput schema / properties / limit
Added value: +{
+ "default": 50,
+ "description": "Maximum dataflows to return in this call. Default 50, ceiling 200; total_count reports how many matched, so a partial page is always recognizable as one.",
+ "maximum": 200,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Number of matching dataflows to skip before this page. Combine with limit to page through a broad or unfiltered catalog.",
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
addedOutput schema / properties / cap
Added value: +{
+ "description": "The limit that bounded this page.",
+ "type": "number"
+}
changedOutput schema / properties / dataflows / description
Previous value: -"Matching dataflows; pass the id to imf_get_database to resolve dimension codelists."New value: +"This page of matching dataflows; pass the id to imf_get_database to resolve dimension codelists."
changedOutput schema / properties / dataflows / items / properties / description / description
Previous value: -"Extended description of the dataflow, if available."New value: +"Short description, cut to 200 characters and ended with … when longer. imf_get_database and the imf://database/{dataflow_id} resource return the full text."
changedOutput schema / properties / notice / description
Previous value: -"Populated when the filter matches nothing — explains why and suggests next steps."New value: +"Populated when the filter matches nothing, or when matches remain beyond this page — explains why and names the next offset to request."
addedOutput schema / properties / offset
Added value: +{
+ "description": "Number of matching dataflows skipped before this page.",
+ "type": "number"
+}
addedOutput schema / properties / returned_count
Added value: +{
+ "description": "Dataflows in this page — the length of dataflows.",
+ "type": "number"
+}
addedOutput schema / properties / shown
Added value: +{
+ "description": "Dataflows returned in this page.",
+ "type": "number"
+}
changedOutput schema / properties / total_count / description
Previous value: -"Total number of matching dataflows returned."New value: +"Dataflows matching filter and include_vintages, before limit and offset are applied. Exceeds returned_count when more pages remain."
addedOutput schema / properties / truncated
Added value: +{
+ "description": "True when matching dataflows remain beyond this page.",
+ "type": "boolean"
+}
changedOutput schema / required
Previous value: -[
- "dataflows",
- "total_count"
-]New value: +[
+ "dataflows",
+ "total_count",
+ "returned_count",
+ "offset"
+]