changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "columns": {
+ "description": "Column names in the data (entity, year, and value columns)",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of rows returned",
+ "type": "number"
+ },
+ "rows": {
+ "description": "Long-format data rows with entity, year, and indicator values",
+ "items": {
+ "additionalProperties": {
+ "description": "Value columns (mixed number or string values)"
+ },
+ "properties": {
+ "entity": {
+ "description": "Country or region name",
+ "type": "string"
+ },
+ "year": {
+ "description": "Year of observation (null if not available)",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "slug": {
+ "description": "OWID chart slug",
+ "type": "string"
+ },
+ "source_url": {
+ "description": "URL to the indicator on ourworldindata.org",
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "source_url",
+ "columns",
+ "count",
+ "rows"
+ ],
+ "type": "object"
+}