changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "admin_region": {
+ "description": "Administrative region name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "capital": {
+ "description": "Capital city name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "World Bank country ID",
+ "type": "string"
+ },
+ "income_level": {
+ "description": "Income level classification",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "iso2": {
+ "description": "ISO 3166-1 alpha-2 country code",
+ "type": "string"
+ },
+ "latitude": {
+ "description": "Capital city latitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "lending_type": {
+ "description": "World Bank lending type",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Capital city longitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Full country name",
+ "type": "string"
+ },
+ "region": {
+ "description": "World region name",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "iso2",
+ "name",
+ "region",
+ "admin_region",
+ "income_level",
+ "lending_type",
+ "capital",
+ "longitude",
+ "latitude"
+ ],
+ "type": "object"
+}