product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "dcbank:freizuegigkeitskonto"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| dcbank:freizuegigkeitskonto:pf:kontofuehrung_cross_sell_gate | Freizuegigkeitskonto dcbank:freizuegigkeitskonto | pricing_condition | Kontofuehrung CHF 5.00/Monat ohne Wertschriftenanlagen; gebuehrenfrei ab >=50% Vorsorgevermoegen in Wertschriften | Cross-sell-gate: die monatliche Kontogebuehr faellt weg, wenn mindestens die Haelfte des deponierten Vorsorgevermoegens in Wertschriftenanlagen (Fonds/Aktien) statt Bargeld liegt. Aehnliche Struktur wie OWKB OKB-Rabatt aus Batch 3, aber hier auf ein einzelnes Produkt (3a/Freizuegigkeit) beschraenkt statt Bank-weit. Source: 22439da95d19_Konditionen_Zahlen_und_Sparen_01.04.2026.pdf | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_feature (
id TEXT PRIMARY KEY,
product_id TEXT NOT NULL REFERENCES product(id),
feature_key TEXT NOT NULL, -- withdrawal_limit_free, notice_period, daily_limit, monthly_limit,
-- interest_late_payment, max_balance, included_services, ...
feature_value TEXT,
note TEXT,
source_page INTEGER
);
CREATE INDEX idx_product_feature_product ON product_feature(product_id);
CREATE INDEX idx_product_feature_key ON product_feature(feature_key);