{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SofortMerchantTransactionListing",
"title": "SofortMerchantTransactionListing",
"type": "object",
"properties": {
"monetary_account_id": {
"type": "integer",
"description": "The id of the monetary account this sofort 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"
},
"amount_requested": {
"type": "object",
"description": "The requested amount of money to add.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"issuer": {
"type": "string",
"description": "The BIC of the issuer.",
"readOnly": true,
"writeOnly": false
},
"issuer_authentication_url": {
"type": "string",
"description": "The URL to visit to ",
"readOnly": true,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The status of the transaction.",
"readOnly": true,
"writeOnly": false
},
"error_message": {
"type": "array",
"description": "The error message of the transaction.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/Error"
}
},
"transaction_identifier": {
"type": "string",
"description": "The 'transaction ID' of the Sofort transaction.",
"readOnly": true,
"writeOnly": false
}
}
}