{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BunqMeTabListing",
"title": "BunqMeTabListing",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the created 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
},
"time_expiry": {
"type": "string",
"description": "The timestamp of when the bunq.me expired or will expire.",
"readOnly": true,
"writeOnly": false
},
"monetary_account_id": {
"type": "integer",
"description": "The id of the MonetaryAccount the bunq.me was sent from.",
"readOnly": true,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The status of the bunq.me. Can be WAITING_FOR_PAYMENT, CANCELLED or EXPIRED.",
"readOnly": true,
"writeOnly": false
},
"type": {
"type": "string",
"description": "The type of the bunq.me Tab. Should be BUNQ_ME",
"readOnly": true,
"writeOnly": false
},
"alias_monetary_account": {
"type": "object",
"description": "The LabelMonetaryAccount with the public information of the User and the MonetaryAccount that created the bunq.me link.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelMonetaryAccount"
},
"bunqme_tab_share_url": {
"type": "string",
"description": "The url that points to the bunq.me page.",
"readOnly": true,
"writeOnly": false
},
"bunqme_tab_entry": {
"type": "object",
"description": "The bunq.me entry containing the payment information.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/BunqMeTabEntry"
},
"bunqme_tab_entries": {
"type": "array",
"description": "The bunq.me tab entries attached to this bunq.me Tab.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/BunqMeTabEntry"
}
},
"result_inquiries": {
"type": "array",
"description": "The list of bunq.me result Inquiries successfully made and paid.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/BunqMeTabResultInquiry"
}
}
}
}