product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
2 rows where product_id = "arb:privat"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| arb:privat:pf:kontofuehrungspauschale_privat_6chf_verein_50chf_all_inclusive_alle_kanaele | Alpha Privat arb:privat | pricing_condition | ARB Kontofuehrungs-Pauschale (all-in-Modell): **Alpha Privat CHF 6.00 pro Monat**; **Alpha Verein CHF 50.00 pro Jahr**. Beinhaltet: Kontoauszuege + Buchungen + Abschluesse + Uebertraege + Debit Mastercard (Jahresgebuehr, ohne Zusatzkarten) + Bargeldbezuege CHF an Bancomaten in Schweiz + Steuerbescheinigungen + Inland-Zahlungsverkehr + Ein-/Auszahlungen bar + Einzahlungsscheine in CHF + Dauerauftraege in der Schweiz + Lastschriftverfahren + Gutschriften + Alpha E-Banking + Alpha MobileApp. **Alle Standard-Retail-Bank-Dienstleistungen sind im 6-CHF-Monatspreis enthalten**. | **Novel All-in-Kontofuehrung CHF 6/Monat = CHF 72/Jahr** vs Standard Cross-Kantonalbank CHF 3-5/Monat mit Zusatzgebuehren. ARB positioniert Kontofuehrung als voll-inklusiv (kein a-la-carte-Pricing). Analog Frankly Batch 6 (All-in-Fee), aber ARB als Regionalbank statt Neobank. Signal: **Preisliste-Simplification als Kunden-Value** (nicht Marge-Maximierung). Deutlich hoher Preis (CHF 72/Jahr), aber transparent und ohne surprise-Kosten. Vergleich Migros Bank Batch 21 (CHF 3/Monat Standard). Source: Alpha_Leistungs_und_Preisuebersicht Seite 8 | 8 |
| arb:privat:withdrawal_limit_free | Alpha Privat arb:privat | withdrawal_limit_free | 25000 | Pro Kalendermonat, darueber 31 Tage Kuendigungsfrist |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_feature (
id TEXT PRIMARY KEY,
product_id TEXT NOT NULL REFERENCES product(id),
feature_key TEXT NOT NULL, -- withdrawal_limit_free, notice_period, daily_limit, monthly_limit,
-- interest_late_payment, max_balance, included_services, ...
feature_value TEXT,
note TEXT,
source_page INTEGER
);
CREATE INDEX idx_product_feature_product ON product_feature(product_id);
CREATE INDEX idx_product_feature_key ON product_feature(feature_key);