{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Country", "title": "Country", "type": "object", "properties": { "id": { "type": "string", "example": "abc123" }, "descriptor": { "type": "string", "example": "example_value" }, "countryCode": { "type": "string", "description": "The ISO 3166-1 alpha-3 country code.", "example": "example_value" }, "alpha2Code": { "type": "string", "description": "The ISO 3166-1 alpha-2 country code.", "example": "example_value" }, "name": { "type": "string", "example": "Example Title" } } }