Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
7 rows where bank_id = "ce_nyon" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: category, 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_nyon:identity:legal_entity | Caisse d'Epargne de Nyon (CEN) ce_nyon | identity | legal_entity | Caisse d'Epargne de Nyon (CEN) | CEN — Caisse d'Epargne de Nyon, Rue St-Jean 11, CP 2205, 1260 Nyon. Kleine Waadtländer Sparkasse am Genfersee. BIC CAGYCH21XXX. SIC IID 8326. Clearing 8326. | cen.ch + Tarifs PDF | 1 | 2025-10-01 | |||||
| ce_nyon:identity:regional_focus | Caisse d'Epargne de Nyon (CEN) ce_nyon | identity | regional_focus | Nyon (VD), région du Lac Léman | CEN bedient die Nyoner Region am Schweizer Ufer des Genfersees. Zweite Romandie-Instanz der atom #275 Kohorte nach CMV (Vallée de Joux). Bestätigt dass atom #275 nicht Deutschschweiz-spezifisch ist. | cen.ch + journal atom #275 | 1 | 2025-10-01 | |||||
| ce_nyon:identity:atom_275_full_publisher | Caisse d'Epargne de Nyon (CEN) ce_nyon | identity | atom_275_sub_pattern | Full publisher (rates + fees in one PDF) | CEN publiziert SOWOHL Zinssaetze ALS AUCH Gebuehren in derselben Tarifs-Flyer PDF (18 Zinssaetze + ~15 Gebuehren). Gleiche Sub-Posture wie Bank Gantrisch — full publisher. Unterscheidet sich von CMV (auch Romandie, aber Rates auf Web). Demonstriert dass atom #275 Sub-Pattern-Heterogenitaet ueber beide Sprachregionen replicated wird. | CEN Tarifs Flyer 10-2025 + journal atom #275 | 1 | 2025-10-01 | |||||
| ce_nyon:identity:cohort_position | Caisse d'Epargne de Nyon (CEN) ce_nyon | identity | cohort_position | 7th atom #275 instance | Siebente Instanz der atom #275 Kohorte. Zweite Romandie-Instanz nach CMV. Vorherige sechs: EKSH (SH), Bank Gantrisch (BE), Bank Leerau (AG), GRB (GL), Bank EEK (BE), CMV (VD). Jetzt CEN (VD). Cohort jetzt 7 Banken / 4 Sub-Patterns / 2 Sprachen / 5 Kantone. | journal atom #275 7-instance update | 1 | 2025-10-01 | |||||
| ce_nyon:identity:high_youth_rate | Caisse d'Epargne de Nyon (CEN) ce_nyon | identity | youth_rate_high | Compte Épargne Jeunesse 1.00% — höchste in atom #275 Youth-Kohorte | CEN Youth Savings 1.00% bis CHF 500000 ist der hoechste in der gesamten atom #275 Kohorte. Vergleich: GRB Jugendsparkonto 0.500% / Bank EEK Jugendsparkonto 0.500%. Plus die CHF 500000 Cap ist hoch — die meisten Kohorte-Mitglieder cap bei CHF 20000-50000. CEN bietet aggressiv fuer Youth/Family Beziehungen in der Nyon-Lac Léman Region. | CEN Tarifs Flyer 10-2025 | 1 | 2025-10-01 | |||||
| ce_nyon:convenience:fee_waiver_own_bonds | Caisse d'Epargne de Nyon (CEN) ce_nyon | convenience | own_bonds_no_custody | Obligations de Caisse CEN: keine Custody-Gebühren | Verbatim Tarifs PDF: "Aucun courtage ni droits de garde ne sont appliqués pour la gestion des obligations de caisse CEN et/ou de vos cédules hypothécaires". CEN waives Courtage UND Droits de garde auf eigenen Anleihen und auf Kunden-Hypothek-Cedulen — starker Anreiz die CEN-eigenen Produkte zu halten. Uebliche Schweizer Small-Sparkassen-Praxis, explicit publiziert hier. | CEN Tarifs Flyer 10-2025 p.3 | 1 | 2025-10-01 | |||||
| ce_nyon:identity:brand_tagline | Caisse d'Epargne de Nyon (CEN) ce_nyon | identity | brand_tagline | "Régionale et fière de l'être" | CEN Tagline: "Régionale et fière de l'être" (Regional und stolz darauf). Pendant zu CMV "Toujours plus proche de vous" und Bank Gantrisch "SYMPATHISCH ANDERS". Selbe lokal-verankert Small-Sparkasse Markenfuehrung ueber alle Sprachregionen. | CEN Tarifs Flyer 10-2025 cover | 1 | 2025-10-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);