product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "piguet_galland:depot"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| piguet_galland:depot:pf:helv_ethic_certificate | Dépôt-titres / Custody piguet_galland:depot | pricing_condition | Helv-ethic ESG certificate co-managed with BCV (won Swiss Derivative Awards Best ESG Product) | Explicit cross-product co-management between Piguet Galland (private-bank subsidiary) and BCV (cantonal-bank parent). Helv-ethic certificate won Swiss Derivative Awards Best ESG Product. Editorially interesting: Piguet Galland uses BCV's scale for product structuring while maintaining private-banking-grade client relationships. Structural integration with cantonal-bank parent at the product level. |
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);