product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "bonhote:impact"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| bonhote:impact:pf:esg_core_positioning | Mandat de gestion Impact (responsible investment) bonhote:impact | pricing_condition | ESG-integrated investment process is core brand positioning | Mission Statement quote: "At Bonhôte, ESG (Environment, Social and Governance) principles are an integral part of our investment process and preference is given to sustainable investments in our asset allocation strategy. The bank also offers a discretionary mandate in responsible investment and the Bonhôte Impact Fund." ESG is not a side offer but the core positioning, encoded in a 20-page Mission Statement charter. Aligns with the broader Suisse romande private-banking ESG cluster (Edmond de Rothschild's Heritage Foundation, Piguet Galland B Corp). |
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);