Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
3 rows where bank_id = "eb_entlebucher" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| eb_entlebucher:identity:domain | Clientis Entlebucher Bank AG eb_entlebucher | identity | home_region | Entlebuch, LU | Clientis Entlebucher Bank AG (eb.clientis.ch). Regionalbank im Entlebuch, Hauptkanton LU. Genossenschafts-Tradition; jetzt AG mit FINMA-Lizenz Kategorie 5. | eb.clientis.ch + finma.ch | 1 | 2026-01-01 | |||||
| eb_entlebucher:identity:clientis_member | Clientis Entlebucher Bank AG eb_entlebucher | identity | parent_group | Clientis-Mitglied | Mitglied der Clientis-Federation. Eigene FINMA-Banklizenz Kategorie 5. | clientis.ch + finma.ch | 1 | 2026-01-01 | |||||
| eb_entlebucher:identity:partial_load | Clientis Entlebucher Bank AG eb_entlebucher | identity | load_completeness | Partial — financing only | Aktuelle Datenladung deckt nur das EBS-Gebuehrenblatt ab (Finanzieren + diverse Dienstleistungen). Accounts, Karten, Zahlungsverkehr noch nicht erfasst — getrenntes Dokument das nicht im Q2-Crawl ist. Update geplant nach Q3-Crawl (sobald Walid's link-aware re-discovery implementiert ist). | EBS_Preise_und_Gebuehren.pdf + journal #255 | 1 | 2026-05-31 |
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);