pricing_rule
Data license: CC-BY-4.0 · Data source: bankproducts.info
3 rows where bank_id = "blkb"
This data as json, CSV (advanced)
Suggested facets: effect_type
| id ▼ | product_id | bank_id | condition_type | trigger_description | trigger_threshold_chf | effect_type | effect_magnitude | affected_fee_id | note | source_page | valid_from |
|---|---|---|---|---|---|---|---|---|---|---|---|
| blkb:klientengelderkonto:kontofuehrung_spesenfrei_gate | BLKB Klientengelderkonto CHF/EUR/USD blkb:klientengelderkonto | Basellandschaftliche Kantonalbank blkb | cross_sell_product_hold | Klientengelderkonto CHF/EUR/USD (fuer Anwaelte/Notare/Treuhaender): SPESENFREI WENN Kontofuehrung sonst auch bezahlt wird (Cross-Hold-Bedingung mit dem primaeren Geschaeftskonto) | fee_waived | Batch 17 atom-documented: Anwaelte/Notare-spezifisches Cross-Hold-Muster. BLKB positioniert Klientengelder als Add-on zum primaeren Geschaeftskonto. | |||||
| blkb:kontokorrent_chf_eur:kredit_hypothek_aufwand_geltend | BLKB Kontokorrent CHF und EUR blkb:kontokorrent_chf_eur | Basellandschaftliche Kantonalbank blkb | cross_sell_product_hold | Kommerzielle Kredite und Hypotheken bei BLKB: Gebuehren werden IM RAHMEN DES AUFWANDS geltend gemacht (nicht via Pauschal-Fee) fuer Kontokorrent-Kunden mit Kredit-Cross-Hold | fee_reduced | Batch 17 atom-documented: Novel Cost-Plus-Struktur fuer Cross-Hold-Kunden — statt Pauschal-Fee bezahlt Kunde effektiven Bank-Aufwand. Only-if-cross-hold. | |||||
| blkb:securities_ch:blkb_fonds_transaktion_gratis | Boersenhandel Schweiz blkb:securities_ch | Basellandschaftliche Kantonalbank blkb | cross_sell_product_hold | BLKB-Fonds: KEINE Transaktionsgebuehren (im Kontrast zu 1.10-0.25% Staffel bei Fonds anderer Gesellschaften) | fee_waived | Batch 17 atom-documented: In-house-Fonds-Anreiz analog VP Bank Batch 20 / TGKB Batch 21 / HBL Batch 20. BLKB reiht sich in Cross-Bank-Muster ein. |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE pricing_rule (
id TEXT PRIMARY KEY, -- owkb:privatkonto_basis:rabatt_or_gate
product_id TEXT NOT NULL REFERENCES product(id),
bank_id TEXT NOT NULL REFERENCES bank(id), -- denormalized
-- 5 condition families surfaced batches 1-25:
-- 'cross_sell_asset_threshold' — OWKB OKB-Rabatt (CHF 30k Vermoegen)
-- 'cross_sell_product_hold' — OWKB Kredit-/Karten-Hold
-- 'cross_sell_relationship_aggregate' — EKI Sum-of-relationship (10k Aggregat)
-- 'insurance_bundle' — Baloise Cross-Segment (bank+insurance)
-- 'package_tier_level' — LLB Sparzins-abhaengig-von-Package
-- 'share_ownership_min' — BBO 10 Namenaktien
-- 'share_ownership_escalating' — Acrevis 11/55 (Member/Premium)
-- 'age_max' — AIKB Junge-Waiver bis 25
-- 'behavioral_monthly_deposit' — Acrevis Kaspar CHF 100/Monat
-- 'vermoegen_progressive' — Sparkasse Schwyz 3-Tier
-- 'additive_cross_sell_bonus' — BCVs CHF 1.50/Kriterium
-- 'interest_boost_program' — BCGE Boost 6-Bonus
condition_type TEXT NOT NULL,
-- What triggers the rule. Free-text description (bank-specific phrasing).
-- Examples: "CHF 30k Kundenvermoegen ODER Hypothek CHF 100k ODER OKB Karte";
-- "5 Anteilscheine bei Biene deponiert"; "12k Karten-Umsatz pro Jahr".
trigger_description TEXT NOT NULL,
-- Numeric threshold (CHF) if applicable. NULL for non-numeric triggers
-- ("member ownership required").
trigger_threshold_chf REAL
CHECK (trigger_threshold_chf IS NULL OR trigger_threshold_chf >= 0),
-- What the rule does:
-- 'fee_waived' — komplette Fee-Waiver (Kontogebuehr entfaellt)
-- 'fee_reduced' — Fee-Reduktion (halbierte Gebuehr, Rabatt-Baustein)
-- 'rate_boost_bps' — Zinssatz-Erhoehung (Aktionaers-Sparkonto)
-- 'commission_rebate_pct' — Prozent-Rabatt auf Kommission
-- 'card_included' — Karten-Inklusion im Bundle
-- 'unlimited_included' — Unlimited-Ausfuehrung im Bundle
effect_type TEXT NOT NULL,
-- Numeric effect magnitude (bps for rate, CHF for fee, % for commission).
-- NULL for effects without natural number (card_included).
effect_magnitude REAL,
-- FK to the affected fee, if applicable. NULL when the rule affects a product-
-- level property (product.access_tier, interest_rate, etc.) rather than a fee.
affected_fee_id TEXT REFERENCES fee(id),
note TEXT, -- narrative context
source_page INTEGER, -- PDF page reference
valid_from TEXT -- YYYY-MM-DD when rule became active
);
CREATE INDEX idx_pricing_rule_product ON pricing_rule(product_id);
CREATE INDEX idx_pricing_rule_bank ON pricing_rule(bank_id);
CREATE INDEX idx_pricing_rule_type ON pricing_rule(condition_type);
CREATE INDEX idx_pricing_rule_effect ON pricing_rule(effect_type);