Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
3 rows where bank_id = "richelieu" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: source, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| richelieu:identity:parent | Banque Richelieu Monaco / Switzerland richelieu | identity | parent_group | Compagnie Financière Richelieu (France/Monaco) | Atom #293: Franzoesisch-monegassischer Mutterkonzern Groupe Richelieu. Geneva + Monaco-Niederlassungen. | banquerichelieu.com + Groupe Richelieu portrait | 1 | 2024-01-01 | |||||
| richelieu:identity:hq | Banque Richelieu Monaco / Switzerland richelieu | identity | hq_city | Geneva | CH-Sitz Genf, gepaart mit Monaco-Niederlassung. | banquerichelieu.com | 1 | 2024-01-01 | |||||
| richelieu:identity:transparency_posture | Banque Richelieu Monaco / Switzerland richelieu | identity | transparency_posture | tailored | Atom #274 70. Instanz. | banquerichelieu.com | 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);