{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BunqMeTab", "title": "BunqMeTab", "type": "object", "properties": { "bunqme_tab_entry": { "type": "object", "description": "The bunq.me entry containing the payment information.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/BunqMeTabEntry" }, "status": { "type": "string", "description": "The status of the bunq.me. Ignored in POST requests but can be used for cancelling the bunq.me by setting status as CANCELLED with a PUT request.", "readOnly": false, "writeOnly": false }, "event_id": { "type": "integer", "description": "The ID of the related event if the bunqMeTab made by 'split' functionality.", "readOnly": false, "writeOnly": true } }, "required": [ "bunqme_tab_entry" ] }