{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentServiceProviderIssuerTransactionListing", "title": "PaymentServiceProviderIssuerTransactionListing", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of this transaction.", "readOnly": true, "writeOnly": false }, "created": { "type": "string", "description": "The time this transaction was created.", "readOnly": true, "writeOnly": false }, "updated": { "type": "string", "description": "The time this transaction was last updated.", "readOnly": true, "writeOnly": false }, "public_uuid": { "type": "string", "description": "The public uuid used to identify this transaction.", "readOnly": true, "writeOnly": false }, "counterparty_alias": { "type": "object", "description": "The counter party this transaction should be sent to.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/LabelMonetaryAccount" }, "amount": { "type": "object", "description": "The money amount of this transaction", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "description": { "type": "string", "description": "The description of this transaction, to be shown to the user and to the counter party.", "readOnly": true, "writeOnly": false }, "url_redirect": { "type": "string", "description": "The url to which the user should be redirected once the transaction is accepted or rejected.", "readOnly": true, "writeOnly": false }, "time_expiry": { "type": "string", "description": "The (optional) expiration time of the transaction. Defaults to 10 minutes.", "readOnly": true, "writeOnly": false }, "status": { "type": "string", "description": "The status of the transaction. Can only be used for cancelling the transaction.", "readOnly": true, "writeOnly": false }, "alias": { "type": "object", "description": "The monetary account this transaction is made from.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/LabelMonetaryAccount" } } }