{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Currency", "title": "Currency", "type": "object", "properties": { "isocode": { "type": "string", "description": "ISO 4217 currency code" }, "name": { "type": "string", "description": "Currency name" }, "symbol": { "type": "string", "description": "Currency symbol" } } }