{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Currency", "title": "Currency", "type": "object", "properties": { "id": { "type": "string", "example": "abc123" }, "descriptor": { "type": "string", "example": "example_value" }, "currencyCode": { "type": "string", "description": "The ISO 4217 currency code.", "example": "example_value" }, "name": { "type": "string", "example": "Example Title" }, "numericCode": { "type": "string", "example": "example_value" } } }