product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "jpmorgan:fund_distribution"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| jpmorgan:fund_distribution:pf:crawl_fund_only | JPMorgan Funds Distribution jpmorgan:fund_distribution | pricing_condition | Step 2a Check 4 canonical (TIGHTER variant): all 22 PDFs are fund-distribution material | JPMorgan crawl returned 208 manifest entries, 22 PDFs. All 22 are JPMorgan Funds (Lux SICAV), JPMorgan ICAV (Irish UCITS ETF), JPMorgan ELTIFs, money-market-fund notices, and one unrelated Turkish JPMorgan annual report + OGW Payments API developer guide. ZERO of the 22 are Swiss-entity retail banking fee schedules. This is a TIGHTER instance of the Step 2a Check 4 pattern than Julius Bär — Julius Bär had ONE Swiss-shaped-but-Luxembourg-actually fee schedule that could have misled a naive loader; JPMorgan has none at all. |
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);