Source documents
Data license: CC-BY-4.0 · Data source: bankproducts.info
6 rows where bank_id = "ce_courtelary" sorted by valid_from descending
This data as json, CSV (advanced)
Suggested facets: valid_from, parsed_at, valid_from (date), parsed_at (date)
| id | bank_id | title | valid_from ▲ | language | filename | parsed_at | bpg |
|---|---|---|---|---|---|---|---|
| 128 | Caisse d'Epargne Courtelary SA ce_courtelary | cec.clientis.ch live snapshot 2026-05-31 (WebFetch) | 2026-05-31 | fr | 1f34d03900ba_hypotheque-fixe.md | 2026-05-31 | BPG002XAB3H8 |
| 127 | Caisse d'Epargne Courtelary SA ce_courtelary | cec.clientis.ch website crawl (FR, 134 member-specific MDs) | 2026-04-22 | fr | 25f1499f60c9_comptes-d-epargne.md | 2026-05-31 | BPG0028D4AGD |
| 664 | Caisse d'Epargne Courtelary SA ce_courtelary | CEC Prix et frais (Feb 2026) | 2026-02-01 | fr | ab571952323c_CEC_Prix_et_frais.pdf | 2026-06-05 | BPG002ZAC403 |
| 665 | Caisse d'Epargne Courtelary SA ce_courtelary | CEC Prix prestations sur titres (Jan 2026) | 2026-01-01 | fr | b83284e2c4db_CEC_Preise_DL_WS_Geschaeft.pdf | 2026-06-05 | BPG0025H1Z2Y |
| 666 | Caisse d'Epargne Courtelary SA ce_courtelary | CEC Factsheet Execution-only Direct | 2026-01-01 | fr | 9fd539d7fa90_cec-factsheet-execution-only.pdf | 2026-06-05 | BPG002DZDNWB |
| 667 | Caisse d'Epargne Courtelary SA ce_courtelary | CEC Factsheet Mandats de conseil | 2026-01-01 | fr | 0faf35796d1d_cec-factsheet-beratungsmandate.pdf | 2026-06-05 | BPG002GFEA8V |
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;