Bunq · Schema

PaymentServiceProviderDraftPaymentRead

Banking

Properties

Name Type Description
sender_iban string The sender IBAN.
receiver_iban string The sender IBAN.
amount object The amount of the draft payment
status string The status of the draft payment
View JSON Schema on GitHub

JSON Schema

bunq-paymentserviceproviderdraftpaymentread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentServiceProviderDraftPaymentRead",
  "title": "PaymentServiceProviderDraftPaymentRead",
  "type": "object",
  "properties": {
    "sender_iban": {
      "type": "string",
      "description": "The sender IBAN.",
      "readOnly": true,
      "writeOnly": false
    },
    "receiver_iban": {
      "type": "string",
      "description": "The sender IBAN.",
      "readOnly": true,
      "writeOnly": false
    },
    "amount": {
      "type": "object",
      "description": "The amount of the draft payment",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "status": {
      "type": "string",
      "description": "The status of the draft payment",
      "readOnly": true,
      "writeOnly": false
    }
  }
}