{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-country-schema.json", "title": "Country", "description": "Contains information about the country where the remote IP address is located.", "type": "object", "properties": { "CountryCode": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "countryCode" }, "description": "The country code of the remote IP address." } ] }, "CountryName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "countryName" }, "description": "The country name of the remote IP address." } ] } } }