Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
5 rows where bank_id = "ce_aubonne" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ce_aubonne:identity:canton | Caisse d'Epargne d'Aubonne (CEA) ce_aubonne | identity | canton | Vaud | Vaud (Romandie) Caisse d'Epargne. Atom #275 publisher: Taux & Conditions 2025 publiziert. | ceaubonne.ch + CEA_TAUX_CONDITIONS_2025.pdf | 1 | 2025-01-01 | |||||
| ce_aubonne:identity:transparency_posture | Caisse d'Epargne d'Aubonne (CEA) ce_aubonne | identity | transparency_posture | published | Atom #275 12. Instanz (4. franzoesischsprachige). Volle Konditionen-PDF publiziert. | ceaubonne.ch | 1 | 2025-01-01 | |||||
| ce_aubonne:identity:epargne_enfant_bonus | Caisse d'Epargne d'Aubonne (CEA) ce_aubonne | identity | enfant_bonus_chf50 | 1 | Bon cadeau CHF 50 im Dezember fuer ersten Einzahlung CHF 50+ auf Epargne Enfant. | CEA Taux & Conditions 2025 | 1 | 2025-07-15 | |||||
| ce_aubonne:identity:pilier3a_125 | Caisse d'Epargne d'Aubonne (CEA) ce_aubonne | identity | privor_3a_rate_pct | 1.25 | Pillar 3a Privor: 1.25% Zins — HOECHSTE Rate in atom #275 cohort (typisch 0.30-0.50%). | CEA Taux & Conditions 2025 | 1 | 2025-07-15 | |||||
| ce_aubonne:identity:atom_287_french | Caisse d'Epargne d'Aubonne (CEA) ce_aubonne | identity | atom_287_french_verbatim | 1 | Erste franzoesisch-sprachige verbatim Bestaetigung von atom #287: "Penalite: 2% du montant depassant la limite". | CEA Taux & Conditions 2025 p. 1 | 1 | 2025-07-15 |
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);