product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
2 rows where product_id = "bonhote:classic"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| bonhote:classic:pf:founded_1815 | Mandat de gestion Classic bonhote:classic | pricing_condition | Founded 1815 — 210-year history | Banque Bonhôte & Cie SA founded 1815 in Neuchâtel. Mission Statement quote: "Since its founding in 1815, Bonhôte's constant calling has been to offer exemplary service to clients and an auspicious working environment for its staff." Continuous family/partnership ownership. Among the top-10 oldest CH private banks still operating. | |
| bonhote:classic:pf:four_profile_allocations | Mandat de gestion Classic bonhote:classic | pricing_condition | Four standard investment profiles — fixed allocation bands | Bonhôte publishes asset-allocation bands for the four mandate profiles: Defensive (cash 0-30%, bonds 30-50%, equities 15-35%, real estate 0-10%, precious metals 0-6%), Balanced, Growth, Equities (cash 0-10%, bonds 0%, equities 85-100%, no real estate, no precious metals). This level of allocation transparency is unusual within atom #274 — most tailored banks describe profiles in prose only. |
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);