{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Country", "type": "object", "description": "Available information for the Country such as the name and code", "properties": { "countryCode": { "type": "string", "description": "Three digit alpha country code as defined in ISO 3166-1" }, "countryName": { "type": "string", "description": "Name of the country" } } }