Bunq · Schema

CoOwner

Banking

Properties

Name Type Description
alias object The Alias of the co-owner.
status string Can be: ACCEPTED, REJECTED, PENDING or REVOKED
View JSON Schema on GitHub

JSON Schema

bunq-coowner-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CoOwner",
  "title": "CoOwner",
  "type": "object",
  "properties": {
    "alias": {
      "type": "object",
      "description": "The Alias of the co-owner.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelUser"
    },
    "status": {
      "type": "string",
      "description": "Can be: ACCEPTED, REJECTED, PENDING or REVOKED",
      "readOnly": true,
      "writeOnly": false
    }
  }
}