changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of countries speaking the language",
+ "type": "integer"
+ },
+ "countries": {
+ "description": "Countries where language is spoken, sorted by population descending",
+ "items": {
+ "properties": {
+ "capital": {
+ "description": "Capital city or N/A if not available",
+ "type": "string"
+ },
+ "name": {
+ "description": "Common country name",
+ "type": "string"
+ },
+ "population": {
+ "description": "Total population",
+ "type": "integer"
+ },
+ "region": {
+ "description": "Geographic region",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "capital",
+ "region",
+ "population"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "language": {
+ "description": "Language name queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "language",
+ "count",
+ "countries"
+ ],
+ "type": "object"
+}