changedInput schema / examples
Previous value: -[
- {
- "country": "US",
- "database_id": "IFS",
- "end": "2023",
- "frequency": "A",
- "indicator": "NGDP_XDC",
- "start": "2018"
- },
- {
- "database_id": "WEO",
- "end": "2024",
- "frequency": "A",
- "indicator": "NGDPD",
- "start": "2020"
- }
-]New value: +[
+ {
+ "dataset": "CPI",
+ "dimensions": {
+ "COICOP_1999": "_T",
+ "COUNTRY": "USA",
+ "FREQUENCY": "M",
+ "INDEX_TYPE": "CPI",
+ "TYPE_OF_TRANSFORMATION": "IX"
+ },
+ "end": "2024-04",
+ "start": "2024-01"
+ },
+ {
+ "dataset": "CPI",
+ "dimensions": {
+ "COUNTRY": "USA",
+ "FREQUENCY": "M"
+ },
+ "end": "2024-02",
+ "limit": 20,
+ "start": "2024-01"
+ }
+]
removedInput schema / properties / country
Removed value: -{
- "description": "ISO 2-letter country code, e.g. \"US\", \"GB\", \"JP\". Omit for all countries.",
- "type": "string"
-}
removedInput schema / properties / database_id
Removed value: -{
- "description": "IMF database ID, e.g. \"IFS\", \"BOP\", \"DOT\", \"WEO\"",
- "type": "string"
-}
addedInput schema / properties / dataset
Added value: +{
+ "description": "Dataset id from get_datasets, e.g. \"CPI\", \"WEO\", \"BOP\", \"IMTS\".",
+ "type": "string"
+}
addedInput schema / properties / dimensions
Added value: +{
+ "additionalProperties": {
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ ]
+ },
+ "description": "Map of dimension code to value, e.g. {\"COUNTRY\":\"USA\",\"FREQUENCY\":\"M\"}. A value may be a list to OR codes together: {\"COUNTRY\":[\"USA\",\"GBR\"]}. Omitted dimensions match everything. Use search_indicators to discover valid names and codes.",
+ "type": "object"
+}
changedInput schema / properties / end / description
Previous value: -"End period, e.g. \"2023\" or \"2023-Q4\" or \"2023-12\""New value: +"End period, e.g. \"2025\", \"2024-12\", \"2024-Q4\"."
removedInput schema / properties / frequency
Removed value: -{
- "description": "Data frequency: \"A\" (annual), \"Q\" (quarterly), \"M\" (monthly)",
- "type": "string"
-}
removedInput schema / properties / indicator
Removed value: -{
- "description": "Indicator code, e.g. \"NGDP_XDC\" for nominal GDP. Use search_indicators to find codes.",
- "type": "string"
-}
addedInput schema / properties / limit
Added value: +{
+ "description": "Max series to return, 1-100 (default 20).",
+ "type": "number"
+}
changedInput schema / properties / start / description
Previous value: -"Start period, e.g. \"2018\" or \"2018-Q1\" or \"2018-01\""New value: +"Start period, e.g. \"2020\", \"2024-01\", \"2024-Q1\"."
changedInput schema / required
Previous value: -[
- "database_id",
- "frequency",
- "indicator"
-]New value: +[
+ "dataset"
+]