Source documents
Data license: CC-BY-4.0 · Data source: bankproducts.info
11 rows where bank_id = "postfinance" 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 |
|---|---|---|---|---|---|---|---|
| 414 | PostFinance AG postfinance | Services and prices for private customers (EN, 475_15_en.pdf, postfinance.ch/content/dam/pfch/doc/460_479/475_15_en.pdf) | 2026-07-01 | en | 475_15_en.pdf | 2026-06-25 | BPG0021EMAD9 |
| 810 | PostFinance AG postfinance | PostFinance Preise und Konditionen (Unternehmen) | 2026-04-16 | de | d12c8b8539ce_preise-und-konditionen.html.md | 2026-06-18 | BPG0022PSHAR |
| 811 | PostFinance AG postfinance | PostFinance Geschäftskonto in CHF | 2026-04-16 | de | 3ed6502d27b2_geschaeftskonto-chf.html.md | 2026-06-18 | BPG002E35K3X |
| 812 | PostFinance AG postfinance | PostFinance Geschäftskonto in Fremdwährung | 2026-04-16 | de | 8106ff75946c_geschaeftskonto-fremdwaehrung.html.md | 2026-06-18 | BPG0028NEFTN |
| 813 | PostFinance AG postfinance | PostFinance Geschäftskonto in EUR | 2026-04-16 | de | 61a6b3fb9b52_geschaeftskonto-eur.html.md | 2026-06-18 | BPG002D681Z5 |
| 814 | PostFinance AG postfinance | PostFinance Festgeld für Geschäftskunden | 2026-04-16 | de | 85a0e0db11cf_festgeld.html.md | 2026-06-18 | BPG00251SR5Q |
| 815 | PostFinance AG postfinance | PostFinance Lombardkredit | 2026-04-16 | de | 0e8c8feccca4_lombardkredit.html.md | 2026-06-18 | BPG0028DVS64 |
| 816 | PostFinance AG postfinance | PostFinance Zahlungsarten Combo | 2026-04-16 | de | 67059e3df2ff_zahlungsarten-combo.html.md | 2026-06-18 | BPG002148TYF |
| 817 | PostFinance AG postfinance | PostFinance QR-Rechnung | 2026-04-16 | de | bc6f1e5705f8_qrrechnung.html.md | 2026-06-18 | BPG002SV89RY |
| 818 | PostFinance AG postfinance | PostFinance Billing Solutions / B2B E-Invoicing | 2026-04-16 | en | 11bac7d6fcda_e-invoices-ebill.html.md | 2026-06-18 | BPG002NE49BC |
| 413 | PostFinance AG postfinance | Dienstleistungen und Preise fuer Privatkund:innen | 2026-01-01 | de | preisverzeichnis.pdf | 2026-03-31 | BPG002GFY1BC |
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;