Country data
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-schema/aerodatabox-country-contract-schema.json", "title": "CountryContract", "description": "Country data", "type": "object", "properties": { "code": { "minLength": 1, "type": "string", "description": "Code" }, "name": { "type": "string", "description": "Name", "nullable": true } }, "required": [ "code" ], "additionalProperties": false }