Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
3 rows where bank_id = "ca_indosuez" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ca_indosuez:identity:parent | CA Indosuez (Suisse) SA ca_indosuez | identity | parent_group | Credit Agricole (France) | Atom #293: Franzoesischer Mutterkonzern Credit Agricole SA, Marke CA Indosuez Wealth. | ca-indosuez.ch + Credit Agricole | 1 | 2024-01-01 | |||||
| ca_indosuez:identity:international_footprint | CA Indosuez (Suisse) SA ca_indosuez | identity | international_footprint | 13 countries | 13-Laender-Netz unter Marke CA Indosuez Wealth: CH, FR, BE, IT, LU, MC, ES, PT, HK, NC, SG, LB, UAE. | ca-indosuez.ch /publications | 1 | 2024-01-01 | |||||
| ca_indosuez:identity:transparency_posture | CA Indosuez (Suisse) SA ca_indosuez | identity | transparency_posture | tailored | Atom #274 32. Instanz. | ca-indosuez.ch | 1 | 2024-01-01 |
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);