Source documents
Data license: CC-BY-4.0 · Data source: bankproducts.info
6 rows where bank_id = "ubp" sorted by valid_from descending
This data as json, CSV (advanced)
Suggested facets: valid_from, language, valid_from (date), parsed_at (date)
| id | bank_id | title | valid_from ▲ | language | filename | parsed_at | bpg |
|---|---|---|---|---|---|---|---|
| 561 | Union Bancaire Privée, UBP SA ubp | UBP 2025 Full-Year Results — Press Release | 2026-01-23 | en | d6b38e3cc741_20260123_PressRelease_UBP_2025FYResults_EN.pdf | 2026-06-03 | BPG002K89QQT |
| 556 | Union Bancaire Privée, UBP SA ubp | UBP (Europe) S.A. Luxembourg + Portugal — Wealth Management Fees (NON-CH entity) | 2025-01-01 | en | d9b12efca706_LU_PT_fee%20schedule_EN.pdf | 2026-06-03 | BPG002FMBCHN |
| 559 | Union Bancaire Privée, UBP SA ubp | UBP (UK) London Branch — Services & Fees (NON-CH entity, FCA-regulated) | 2024-05-01 | en | 7e683ef340d3_2024_Services_and_fees_London_EN.pdf | 2026-06-03 | BPG002BE7SVY |
| 557 | Union Bancaire Privée, UBP SA ubp | UBP Monaco — Wealth Management Fees Advisory Service (NON-CH entity) | 2024-03-01 | en | 289e92b588e3_Advisory_tarifs_service_Monaco_EN.pdf | 2026-06-03 | BPG0020N4F26 |
| 558 | Union Bancaire Privée, UBP SA ubp | UBP Monaco — Execution-only service tariffs (NON-CH entity) | 2024-03-01 | en | c4a7847b3620_Execution-only-service_tariffs_Monaco_EN.pdf | 2026-06-03 | BPG0024H5ZVD |
| 560 | Union Bancaire Privée, UBP SA ubp | UBP HK Branch — Financial Disclosure (NON-CH entity, SFC implied) | 2018-06-01 | zh | bda56e6f9482_UBP_HK_Branch_Fin_Disclosure_Jun2018_CHINESE.pdf | 2026-06-03 | BPG002QG4A45 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE source_document (
id INTEGER PRIMARY KEY AUTOINCREMENT,
bank_id TEXT NOT NULL REFERENCES bank(id),
title TEXT, -- Preisübersicht und Konditionen
valid_from TEXT, -- YYYY-MM-DD
language TEXT DEFAULT 'de',
filename TEXT, -- preisverzeichnis.pdf
parsed_at TEXT, -- YYYY-MM-DD
bpg CHAR(12) -- opaque global id, BPG002xxxxxx; populated post-load by bpg_assignments.sql
CHECK (bpg IS NULL OR bpg GLOB 'BPG002[0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z]')
);
CREATE INDEX idx_source_document_bank ON source_document(bank_id);
CREATE UNIQUE INDEX idx_source_document_bpg ON source_document(bpg) WHERE bpg IS NOT NULL;