changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "series": {
+ "description": "List of matching series",
+ "items": {
+ "properties": {
+ "frequency": {
+ "description": "Data frequency (d, w, m, q, a, etc.)",
+ "type": "string"
+ },
+ "notes": {
+ "description": "Additional notes about the series",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "observation_end": {
+ "description": "Latest available observation date",
+ "type": "string"
+ },
+ "observation_start": {
+ "description": "First available observation date",
+ "type": "string"
+ },
+ "popularity": {
+ "description": "Series popularity score",
+ "type": "number"
+ },
+ "seasonal_adjustment": {
+ "description": "Seasonal adjustment method",
+ "type": "string"
+ },
+ "series_id": {
+ "description": "FRED series ID",
+ "type": "string"
+ },
+ "title": {
+ "description": "Full title of the series",
+ "type": "string"
+ },
+ "units": {
+ "description": "Units of measurement",
+ "type": "string"
+ }
+ },
+ "required": [
+ "series_id",
+ "title",
+ "units",
+ "frequency",
+ "seasonal_adjustment",
+ "observation_start",
+ "observation_end",
+ "popularity",
+ "notes"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_matches": {
+ "description": "Total number of matching series",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_matches",
+ "series"
+ ],
+ "type": "object"
+}