changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of records returned",
+ "type": "number"
+ },
+ "data": {
+ "description": "Time series data points (max 100 returned)",
+ "items": {
+ "properties": {
+ "area": {
+ "description": "Geographic area name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Series description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Time period (e.g., date or year)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "process": {
+ "description": "Process or measurement type",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "product": {
+ "description": "Product type",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "units": {
+ "description": "Unit of measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Numeric value for the period",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "description": {
+ "description": "Series description from EIA API",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "series": {
+ "description": "Electricity series type requested",
+ "type": "string"
+ },
+ "total": {
+ "description": "Total number of records available",
+ "type": "number"
+ },
+ "truncated": {
+ "description": "True if more than 100 records available",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "series",
+ "total",
+ "description",
+ "count",
+ "data",
+ "truncated"
+ ],
+ "type": "object"
+}