{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Amount", "title": "Amount", "type": "object", "properties": { "value": { "type": "string", "description": "The amount formatted to two decimal places.", "readOnly": false, "writeOnly": false }, "currency": { "type": "string", "description": "The currency of the amount. It is an ISO 4217 formatted currency code.", "readOnly": false, "writeOnly": false } } }