{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentServiceProviderDraftPaymentRead", "title": "PaymentServiceProviderDraftPaymentRead", "type": "object", "properties": { "sender_iban": { "type": "string", "description": "The sender IBAN.", "readOnly": true, "writeOnly": false }, "receiver_iban": { "type": "string", "description": "The sender IBAN.", "readOnly": true, "writeOnly": false }, "amount": { "type": "object", "description": "The amount of the draft payment", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "status": { "type": "string", "description": "The status of the draft payment", "readOnly": true, "writeOnly": false } } }