product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
2 rows where product_id = "grkb:sparpyramide"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| grkb:sparpyramide:pf:notice_period | Sparpyramide grkb:sparpyramide | notice_period | 90 days | Kuendigungsfrist 90 Tage | |
| grkb:sparpyramide:pf:withdrawal_window | Sparpyramide grkb:sparpyramide | pricing_condition | 30-day rolling CHF 25000 withdrawal allowance | Innerhalb 30 Tagen koennen CHF 25000 ohne Kuendigungsfrist bezogen werden. Jeder Bezug fuehrt zu Stufenverlust fuer das ganze Jahr. In Stufe 4 max. CHF 50000 p.a. ohne Stufenverlust |
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);