product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
2 rows where product_id = "bellerive:eo_variabel"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| bellerive:eo_variabel:pf:strukturen_premium | Servicepaket Execution Only variabel bellerive:eo_variabel | pricing_condition | Strukturen-Minimalgebuehr ist 2x Standard (CHF 2'000 vs CHF 1'000 p.a.) | Strukturierte Produkte verdoppeln die Minimalgebuehr p.a. — gleiche Logik bei Execution Only fix. Reflektiert hoeheren Administrationsaufwand fuer strukturierte Produkte. | 3 |
| bellerive:eo_variabel:pf:tiered_courtage | Servicepaket Execution Only variabel bellerive:eo_variabel | pricing_condition | 5-stufige tiered Courtage CH (1.20-0.40%) und Ausland (1.80-0.50%) | Variable EO-Courtage skaliert nach Auftragsgroesse mit 5 Bandern (50k/100k/200k/500k Schwellen). CH-Tarife sind etwa 33-50% unter Ausland-Tarifen, was Lagerstellen- und FX-Kosten widerspiegelt. | 3 |
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);