{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/frankfurter/refs/heads/main/json-schema/v2-currency-schema.json", "title": "Currency", "description": "Currency schema from Frankfurter API", "type": "object", "properties": { "iso_code": { "type": "string", "description": "ISO 4217 currency code" }, "iso_numeric": { "type": [ "string", "null" ], "description": "ISO 4217 numeric code" }, "name": { "type": "string", "description": "Full currency name" }, "symbol": { "type": [ "string", "null" ], "description": "Currency symbol" }, "start_date": { "type": [ "string", "null" ], "format": "date", "description": "Earliest available date" }, "end_date": { "type": [ "string", "null" ], "format": "date", "description": "Latest available date" } }, "required": [ "iso_code", "name" ] }