Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
9 rows where bank_id = "pcb" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: source, source_url, valid_from, valid_from (date)
| id | bank_id ▼ | product_id | category | claim_key | claim_value | display_text_de | display_text_en | display_text_fr | source | source_url | verifiable | valid_from | valid_to |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| pcb:identity:specialty | PCB Private Client Bank AG pcb | identity | specialty | Family Office + multi-custodian consolidation | Spezialitaet: elektronische Vermoegenskonsolidierung ueber mehrere Depotstellen. | pcb.ch /family-office | 1 | 2024-01-01 | |||||
| pcb:identity:hq | PCB Private Client Bank AG pcb | identity | hq_city | Zurich | Hauptsitz Zuerich. | pcb.ch | 1 | 2024-01-01 | |||||
| pcb:identity:transparency_posture | PCB Private Client Bank AG pcb | identity | transparency_posture | tailored | Atom #274 49. Instanz. | pcb.ch | 1 | 2024-01-01 | |||||
| pcb:identity:founded | PCB Private Client Bank AG pcb | identity | founded_year | 1998 | Gegruendet 1998 in Zuerich; im Besitz von namhaften Schweizer und deutschen Unternehmerfamilien. | Founded 1998 in Zurich; owned by prominent Swiss and German entrepreneur families. | privateclientbank.ch homepage | https://www.privateclientbank.ch | 1 | 1998-01-01 | |||
| pcb:identity:domicile | PCB Private Client Bank AG pcb | identity | domicile | Zuerich | Hauptsitz Bleicherweg 5, 8001 Zuerich (Postfach 8034) — Alte Boerse-Viertel. | Headquartered at Bleicherweg 5, 8001 Zurich (Postfach 8034). | PCB Private Client Letter imprint | https://www.privateclientbank.ch | 1 | 1998-01-01 | |||
| pcb:identity:editorial_letter | PCB Private Client Bank AG pcb | identity | editorial_letter | Private Client Letter (quarterly) | Vierteljaehrlicher "Private Client Letter" — thematische makrooekonomische Essays, persoenlich von CEO und VR-Praesident verfasst. | Quarterly "Private Client Letter" — thematic macroeconomic essays personally authored by CEO and Chairman. | 6 PCB Letters crawled Q3/2019 - Q4/2024 | 1 | 2019-07-01 | ||||
| pcb:identity:chairman | PCB Private Client Bank AG pcb | identity | chairman | Dr. Konrad Hummler | VR-Praesident Dr. Konrad Hummler — ehemaliger geschaeftsfuehrender Teilhaber Wegelin & Co. (aelteste Schweizer Bank, 2013 abgewickelt). | Chairman Dr. Konrad Hummler — former managing partner of Wegelin & Co. (oldest Swiss bank, wound down 2013). | privateclientbank.ch/ueber-uns | https://www.privateclientbank.ch/ueber-uns | 1 | 2013-01-01 | |||
| pcb:identity:ceo | PCB Private Client Bank AG pcb | identity | ceo | Dr. Ivan Adamovich | CEO Dr. Ivan Adamovich (verfasst persoenlich PCB Letter unter Signatur "IA"). | CEO Dr. Ivan Adamovich (personally authors PCB Letters under signature "IA"). | privateclientbank.ch/ueber-uns + PCB Letter signatures | https://www.privateclientbank.ch/ueber-uns | 1 | 2024-01-01 | |||
| pcb:identity:ownership | PCB Private Client Bank AG pcb | identity | ownership_structure | family_owned | Im Besitz von namhaften Schweizer und deutschen Unternehmerfamilien seit 1998 — "eine Bank von Familien fuer Familien". | Owned by prominent Swiss and German entrepreneur families since 1998 — "a bank of families for families". | privateclientbank.ch homepage | https://www.privateclientbank.ch | 1 | 1998-01-01 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE claim (
id TEXT PRIMARY KEY, -- zkb:safety:credit_rating
bank_id TEXT NOT NULL REFERENCES bank(id),
product_id TEXT, -- nullable: bank-level claims have no product
category TEXT NOT NULL, -- safety, digital, convenience, esg, identity, media
claim_key TEXT NOT NULL, -- credit_rating, staatsgarantie, apple_pay, ...
claim_value TEXT, -- AAA, true, 4.7, https://...
display_text_de TEXT,
display_text_en TEXT,
display_text_fr TEXT,
source TEXT, -- "S&P Global, March 2026" or "self-reported"
source_url TEXT,
verifiable INTEGER DEFAULT 0, -- 1 = independently verifiable, 0 = self-asserted
valid_from TEXT,
valid_to TEXT
);
CREATE INDEX idx_claim_bank ON claim(bank_id);
CREATE INDEX idx_claim_category ON claim(category);
CREATE INDEX idx_claim_key ON claim(claim_key);