changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "area_km2": {
+ "description": "Total area in square kilometers",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "capital": {
+ "description": "Capital city or N/A if not available",
+ "type": "string"
+ },
+ "codes": {
+ "properties": {
+ "alpha2": {
+ "description": "ISO 3166-1 alpha-2 code",
+ "type": "string"
+ },
+ "alpha3": {
+ "description": "ISO 3166-1 alpha-3 code",
+ "type": "string"
+ }
+ },
+ "required": [
+ "alpha2",
+ "alpha3"
+ ],
+ "type": "object"
+ },
+ "currencies": {
+ "description": "Currencies used in the country",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "flag": {
+ "description": "Flag emoji or empty string",
+ "type": "string"
+ },
+ "languages": {
+ "description": "Languages spoken in the country",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Common country name",
+ "type": "string"
+ },
+ "official_name": {
+ "description": "Official country name",
+ "type": "string"
+ },
+ "population": {
+ "description": "Total population",
+ "type": "integer"
+ },
+ "region": {
+ "description": "Geographic region",
+ "type": "string"
+ },
+ "subregion": {
+ "description": "Subregion name, empty if not available",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "official_name",
+ "codes",
+ "capital",
+ "region",
+ "subregion",
+ "population",
+ "area_km2",
+ "languages",
+ "currencies",
+ "flag"
+ ],
+ "type": "object"
+}