product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "vz:privatkonto"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| vz:privatkonto:withdrawal_notice | Privatkonto / Hauptkonto vz:privatkonto | notice_period | 2 Monate ueber CHF 100k/31 Tage | 0.5% Penalty bei Ueberschreitung. Beim Uebertrag in ein VZ-Mandat keine Kuendigung erforderlich. |
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);