Interest rates
Data license: CC-BY-4.0 · Data source: bankproducts.info
9 rows where product_id = "ce_riviera:obligations_caisse" sorted by snapshot_date descending
This data as json, CSV (advanced)
Suggested facets: rate, snapshot_date (date), valid_from (date)
| id | product_id | bank_id | rate_type | rate | tier_floor | tier_ceiling | tenor_months | currency | snapshot_date ▲ | valid_from | note | source_document_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ce_riviera:obligations_caisse:2y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 0.75 | 24 | CHF | 2026-06-09 | 2026-06-09 | 2 ans. Source: cer.ch obligations-de-caisse-et-compte-a-terme page. | |||
| ce_riviera:obligations_caisse:3y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 0.8 | 36 | CHF | 2026-06-09 | 2026-06-09 | 3 ans. | |||
| ce_riviera:obligations_caisse:4y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 0.8 | 48 | CHF | 2026-06-09 | 2026-06-09 | 4 ans. | |||
| ce_riviera:obligations_caisse:5y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 0.9 | 60 | CHF | 2026-06-09 | 2026-06-09 | 5 ans. | |||
| ce_riviera:obligations_caisse:6y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 0.95 | 72 | CHF | 2026-06-09 | 2026-06-09 | 6 ans. | |||
| ce_riviera:obligations_caisse:7y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 1.0 | 84 | CHF | 2026-06-09 | 2026-06-09 | 7 ans. | |||
| ce_riviera:obligations_caisse:8y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 1.05 | 96 | CHF | 2026-06-09 | 2026-06-09 | 8 ans. | |||
| ce_riviera:obligations_caisse:9y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 1.1 | 108 | CHF | 2026-06-09 | 2026-06-09 | 9 ans. | |||
| ce_riviera:obligations_caisse:10y | Obligations de caisse ce_riviera:obligations_caisse | Caisse d'Epargne Riviera (CER) ce_riviera | credit | 1.1 | 120 | CHF | 2026-06-09 | 2026-06-09 | 10 ans. Taux maximal. |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE interest_rate (
id TEXT PRIMARY KEY, -- sgkb:sparkonto:credit:tier1
product_id TEXT NOT NULL REFERENCES product(id),
bank_id TEXT NOT NULL REFERENCES bank(id), -- denormalized
rate_type TEXT NOT NULL, -- credit (paid to customer), debit (charged to customer),
-- bonus (conditional extra), discount (reduction on base),
-- overdraft (penalty rate)
rate REAL, -- percentage value (0.050 = 0.050%); NULL = on request / not published
tier_floor REAL, -- balance threshold lower bound; NULL = from zero
tier_ceiling REAL, -- balance threshold upper bound; NULL = unlimited
tenor_months INTEGER, -- term length in months (24 = 2yr); NULL = no fixed term
currency TEXT DEFAULT 'CHF',
snapshot_date TEXT NOT NULL, -- date the rate was observed (YYYY-MM-DD)
valid_from TEXT, -- date the rate took effect (YYYY-MM-DD)
note TEXT, -- conditions, fine print
source_document_id INTEGER REFERENCES source_document(id)
);
CREATE INDEX idx_interest_rate_product ON interest_rate(product_id);
CREATE INDEX idx_interest_rate_bank ON interest_rate(bank_id);
CREATE INDEX idx_interest_rate_snapshot ON interest_rate(bank_id, snapshot_date);
CREATE INDEX idx_interest_rate_type ON interest_rate(rate_type, bank_id);