Products
Data license: CC-BY-4.0 · Data source: bankproducts.info
9 rows where bank_id = "bergos" sorted by bank_id descending
This data as json, CSV (advanced)
Suggested facets: category, client_type, target_group
| id | bank_id ▲ | category | name | currency | client_type | target_group | description | valid_from | source_document_id | bpg | access_tier | is_tailored | notice_period_days | iso_account_type |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| bergos:discretionary_core | Bergos AG bergos | wealth_management | Discretionary Mandate — BERGOS CORE | CHF | private | high_net_worth | Bergos flagship discretionary mandate. Multi-asset multi-instrument approach: direct securities + funds + ETFs + structured products + liquid alternatives + precious metals. Fully leverages Bergos Top-Down macro view + Bottom-Up securities selection in Europe and US (Large Cap focus with sector house view). Profiles: Festverzinslich / Defensiv / Ausgewogen / Wachstum / Aktien / CORE SCHWEIZ. Atom #274 22nd instance: pricing tailored, no public fee schedule. | BPG003BFBNBJ | pro | 1 | ||||
| bergos:discretionary_global_etf | Bergos AG bergos | wealth_management | Discretionary Mandate — BERGOS GLOBAL ETF | CHF | private | wealthy | ETF-heavy global equity exposure mandate. Fully leverages Bergos Top-Down macro view + megatrend identification expertise. Global ex-European equity bias with US, European and Asian focus. Multi-asset via ETFs and similar instruments. Designed for clients seeking global-equity exposure with low single-stock idiosyncratic risk. | BPG003DA8NRR | pro | 1 | ||||
| bergos:discretionary_direct | Bergos AG bergos | wealth_management | Discretionary Mandate — BERGOS DIRECT | CHF | private | high_net_worth | Single-instrument-class discretionary mandate using primarily direct securities (Direktanlagen). Equity selection in Europe + Switzerland + US (Large Cap focus). Bond selection focused on high-quality issuers primarily in USD & EUR. Sector house view integrated. For clients wanting transparent ownership of named securities rather than fund-of-funds opacity. | BPG0033XQ58J | pro | 1 | ||||
| bergos:discretionary_private_markets | Bergos AG bergos | wealth_management | Discretionary Mandate — BERGOS PRIVATE MARKETS | CHF | private | high_net_worth | Private-markets-focused discretionary mandate. Global private markets exposure with industrial-nation focus. Best-in-class manager selection. Captures the private-markets illiquidity premium. Vehicle: evergreen funds and similar instruments. Tailored fee structure with carry/perf components likely. | BPG0033CBS2P | pro | 1 | ||||
| bergos:advisory_mandate | Bergos AG bergos | personal_advisory | Advisory Mandate (Beratungsmandate) | CHF | private | high_net_worth | Advisory-only mandate — client retains decision authority but receives Bergos investment recommendations on entire portfolio or per-transaction. Same 4-strategy framework as discretionary (CORE / GLOBAL ETF / DIRECT / PRIVATE MARKETS). Lower-touch than discretionary; lower fee likely. | BPG00345N4Z2 | pro | 1 | ||||
| bergos:strategic_advice | Bergos AG bergos | personal_advisory | Strategic Advice (Strategische Beratung) | CHF | private | high_net_worth | Strategic wealth advisory — distinct from transaction-level advice. Asset allocation, estate planning, multi-jurisdictional structuring. Project-fee or retainer model typical. | BPG003EGAJMK | pro | 1 | ||||
| bergos:family_office | Bergos AG bergos | wealth_management | Enterprise and Family Solutions | CHF | business | wealthy | Family office and entrepreneur-focused service line. Multi-generation wealth planning, business succession, philanthropy structuring, art-collection management (via Art Consult). For Unternehmer-und-Family-Office clients with complex multi-stakeholder structures. | BPG0034F4CNN | pro | 1 | ||||
| bergos:art_consult | Bergos AG bergos | wealth_management | Art Consult — art-wealth advisory | CHF | private | high_net_worth | Stand-alone art-wealth advisory practice (within the Beyond Money line). Art-collection valuation, acquisition advisory, custody coordination, regular Bergos Art Consult Newsletter publication. Rare named-brand-line offering within CH UHNW classical cohort — only Pictet has a comparable named art practice. | BPG0033DXJYR | pro | 1 | ||||
| bergos:custody | Bergos AG bergos | securities_trading | Custody account (Depot) | CHF | private | high_net_worth | Securities custody underlying all mandate types. Bundled fee within discretionary mandates; separately invoiced under advisory. esisuisse deposit-insurance protection (separate Einlagensicherung document published in DE+EN). | BPG003TNBJ91 | pro | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product (
id TEXT PRIMARY KEY, -- zkb:privatkonto, ubs:key4_banking
bank_id TEXT NOT NULL REFERENCES bank(id),
category TEXT NOT NULL, -- current_account, savings_account, pillar_3a, vested_benefits,
-- debit_card, credit_card, prepaid_card, package, ebanking,
-- mortgage, wealth_management, term_deposit, securities_trading,
-- fiduciary_deposit, safe_deposit, guarantee, leasing,
-- financial_planning, personal_advisory, loyalty_program,
-- digital_vault, fx_subscription, robo_advisory, self_directed_trading,
-- metal_account, deposit_account, check
name TEXT NOT NULL, -- bank's own product name
currency TEXT DEFAULT 'CHF',
client_type TEXT DEFAULT 'private', -- private, business, institutional
target_group TEXT, -- standard, young, children, students, seniors, eco, gift, rental_deposit, member
description TEXT,
valid_from TEXT,
source_document_id INTEGER REFERENCES source_document(id),
bpg CHAR(12) -- opaque global id, BPG003xxxxxx; populated post-load by bpg_assignments.sql
CHECK (bpg IS NULL OR bpg GLOB 'BPG003[0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z]'),
access_tier TEXT NOT NULL DEFAULT 'free' -- freemium gating: free public, pro/business paid
CHECK (access_tier IN ('free', 'pro', 'business')),
is_tailored INTEGER -- v2.6 (atom #278): mirrors CDS-AU (Australian Open Banking) isTailored.
-- 0 = pricing publicly published in a schedule (machine-readable, comparable);
-- 1 = negotiated per client (UHNW classical private banking, business loans);
-- NULL = unknown / not yet classified (default for new loads).
-- Distinguishes "we haven't crawled it" (NULL) from "bank deliberately
-- doesn't publish because it's relationship-priced" (1) — three states
-- that previously collapsed into "fee.amount IS NULL".
CHECK (is_tailored IS NULL OR is_tailored IN (0, 1)),
notice_period_days INTEGER -- v2.7 (atom #307): normalised withdrawal notice in days.
-- 0/NULL = on-demand; X = days notice. Conversion: months×30,
-- years×365, days verbatim. Backfilled from
-- product_feature.notice_period free-text by
-- db/notice_period_backfill.sql.
CHECK (notice_period_days IS NULL OR notice_period_days >= 0),
iso_account_type CHAR(4) -- v2.8 (atom #308): ISO 20022 ExternalCashAccountType1Code.
-- 4-letter code from the official ISO enum: CACC (Current),
-- SVGS (Savings), LOAN, SACC (Special), MOMA (Money Market),
-- CHAR (Charges), CASH, etc.
-- NULL for categories outside ISO scope: cards
-- (debit/credit/prepaid), mandates (wealth_management,
-- securities_trading, fiduciary_deposit), CH-specific
-- (pillar_3a, vested_benefits, pension_account).
-- Mapped from `category` by db/iso_account_type_backfill.sql.
-- Backfill is conservative — when in doubt, leave NULL rather
-- than force-fit a code that misrepresents the product.
CHECK (iso_account_type IS NULL OR iso_account_type GLOB '[A-Z][A-Z][A-Z][A-Z]')
);
CREATE INDEX idx_product_bank ON product(bank_id);
CREATE INDEX idx_product_category ON product(category);
CREATE INDEX idx_product_lookup ON product(bank_id, category, client_type, target_group);
CREATE UNIQUE INDEX idx_product_bpg ON product(bpg) WHERE bpg IS NOT NULL;
CREATE INDEX idx_product_access_tier ON product(access_tier);
CREATE INDEX idx_product_is_tailored ON product(is_tailored) WHERE is_tailored IS NOT NULL;
CREATE INDEX idx_product_iso_account_type ON product(iso_account_type) WHERE iso_account_type IS NOT NULL;
CREATE INDEX idx_product_notice_period ON product(notice_period_days) WHERE notice_period_days IS NOT NULL;