changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "data": {
+ "description": "Array of airline objects",
+ "items": {
+ "properties": {
+ "airline_name": {
+ "description": "Airline name",
+ "type": "string"
+ },
+ "airline_url": {
+ "description": "Airline website URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country_iso2": {
+ "description": "Country ISO code",
+ "type": "string"
+ },
+ "country_name": {
+ "description": "Country name",
+ "type": "string"
+ },
+ "fleet_average_age": {
+ "description": "Average aircraft age",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "iata_code": {
+ "description": "2-letter IATA code",
+ "type": "string"
+ },
+ "icao_code": {
+ "description": "3-letter ICAO code",
+ "type": "string"
+ },
+ "type": {
+ "description": "Airline type (e.g., scheduled, charter)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "pagination": {
+ "description": "Pagination metadata",
+ "properties": {
+ "count": {
+ "type": "number"
+ },
+ "limit": {
+ "type": "number"
+ },
+ "offset": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}