home / bankproducts

bank_membership

Data license: CC-BY-4.0 · Data source: bankproducts.info

1 row where organisation_id = "blink"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: extracted_at (date)

Link bank_id organisation_id role status joined exited source_url source_filename extracted_at confidence note
zkb,blink,connected_provider Zuercher Kantonalbank zkb SIX bLink blink connected_provider active     https://blink.six-group.com/de   2026-07-03 authoritative Listed in bLink logo wall as zkb.svg

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE bank_membership (
    bank_id          TEXT NOT NULL REFERENCES bank(id),
    organisation_id  TEXT NOT NULL REFERENCES organisation(id),
    role             TEXT NOT NULL DEFAULT 'member',  -- see header for vocabulary
    status           TEXT DEFAULT 'active',           -- 'active' / 'former' / 'suspended' / 'pending'
    joined           TEXT,                             -- ISO date or year-only YYYY (NULL if unknown)
    exited           TEXT,                             -- ISO date or year-only YYYY (NULL if still active)
    source_url       TEXT,                             -- URL where membership was observed
    source_filename  TEXT,                             -- filename in Organisations-Memberships/<quarter>/
    extracted_at     TEXT,                             -- ISO date when this row was last verified
    confidence       TEXT DEFAULT 'authoritative',     -- 'authoritative' / 'research_grade' / 'inferred'
    note             TEXT,                             -- free-text context
    PRIMARY KEY (bank_id, organisation_id, role)
);
CREATE INDEX idx_bank_membership_bank ON bank_membership(bank_id);
CREATE INDEX idx_bank_membership_org  ON bank_membership(organisation_id);
CREATE INDEX idx_bank_membership_role ON bank_membership(role);
Powered by Datasette · Queries took 28.149ms · Data license: CC-BY-4.0 · Data source: bankproducts.info