Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
7 rows where bank_id = "nekb" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: category, claim_value, verifiable, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| nekb:digital:apple_pay | Banque Cantonale Neuchateloise nekb | digital | apple_pay | true | Apple Pay unterstuetzt. | Apple Pay | bcn.ch | 1 | 2026-04-08 | ||||
| nekb:digital:samsung_pay | Banque Cantonale Neuchateloise nekb | digital | samsung_pay | true | Samsung Pay unterstuetzt. | Samsung Pay | bcn.ch | 1 | 2026-04-08 | ||||
| nekb:digital:twint | Banque Cantonale Neuchateloise nekb | digital | twint | true | TWINT unterstuetzt. | BCN TWINT | bcn.ch | 1 | 2026-04-08 | ||||
| nekb:digital:ebanking | Banque Cantonale Neuchateloise nekb | digital | ebanking | true | E-Banking verfuegbar. | BCN-Netbanking | bcn.ch | 1 | 2026-04-08 | ||||
| nekb:digital:mobile_app | Banque Cantonale Neuchateloise nekb | digital | mobile_app | true | Mobile Banking App verfuegbar (iOS + Android). | MyBCN Mobile banking | bcn.ch | 1 | 2026-04-08 | ||||
| nekb:esg:eco_certification | Banque Cantonale Neuchateloise nekb | esg | eco_certification | EcoEntreprise | EcoEntreprise-Zertifizierung fuer Umweltmanagement. | Certification EcoEntreprise | bcn.ch | 1 | 2026-04-08 | ||||
| nekb:convenience:passionne | Banque Cantonale Neuchateloise nekb | convenience | loyalty_program | PassionNE | PassionNE — Loyalitaetsprogramm fuer Neuenburger Kunden. | PassionNE - reductions jusqu'a 50% sur les loisirs | bcn.ch | 0 | 2026-04-08 |
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);