Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-url-type-tracker-pixel-channel-docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"adcontextprotocol": patch
---

docs(creative-channels): replace invalid `"url_type": "tracker"` with `"url_type": "tracker_pixel"` in display, audio, carousels, and DOOH channel docs to match the `url-asset-type.json` enum (`clickthrough` / `tracker_pixel` / `tracker_script`). Addresses adcp#2986 step 1 (3.0.x docs cleanup). Wire format unchanged — the published schema enum already excluded `"tracker"`, so the channel docs were emitting an invalid value sellers could not validate against.
4 changes: 2 additions & 2 deletions docs/creative/channels/audio.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Multi-segment audio assembled dynamically:
},
"impression_tracker": {
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"url": "https://track.brand.com/imp?buy={MEDIA_BUY_ID}&station={APP_BUNDLE}&cb={CACHEBUSTER}"
},
"landing_url": {
Expand All @@ -199,7 +199,7 @@ Multi-segment audio assembled dynamically:
"assets": {
"vast_url": {
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"url": "https://ad-server.brand.com/audio-vast?campaign={MEDIA_BUY_ID}&cb={CACHEBUSTER}"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/creative/channels/carousels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ https://track.brand.com/view?buy={MEDIA_BUY_ID}&item={CAROUSEL_INDEX}&total={CAR
},
"impression_tracker": {
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"url": "https://track.brand.com/imp?buy={MEDIA_BUY_ID}&cb={CACHEBUSTER}"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/creative/channels/display.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Display formats in AdCP include:
},
"impression_tracker": {
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"url": "https://track.brand.com/imp?buy={MEDIA_BUY_ID}&cb={CACHEBUSTER}"
}
}
Expand Down
12 changes: 6 additions & 6 deletions docs/creative/channels/dooh.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ DOOH formats differ from other digital formats:
{
"asset_id": "impression_tracker",
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"required": true
}
]
Expand Down Expand Up @@ -75,7 +75,7 @@ DOOH formats differ from other digital formats:
{
"asset_id": "impression_tracker",
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"required": true
}
]
Expand Down Expand Up @@ -109,7 +109,7 @@ DOOH formats differ from other digital formats:
{
"asset_id": "impression_tracker",
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"required": true
}
]
Expand All @@ -124,7 +124,7 @@ DOOH formats use impression trackers (often called "proof-of-play") to verify wh
{
"asset_id": "impression_tracker",
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"required": true,
"requirements": {
"required_macros": [
Expand Down Expand Up @@ -158,7 +158,7 @@ The mechanics are identical to digital impression tracking - it's just a URL tha
},
"impression_tracker": {
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"url": "https://track.brand.com/pop?buy={MEDIA_BUY_ID}&screen={SCREEN_ID}&venue={VENUE_TYPE}&ts={PLAY_TIMESTAMP}&lat={VENUE_LAT}&long={VENUE_LONG}"
}
}
Expand All @@ -184,7 +184,7 @@ The mechanics are identical to digital impression tracking - it's just a URL tha
},
"impression_tracker": {
"asset_type": "url",
"url_type": "tracker",
"url_type": "tracker_pixel",
"url": "https://track.brand.com/pop?buy={MEDIA_BUY_ID}&screen={SCREEN_ID}&ts={PLAY_TIMESTAMP}"
}
}
Expand Down
Loading