Bunq · Schema

SchedulePaymentRead

Banking

Properties

Name Type Description
payment object The payment details.
schedule object The schedule details.
status string The schedule status, options: ACTIVE, FINISHED, CANCELLED.
View JSON Schema on GitHub

JSON Schema

bunq-schedulepaymentread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchedulePaymentRead",
  "title": "SchedulePaymentRead",
  "type": "object",
  "properties": {
    "payment": {
      "type": "object",
      "description": "The payment details.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/SchedulePaymentEntry"
    },
    "schedule": {
      "type": "object",
      "description": "The schedule details.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Schedule"
    },
    "status": {
      "type": "string",
      "description": "The schedule status, options: ACTIVE, FINISHED, CANCELLED.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}