home / bankproducts

Fees

One row per fee charged on a product. Every row carries a source_page reference to the original bank PDF. NULL amount means 'on request' (tailored pricing) or 'not published in current source'.

Data license: CC-BY-4.0 · Data source: bankproducts.info

12 rows where product_id = "jukb:debit_mastercard_chf" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: fee_type, amount, frequency

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
jukb:debit_mastercard_chf:annual_fee Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb annual_fee Cotisation annuelle 50.0 CHF annual     Gratuit dans un ePACK     free
jukb:debit_mastercard_chf:extra_card Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb extra_card Carte supplementaire 50.0 CHF one_time           free
jukb:debit_mastercard_chf:card_replacement Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb card_replacement Remplacement carte 40.0 CHF one_time           free
jukb:debit_mastercard_chf:pin_replacement Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb pin_replacement Remplacement NIP 10.0 CHF one_time           free
jukb:debit_mastercard_chf:atm_domestic_other_eur Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb atm_domestic_other Retrait EUR distributeurs autres banques 5.0 CHF per_txn   atm       free
jukb:debit_mastercard_chf:atm_abroad Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb atm_abroad Retrait distributeurs a l etranger 5.0 CHF per_txn   atm       free
jukb:debit_mastercard_chf:atm_domestic_other Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb atm_domestic_other Retrait CHF distributeurs autres banques 2.0 CHF per_txn   atm       free
jukb:debit_mastercard_chf:txn_chf_abroad Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb fx_fee_fixed Transaction en CHF a l etranger 1.5 CHF per_txn     Paiements en CHF a l etranger     free
jukb:debit_mastercard_chf:txn_eur Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb fx_fee_fixed Transaction en EUR 1.5 CHF per_txn           free
jukb:debit_mastercard_chf:txn_fx Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb fx_fee_fixed Transaction en monnaies etrangeres 1.5 CHF per_txn           free
jukb:debit_mastercard_chf:atm_own Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb atm_domestic_own Retrait distributeurs BCJ 0.0 CHF per_txn   atm       free
jukb:debit_mastercard_chf:atm_cantonal Debit Mastercard CHF jukb:debit_mastercard_chf Banque Cantonale du Jura SA jukb atm_domestic_cantonal Retrait distributeurs banques cantonales 0.0 CHF per_txn   atm Gratuit aux distributeurs des banques cantonales     free

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE fee (
    id          TEXT PRIMARY KEY,       -- zkb:privatkonto:account_mgmt
    product_id  TEXT NOT NULL REFERENCES product(id),
    bank_id     TEXT NOT NULL REFERENCES bank(id),  -- denormalized
    fee_type    TEXT NOT NULL,          -- standardized key
    label       TEXT,                   -- human-readable German label from PDF
    amount      REAL,                   -- NULL if text-only or varies
    currency    TEXT DEFAULT 'CHF',     -- CHF, EUR, USD, percent
    frequency   TEXT,                   -- monthly, annual, quarterly, per_txn, one_time, per_annum_pct
    tier        TEXT,                   -- for tiered pricing: "3rd card onwards", "vol:>250k", "member"
    channel     TEXT,                   -- ebanking, paper, counter, atm, app, post_office, all
    note        TEXT,                   -- conditions, fine print
    source_page INTEGER,
    valid_from  TEXT,
    access_tier TEXT NOT NULL DEFAULT 'free'  -- freemium gating; propagated from parent product
        CHECK (access_tier IN ('free', 'pro', 'business'))
);
CREATE INDEX idx_fee_product ON fee(product_id);
CREATE INDEX idx_fee_bank ON fee(bank_id);
CREATE INDEX idx_fee_type ON fee(fee_type);
CREATE INDEX idx_fee_category ON fee(fee_type, bank_id);
CREATE INDEX idx_fee_access_tier ON fee(access_tier);
Powered by Datasette · Queries took 30.521ms · Data license: CC-BY-4.0 · Data source: bankproducts.info