What a node contains
Every hop appends one entry. The entries stay in order, so the list itself is the route.
| Node key | Holds | Reading it |
|---|---|---|
| asi | The advertising system identifier — the domain of that hop | Must be the domain whose sellers.json you then open. A hop naming a domain that publishes no such file cannot be checked further. |
| sid | The seller identifier inside that system | This is the value to look up. Absence of the identifier in that system's file is a contradiction between two public declarations. |
| hp | Whether this node is paid for the impression | Distinguishes a payment hop from a purely technical one. |
| rid | The request identifier at that hop | Lets one auction be traced across two systems' logs when both are available. |
| complete | A flag on the chain, not on a node | Set when every hop from the publisher onwards is present. Cleared when at least one hop is missing or unknown. |
Complete versus incomplete, stated plainly
The flag is a claim about the list's coverage. It is not a quality score and does not describe the inventory.
What complete asserts
- Every intermediary between the original publisher and this request appended a node.
- The first node names the system the publisher itself sells through.
- Each identifier can, in principle, be looked up in that system's public seller file.
What complete does not assert
- That the declarations are accurate — only that they exist and are ordered.
- That the inventory is desirable, viewable, or free of fraud.
- That the chain is short. A long complete chain is still complete.
Checking one hop end to end
Three lookups, all against publicly served files, no account needed.
Take the node's system domain.Open that domain's /sellers.json. This file is published by the system, not by the publisher.
Search it for the node's seller identifier.A matching entry names the seller and states whether the relationship is a publisher or an intermediary one.
Go back to the publisher's ads.txt.The same system domain and account identifier should appear there too. Two files, published by two different parties, agreeing on one pair of values — that agreement is the check.
Basis for this procedure
- IAB Tech Lab — supply chain object specification. Source for node keys, ordering, and the meaning of the completeness flag.
- IAB Tech Lab — sellers.json specification. Source for the seller-record contents used in the lookup above.