addedInput schema / properties / sort_order
Added value: +{
+ "description": "Observation order: desc = newest first (default), asc = oldest first.",
+ "enum": [
+ "asc",
+ "desc"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / count / description
Previous value: -"Total number of observations returned"New value: +"Total observations FRED holds for the requested window — NOT the number returned; compare with `returned`."
addedOutput schema / properties / frequency
Added value: +{
+ "description": "Publication frequency of the series.",
+ "type": "string"
+}
addedOutput schema / properties / note
Added value: +{
+ "description": "Present when the list was truncated or an empty request window was widened.",
+ "type": "string"
+}
changedOutput schema / properties / observation_end / description
Previous value: -"End date of observations in YYYY-MM-DD format"New value: +"Last date this series actually covers, from FRED's series metadata."
addedOutput schema / properties / observation_order
Added value: +{
+ "description": "Order of the `observations` array. Defaults to newest_first; pass sort_order:'asc' for oldest_first.",
+ "enum": [
+ "newest_first",
+ "oldest_first"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / observation_start / description
Previous value: -"Start date of observations in YYYY-MM-DD format"New value: +"First date this series actually covers, from FRED's series metadata."
addedOutput schema / properties / requested_end
Added value: +{
+ "description": "The observation_end the caller passed, echoed back. Absent when the caller passed none.",
+ "type": "string"
+}
addedOutput schema / properties / requested_start
Added value: +{
+ "description": "The observation_start the caller passed, echoed back. Absent when the caller passed none.",
+ "type": "string"
+}
addedOutput schema / properties / returned
Added value: +{
+ "description": "How many observations are actually in `observations` (capped by `limit`, default 20).",
+ "type": "number"
+}
addedOutput schema / properties / series_title
Added value: +{
+ "description": "Series title from FRED metadata.",
+ "type": "string"
+}
addedOutput schema / properties / truncated
Added value: +{
+ "description": "True when `returned` is less than `count` — raise `limit` to see the rest.",
+ "type": "boolean"
+}
addedOutput schema / properties / units
Added value: +{
+ "description": "Units the values are reported in.",
+ "type": "string"
+}
changedOutput schema / required
Previous value: -[
- "series_id",
- "count",
- "observation_start",
- "observation_end",
- "observations"
-]New value: +[
+ "series_id",
+ "count",
+ "observations"
+]