changedOutput schema / (root)
Previous value: -{
- "properties": {
- "count": {
- "description": "Total number of countries returned",
- "type": "number"
- },
- "countries": {
- "items": {
- "properties": {
- "capital": {
- "description": "Capital city name",
- "type": [
- "string",
- "null"
- ]
- },
- "currency": {
- "description": "Currency code",
- "type": [
- "string",
- "null"
- ]
- },
- "currency_symbol": {
- "description": "Currency symbol",
- "type": [
- "string",
- "null"
- ]
- },
- "iso2": {
- "description": "ISO2 country code",
- "type": "string"
- },
- "iso3": {
- "description": "ISO3 country code",
- "type": "string"
- },
- "name": {
- "description": "Country name",
- "type": "string"
- },
- "phone_code": {
- "description": "International phone code",
- "type": [
- "string",
- "null"
- ]
- },
- "region": {
- "description": "Geographical region",
- "type": [
- "string",
- "null"
- ]
- },
- "subregion": {
- "description": "Geographical subregion",
- "type": [
- "string",
- "null"
- ]
- }
- },
- "required": [
- "name",
- "iso2",
- "iso3",
- "capital",
- "phone_code",
- "currency",
- "currency_symbol",
- "region",
- "subregion"
- ],
- "type": "object"
- },
- "type": "array"
- }
- },
- "required": [
- "count",
- "countries"
- ],
- "type": "object"
-}New value: +null