Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
7 rows where bank_id = "bellerive" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: category, claim_value, source, valid_from, valid_from (date)
| id | bank_id ▼ | product_id | category | claim_key | claim_value | display_text_de | display_text_en | display_text_fr | source | source_url | verifiable | valid_from | valid_to |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| bellerive:identity:cio_brand | Bellerive Bank AG bellerive | identity | cio_brand_podcast | Bellerive on Air (Dr. Thomas Steinemann) | CIO-Personality-Branding: "Bellerive on Air"-Podcast mit CIO Dr. Thomas Steinemann. | bellerivebanking.ch /bellerive-on-air | 1 | 2024-01-01 | |||||
| bellerive:identity:hq | Bellerive Bank AG bellerive | identity | hq_city | Zurich | Hauptsitz Zuerich. | bellerivebanking.ch | 1 | 2024-01-01 | |||||
| bellerive:identity:transparency_posture | Bellerive Bank AG bellerive | identity | transparency_posture | tailored | Atom #274 55. Instanz. | bellerivebanking.ch | 1 | 2024-01-01 | |||||
| bellerive:identity:lei | Bellerive Bank AG bellerive | identity | lei | 549300GOQKT1GAWYRL17 | Legal Entity Identifier 549300GOQKT1GAWYRL17 (GLEIF-registriert) | LEI 549300GOQKT1GAWYRL17 (GLEIF-registered) | GLEIF | 1 | 2026-06-10 | ||||
| bellerive:identity:legal_form | Bellerive Bank AG bellerive | identity | legal_form | Aktiengesellschaft (Privatbank) | Privatbank Bellerive AG — Zuercher Privatbank, Classic Private Banking | Bellerive Bank AG — Zurich private bank, Classic Private Banking | Bellerive Gebuehrentarif Juni 2025 | 1 | 2025-07-01 | ||||
| bellerive:digital:public_fee_schedule | Bellerive Bank AG bellerive | digital | public_fee_schedule | true | Vollstaendiger Gebuehrentarif oeffentlich publiziert (atom #275) | Comprehensive fee schedule publicly published (atom #275 publisher) | Bellerive Gebuehrentarif Juni 2025 | 1 | 2025-07-01 | ||||
| bellerive:safety:esisuisse_attestation | Bellerive Bank AG bellerive | safety | esisuisse_attestation | true | Mitglied esisuisse — Einlagensicherung bis CHF 100 000 pro Kunde. | esisuisse member — deposit insurance up to CHF 100 000 per client. | Bellerive Einlagensicherungs-Dokument | 1 | 2026-06-10 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE claim (
id TEXT PRIMARY KEY, -- zkb:safety:credit_rating
bank_id TEXT NOT NULL REFERENCES bank(id),
product_id TEXT, -- nullable: bank-level claims have no product
category TEXT NOT NULL, -- safety, digital, convenience, esg, identity, media
claim_key TEXT NOT NULL, -- credit_rating, staatsgarantie, apple_pay, ...
claim_value TEXT, -- AAA, true, 4.7, https://...
display_text_de TEXT,
display_text_en TEXT,
display_text_fr TEXT,
source TEXT, -- "S&P Global, March 2026" or "self-reported"
source_url TEXT,
verifiable INTEGER DEFAULT 0, -- 1 = independently verifiable, 0 = self-asserted
valid_from TEXT,
valid_to TEXT
);
CREATE INDEX idx_claim_bank ON claim(bank_id);
CREATE INDEX idx_claim_category ON claim(category);
CREATE INDEX idx_claim_key ON claim(claim_key);