Bunq · Schema

RegistrySettlementListing

Banking

Properties

Name Type Description
id integer The id of the RegistrySettlement.
created string The timestamp of the RegistrySettlement's creation.
updated string The timestamp of the RegistrySettlement's last update.
settlement_time string The timestamp of the Registry's settlement.
total_amount_spent object The total amount spent for the RegistrySettlement.
number_of_entries integer The number of RegistryEntry's associated with this RegistrySettlement.
settled_by_alias object The membership of the user that settled the Registry.
membership_settled object The membership of the user that has settled the registry.
items array List of RegistrySettlementItems
View JSON Schema on GitHub

JSON Schema

bunq-registrysettlementlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegistrySettlementListing",
  "title": "RegistrySettlementListing",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the RegistrySettlement.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the RegistrySettlement's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the RegistrySettlement's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "settlement_time": {
      "type": "string",
      "description": "The timestamp of the Registry's settlement.",
      "readOnly": true,
      "writeOnly": false
    },
    "total_amount_spent": {
      "type": "object",
      "description": "The total amount spent for the RegistrySettlement.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "number_of_entries": {
      "type": "integer",
      "description": "The number of RegistryEntry's associated with this RegistrySettlement.",
      "readOnly": true,
      "writeOnly": false
    },
    "settled_by_alias": {
      "type": "object",
      "description": "The membership of the user that settled the Registry.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/RegistryMembership"
    },
    "membership_settled": {
      "type": "object",
      "description": "The membership of the user that has settled the registry.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/RegistryMembership"
    },
    "items": {
      "type": "array",
      "description": "List of RegistrySettlementItems",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/RegistrySettlementItem"
      }
    }
  }
}