product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "eki:swiss_bankers_travel"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| eki:swiss_bankers_travel:pf:swiss_bankers_travel_15pct_ladung_pattern | Swiss Bankers Travel Karte eki:swiss_bankers_travel | pricing_condition | Swiss Bankers Travel Karte: kostenlos (Jahresgebuehr null), aber 1.5% auf Ladebetrag (Aufladegebuehr). Swiss Bankers Life Karte: CHF 45/Jahr Jahresgebuehr | Hidden compound cost bei Prepaid analog Leerau Batch 4 (dort 1.5% Aufladung + 2% Bezug + CHF 1 Karteneinsatz). EKI publiziert nur die Aufladegebuehr — bei einer CHF 1000 Aufladung sind das CHF 15 (1.5%). Life Karte hat andere Struktur (CHF 45/Jahr Jahresgebuehr, kein % auf Aufladung). Signal: Swiss Bankers Standard-Konditionen sind bank-uebergreifend identisch (Third-Party-Card). Source: EKI Gebuehrentarif | 6 |
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);