Bunq · Schema

BunqMeFundraiserResultRead

Banking

Properties

Name Type Description
id integer The id of the bunq.me.
created string The timestamp when the bunq.me was created.
updated string The timestamp when the bunq.me was last updated.
bunqme_fundraiser_profile object The bunq.me fundraiser profile.
payments array The list of payments, paid to the bunq.me fundraiser profile.
View JSON Schema on GitHub

JSON Schema

bunq-bunqmefundraiserresultread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BunqMeFundraiserResultRead",
  "title": "BunqMeFundraiserResultRead",
  "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"
      }
    }
  }
}