product_partner_link
Data license: CC-BY-4.0 · Data source: bankproducts.info
1 row where product_id = "baloise:cornercard_classic"
This data as json, CSV (advanced)
| Link | product_id | partner_id | role | note | valid_from |
|---|---|---|---|---|---|
| baloise:cornercard_classic,cornercard,issuer | Cornèrcard Classic (Visa, MasterCard) baloise:cornercard_classic | Cornèrcard cornercard | issuer |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_partner_link (
product_id TEXT NOT NULL REFERENCES product(id),
partner_id TEXT NOT NULL REFERENCES partner(id),
role TEXT NOT NULL, -- issuer, co_brand, reward_program, white_label_advisor
note TEXT,
valid_from TEXT, -- YYYY-MM-DD when the relationship started; NULL = always
PRIMARY KEY (product_id, partner_id, role)
);
CREATE INDEX idx_ppl_partner ON product_partner_link(partner_id);
CREATE INDEX idx_ppl_role ON product_partner_link(role);