changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "area_km2": {
+ "description": "Land area in square kilometers",
+ "type": "number"
+ },
+ "capital": {
+ "description": "Capital city or 'N/A'",
+ "type": "string"
+ },
+ "codes": {
+ "description": "ISO country 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": "List of currencies with symbols",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "languages": {
+ "description": "List of official languages",
+ "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": "number"
+ },
+ "region": {
+ "description": "Geographic region",
+ "type": "string"
+ },
+ "subregion": {
+ "description": "Geographic subregion",
+ "type": "string"
+ },
+ "timezones": {
+ "description": "List of timezones used in country",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "name",
+ "official_name",
+ "codes",
+ "capital",
+ "population",
+ "area_km2",
+ "region",
+ "subregion",
+ "languages",
+ "currencies",
+ "timezones"
+ ],
+ "type": "object"
+}