Source documents
Data license: CC-BY-4.0 · Data source: bankproducts.info
9 rows where bank_id = "bil" sorted by valid_from descending
This data as json, CSV (advanced)
Suggested facets: valid_from, language, parsed_at, valid_from (date), parsed_at (date)
| id | bank_id | title | valid_from ▲ | language | filename | parsed_at | bpg |
|---|---|---|---|---|---|---|---|
| 72 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL (Luxembourg parent) — Extrait de la tarification générale (NOT Swiss-entity schedule) | 2026-05-01 | fr | 7ffd7fe8a7cb_tarifs-fr.pdf | 2026-06-02 | BPG0021BP8V5 |
| 760 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg Pro-Tarif (cross-jurisdiction reference, NOT CH pricing) | 2026-01-01 | fr | ff041cacdcd2_pro-tarif.aspx.md | 2026-06-04 | BPG002Z07F43 |
| 761 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg DAT FAQ (cross-jurisdiction reference, NOT CH pricing) | 2026-01-01 | fr | cab51b84b1cc_Quels-sont-les-taux-dinterets-sur-les-depots-a-terme.aspx.md | 2026-06-04 | BPG002C6J2JE |
| 762 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg Pro-Tarif HTML sibling | 2026-01-01 | fr | ff041cacdcd2_pro-tarif.aspx.html | 2026-06-04 | BPG002S2GTY7 |
| 763 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg DAT FAQ HTML sibling | 2026-01-01 | fr | cab51b84b1cc_Quels-sont-les-taux-dinterets-sur-les-depots-a-terme.aspx.html | 2026-06-04 | BPG002RXMZXS |
| 764 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg DAT-FR HTML snapshot | 2026-01-01 | fr | 01a00355174f_dat-fr.html | 2026-06-04 | BPG0027SMJW0 |
| 765 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg DAT-EN HTML snapshot | 2026-01-01 | en | fdf2cb4c82db_dat-en.html | 2026-06-04 | BPG0024GEBVG |
| 766 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg pret-logement simulation FAQ (cross-jurisdiction) | 2026-01-01 | fr | 806674094ecd_Comment-puis-je-faire-une-simulation-de-pret-logement-et-connaitre-vos-taux.aspx.md | 2026-06-04 | BPG002F12VES |
| 767 | Banque Internationale à Luxembourg (Suisse) SA bil | BIL Luxembourg pret-logement simulation FAQ HTML sibling | 2026-01-01 | fr | 806674094ecd_Comment-puis-je-faire-une-simulation-de-pret-logement-et-connaitre-vos-taux.aspx.html | 2026-06-04 | BPG002ZQF3DY |
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;