Appearance
Supply Chain (schain)
The schain field designed to provide transparency and verifiability in the digital advertising supply chain. It represents the entities involved in the selling and reselling of ad inventory. These identifiers typically include the certification authority domain, seller account ID, and a list of intermediate entities (such as exchanges or aggregators) that have participated in the ad transaction.
Prior to requesting bids, aggregators or resellers must declare their seller information to facilitate a transparent and efficient bidding process.
Parameter | Required | Type | Description |
---|---|---|---|
asi | required | string | canonical domain of the ad system where sellers.json is hosted |
sid | required | string | seller ID associated with the seller or reseller account |
hp | required | integer | 1 or 0 indicating if this node is involved in the payment flow |
js
// define supply chain
aps.record("ad/schain/define", {
schain: {
complete: 1,
ver: "1.0",
nodes: [
{
asi: "string",
sid: "string",
hp: integer,
},
],
},
});
// define supply chain
aps.record("ad/schain/define", {
schain: {
complete: 1,
ver: "1.0",
nodes: [
{
asi: "string",
sid: "string",
hp: integer,
},
],
},
});