product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
2 rows where product_id = "sequence:managed_basic"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| sequence:managed_basic:pf:art_1b_pending_launch | Managed Accounting BASIC sequence:managed_basic | pricing_condition | Art. 1b BankG licence granted May 2026, banking layer not yet on public pricing | Sequence SA received the FINMA Art. 1b BankG fintech licence in May 2026 (announced 2026-05-27 by Kellerhals Carrard). The licence enables deposit-taking up to CHF 100M aggregate. As of 2026-06-02, public pricing only covers the ERP/accounting SaaS tiers; banking products (account opening, IBAN, cards) are not yet listed and may be in pre-launch development. Third Art. 1b posture in the DB: licence-first, productize-later (distinct from Relio is_tailored=1 and Yapeal published-full-schedule). | |
| sequence:managed_basic:pf:bank_lines_meaning | Managed Accounting BASIC sequence:managed_basic | pricing_condition | "30 bank transaction lines" = external-bank reconciliations, not Sequence-issued account transactions | The "bank transaction lines" entries in the Managed tiers refer to ACCOUNTING-SIDE reconciliation of the customer's existing external bank accounts within the Sequence ERP — not to transactions on a Sequence-issued bank account (which doesn't exist publicly yet). |
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);