Source documents
Data license: CC-BY-4.0 · Data source: bankproducts.info
3 rows where bank_id = "bellerive" sorted by valid_from descending
This data as json, CSV (advanced)
Suggested facets: parsed_at, valid_from (date), parsed_at (date)
| id | bank_id | title | valid_from ▲ | language | filename | parsed_at | bpg |
|---|---|---|---|---|---|---|---|
| 48 | Bellerive Bank AG bellerive | Bellerive Classic Private Banking — Gebuehren und Kommissionen (Gueltig ab 01.07.2025) | 2025-07-01 | de | acdc4b289d8c_Gebuehrentarif-Juni-2025-final.pdf | 2026-06-10 | BPG002CDBZ5A |
| 308 | Bellerive Bank AG bellerive | bellerivebanking.ch website index | 2024-01-01 | de | bb73598ccd4e_index.md | 2026-06-03 | BPG0025SW6YW |
| 49 | Bellerive Bank AG bellerive | Bellerive Gebuehren und Kommissionen (historische Fassung 2020, abgeloest) | 2020-01-01 | de | 8b49807cf0c1_2020-gebuehren-kommisionen-de.pdf | 2026-06-10 | BPG002PBPZ05 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE source_document (
id INTEGER PRIMARY KEY AUTOINCREMENT,
bank_id TEXT NOT NULL REFERENCES bank(id),
title TEXT, -- Preisübersicht und Konditionen
valid_from TEXT, -- YYYY-MM-DD
language TEXT DEFAULT 'de',
filename TEXT, -- preisverzeichnis.pdf
parsed_at TEXT, -- YYYY-MM-DD
bpg CHAR(12) -- opaque global id, BPG002xxxxxx; populated post-load by bpg_assignments.sql
CHECK (bpg IS NULL OR bpg GLOB 'BPG002[0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z]')
);
CREATE INDEX idx_source_document_bank ON source_document(bank_id);
CREATE UNIQUE INDEX idx_source_document_bpg ON source_document(bpg) WHERE bpg IS NOT NULL;