{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Airline", "description": "An airline resource containing identifying codes and names for a single airline carrier.", "type": "object", "properties": { "type": { "type": "string", "description": "Resource type identifier." }, "iataCode": { "type": "string", "description": "Two-letter IATA airline designator code." }, "icaoCode": { "type": "string", "description": "Three-letter ICAO airline designator code." }, "businessName": { "type": "string", "description": "The official business name of the airline." }, "commonName": { "type": "string", "description": "The commonly used abbreviated name of the airline." } } }