changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "country": {
+ "description": "Country name or code",
+ "type": "string"
+ },
+ "country_id": {
+ "description": "World Bank country ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "data": {
+ "description": "Time-series population data sorted by year descending",
+ "items": {
+ "properties": {
+ "value": {
+ "description": "Total population value for the year",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Year of the observation",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "date_range": {
+ "description": "Requested date range in start:end format",
+ "type": "string"
+ },
+ "indicator_id": {
+ "description": "World Bank indicator code",
+ "type": "string"
+ },
+ "indicator_name": {
+ "description": "Full indicator name/description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_updated": {
+ "description": "Last update timestamp from World Bank API",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_records": {
+ "description": "Total number of records available",
+ "type": "number"
+ }
+ },
+ "required": [
+ "country",
+ "country_id",
+ "indicator_id",
+ "indicator_name",
+ "date_range",
+ "total_records",
+ "last_updated",
+ "data"
+ ],
+ "type": "object"
+}