{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ipgeolocation/refs/heads/main/json-schema/ip-location-currency-schema.json", "title": "Currency", "description": "Local currency of the country where the IP is located.", "type": "object", "properties": { "code": { "type": "string", "description": "ISO 4217 currency code.", "example": "SEK" }, "name": { "type": "string", "description": "Currency name.", "example": "Swedish Krona" }, "symbol": { "type": "string", "description": "Currency symbol.", "example": "kr" } } }