{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IdealMerchantTransaction", "title": "IdealMerchantTransaction", "type": "object", "properties": { "amount_requested": { "type": "object", "description": "The requested amount of money to add.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "issuer": { "type": "string", "description": "The BIC of the issuer.", "readOnly": false, "writeOnly": false }, "monetary_account_id": { "type": "integer", "description": "The id of the monetary account this ideal merchant transaction links to.", "readOnly": true, "writeOnly": false }, "alias": { "type": "object", "description": "The alias of the monetary account to add money to.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/LabelMonetaryAccount" }, "counterparty_alias": { "type": "object", "description": "The alias of the monetary account the money comes from.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/LabelMonetaryAccount" }, "amount_guaranteed": { "type": "object", "description": "In case of a successful transaction, the amount of money that will be transferred.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "expiration": { "type": "string", "description": "When the transaction will expire.", "readOnly": true, "writeOnly": false }, "issuer_name": { "type": "string", "description": "The Name of the issuer.", "readOnly": true, "writeOnly": false }, "issuer_authentication_url": { "type": "string", "description": "The URL to visit to ", "readOnly": true, "writeOnly": false }, "purchase_identifier": { "type": "string", "description": "The 'purchase ID' of the iDEAL transaction.", "readOnly": true, "writeOnly": false }, "status": { "type": "string", "description": "The status of the transaction.", "readOnly": true, "writeOnly": false }, "status_timestamp": { "type": "string", "description": "When the status was last updated.", "readOnly": true, "writeOnly": false }, "transaction_identifier": { "type": "string", "description": "The 'transaction ID' of the iDEAL transaction.", "readOnly": true, "writeOnly": false } } }