{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BunqMeFundraiserResult", "title": "BunqMeFundraiserResult", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the bunq.me.", "readOnly": true, "writeOnly": false }, "created": { "type": "string", "description": "The timestamp when the bunq.me was created.", "readOnly": true, "writeOnly": false }, "updated": { "type": "string", "description": "The timestamp when the bunq.me was last updated.", "readOnly": true, "writeOnly": false }, "bunqme_fundraiser_profile": { "type": "object", "description": "The bunq.me fundraiser profile.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/BunqMeFundraiserProfile" }, "payments": { "type": "array", "description": "The list of payments, paid to the bunq.me fundraiser profile.", "readOnly": true, "writeOnly": false, "items": { "$ref": "#/components/schemas/Payment" } } } }