Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
7 rows where bank_id = "edmond_rothschild" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| edmond_rothschild:identity:legal_entity | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | legal_entity | Edmond de Rothschild (Suisse) SA | Edmond de Rothschild (Suisse) SA, Sitz Genf (Rue de Hesse 18). Schweizer Banking-Entitaet der Edmond de Rothschild Group (Holding SA in Luxemburg, Rothschild-Familie). AuM ca. CHF 165 Mrd. global (Stand 2024). | finma.ch + edmond-de-rothschild.com | 1 | 2026-06-02 | |||||
| edmond_rothschild:identity:founded_year | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | founded_year | 1953 | Gegruendet 1953 von Baron Edmond Adolphe de Rothschild als Banque Privée Edmond de Rothschild. Familienbesitz der Rothschild-Familie (nicht boersenkotiert). | edmond-de-rothschild.com history | 1 | 1953-01-01 | |||||
| edmond_rothschild:identity:ownership_form | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | ownership_form | Rothschild family-controlled private holding (LU-based) | Privat im Besitz der Rothschild-Familie. Holding-Gesellschaft (Edmond de Rothschild Holding SA) in Luxemburg. Schweizer Tochter eine von mehreren Banking-Entitaeten der Gruppe (CH + FR + LU + IL + UK + andere). Strukturell aehnlich Safra Sarasin (foreign-controlled private holding) aber mit ausgepraegteren multi-jurisdiction Operationen. | edmond-de-rothschild.com group structure | 1 | 2026-06-02 | |||||
| edmond_rothschild:identity:pricing_model | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | pricing_model | On-request / tailored per relationship (FINSA Art. 31) | Edmond de Rothschild (Suisse) SA publiziert keinen oeffentlichen Schweizer Tarif. Im Gegensatz zu zwei EU-Schwester-Entitaeten die BEIDE publizieren: Edmond de Rothschild (France) "Conditions générales de tarification" (Stand juillet 2024) UND Edmond de Rothschild (Europe) SA Luxembourg "Document d'information tarifaire" (Stand 1 octobre 2025). | edmond-de-rothschild.com + journal atom #274 | 1 | 2026-06-02 | |||||
| edmond_rothschild:identity:fr_lu_siblings_publish | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | fr_lu_siblings_publish | Zwei EU-Geschwister publizieren — 6. Cross-Jurisdiction-Parallel | Edmond de Rothschild (France) publiziert eine umfassende "Conditions générales de tarification" (Juillet 2024). Edmond de Rothschild (Europe) SA Luxembourg publiziert "Document d'information tarifaire" mit Compte-de-paiement-Sektion (1er octobre 2025). Beide EU MiFID II reguliert. Schweizer Mutter publiziert nichts. SECHSTER Cross-Jurisdiction-Parallel-Fall in atom #274 Kohorte, ERSTER mit zwei EU-Schwestern im selben Konzern (FR + LU). | EdR Tarification PDFs + atom #273 generalization | 1 | 2024-07-01 | |||||
| edmond_rothschild:identity:cohort_position | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | private_bank_cohort_position | CH UHNW classical (atom #274 9th instance) | Neunte Instanz der atom #274 Kohorte. 8 is_tailored=1 (Pictet, EFG, Julius Baer, Lombard Odier, JPMorgan Suisse, BIL Suisse, Safra Sarasin, Edmond de Rothschild) + 1 is_tailored=0 (Reichmuth). 6 Cross-Jurisdiction-Parallelen, 7 distinkte non-Swiss publishing siblings, 2 disclosure-mandating Regime (MiFID II + MAS). | journal atom #274 cohort tracking 9-instance update | 1 | 2026-06-02 | |||||
| edmond_rothschild:identity:atom_274_generalised | Edmond de Rothschild (Suisse) SA edmond_rothschild | identity | atom_274_generalisation | Atom #274 generalisiert: jedes non-Swiss disclosure-Regime → sibling publiziert | Nach den heutigen Loads (JPMorgan, BIL, Safra Sarasin, EdR) hat die atom #274 Kohorte 7 distinkte non-Swiss publishing siblings ueber 7 Cross-Border-Entitaeten (3 LU, 1 LI, 1 DE, 1 FR, 1 SG). Pattern in EU (MiFID II) UND in Singapur (MAS) und vorhersagbar in HK/UK/USA. Die Schweizer FINSA Art. 31 ist uniquely permissiv unter den grossen Wealth-Management-Jurisdiktionen. | journal atom #274 generalisation | 1 | 2026-06-02 |
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);