Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
8 rows where bank_id = "baloise" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: category, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| baloise:identity:parent | Baloise Bank AG baloise | identity | parent_group | Baloise Holding AG | Tochtergesellschaft der Baloise Holding AG (SIX kotiert, Symbol BALN). | baloise.com | 1 | 2026-01-01 | |||||
| baloise:identity:cembra_deal | Baloise Bank AG baloise | identity | pending_sale | Cembra Money Bank | April 2024 Verkauf an Cembra Money Bank angekuendigt; behoerdliche Genehmigung ausstehend (Stand 2026-Q2). | baloise.com Medienmitteilungen | 1 | 2024-04-01 | |||||
| baloise:identity:domicile | Baloise Bank AG baloise | identity | domicile_canton | SO | Sitz Solothurn (Amthausplatz 4, 4502 Solothurn). Universalbank im Mittelland. | baloise.ch | 1 | 2026-01-01 | |||||
| baloise:identity:bancassurance | Baloise Bank AG baloise | identity | bancassurance_model | true | Bancassurance-Modell: Bankprodukte (Konten, Hypotheken, Anlagen) und Versicherungen (Baloise Life) integriert. Saeule 3a mit integrierter Lebensversicherung. | baloise.ch | 1 | 2026-01-01 | |||||
| baloise:convenience:youth_free | Baloise Bank AG baloise | convenience | youth_free_package | true | Bankpaket Zahlen younGo kostenlos bis Alter 30 mit 0.20% Verzinsung. Anlageprodukt Baloise Fonds Portfolio (0.55%) ebenfalls kostenlos bis Alter 30. | baloise.ch | 1 | 2026-01-01 | |||||
| baloise:digital:ebanking | Baloise Bank AG baloise | digital | ebanking_platform | Baloise E-Banking | E-Banking-Plattform: kostenlose Inland-CHF-Zahlungen, EUR-Inland CHF 1, Auslandszahlung CHF 7. | baloise.ch | 1 | 2026-01-01 | |||||
| baloise:convenience:co_branded_cards | Baloise Bank AG baloise | convenience | co_branded_cards | Cornèrcard + Swiss Bankers | Alle Kreditkarten via Cornèrcard (Cornèr Bank AG). Reisekarten via Swiss Bankers (Life Prepaid MC, Travel Karte). | baloise.ch | 1 | 2026-01-01 | |||||
| baloise:identity:saron_mortgage | Baloise Bank AG baloise | identity | saron_mortgage_offered | true | Baloise SARON-Hypothek: zurueckschauender SARON Compound, Marge individuell. Min CHF 100'000, Laufzeit 3 Jahre. | baloise.ch/saron | 1 | 2023-04-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);