Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
7 rows where bank_id = "globalance" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: category, source, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| globalance:identity:hq | Globalance Bank AG globalance | identity | hq_city | Zurich | Hauptsitz Zuerich, ESG-Pure-Play-Privatbank. | globalance-bank.com | 1 | 2024-01-01 | |||||
| globalance:esg:integrated | Globalance Bank AG globalance | esg | esg_integrated | 1 | ESG/Nachhaltigkeit als Marken-Pure-Play. Marke: "Zukunftbeweger". | globalance-bank.com /zukunftbeweger | 1 | 2024-01-01 | |||||
| globalance:identity:transparency_posture | Globalance Bank AG globalance | identity | transparency_posture | tailored | Atom #274 60. Instanz. | globalance-bank.com | 1 | 2024-01-01 | |||||
| globalance:identity:founded_2011 | Globalance Bank AG globalance | identity | founded_year | 2011 | Founded 2011 by Reto Ringger (founder of SAM 1995, predecessor of DJSI methodology). Headquartered Zurich (Gartenstrasse 16). Tagline "Mehr als Geld bewegen". | globalance-bank.com + press release 071f782929a5 + bilanz-2019.md | 1 | 2011-01-01 | |||||
| globalance:esg:wirkung_statt_wachstum | Globalance Bank AG globalance | esg | methodology | Wirkung_statt_Wachstum | ESG-by-design private bank — every investment screened on Wirkung (impact) statt Wachstum. Brand "Zukunftbeweger". Proprietary Globalance Footprint tool (2015) — world first portfolio-level impact visualization by a bank. | globalance-bank.com/anlagephilosophie + press release | 1 | 2015-05-26 | |||||
| globalance:esg:b_corp_2015 | Globalance Bank AG globalance | esg | b_corp_since | 2015-10 | Certified Benefit Corporation since October 2015. B Lab "Best for the World" 2022 — top 5% of 5,000 certified B Corps in Customers-impact area. | bcorporation.net + 3280525b2191_b-corporation-auszeichnung-2022.md | 1 | 2015-10-01 | |||||
| globalance:media:bilanz_2019_2026 | Globalance Bank AG globalance | media | awards | BILANZ_Gesamtsieger_2019_FUCHS_Best_6x | BILANZ Private Banking Rating Gesamtsieger 2019 (overall winner). Long-time Quality Leader 2023-2025. FUCHS Best Swiss Private Bank 6 consecutive years (2020-2025), "Grandmaster" 3x for sustainable PB. | BILANZ 2019, 2026 / FUCHS-RICHTER 2020-2025 | 1 | 2019-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);