Skip to content

Commit 708230f

Browse files
Remove adpod from the adunit-reference page as it is no longer supported in V11 (prebid#6564)
1 parent d6e8452 commit 708230f

1 file changed

Lines changed: 1 addition & 51 deletions

File tree

dev-docs/adunit-reference.md

Lines changed: 1 addition & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ See [Prebid Native Implementation](/prebid/native-implementation.html) for detai
106106
| Name | Scope | Type | Description |
107107
|------------------+-------------+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
108108
| `pos` | Optional | Integer | Ad position on screen, see [OpenRTB 2.5 spec][openRTB]. OpenRTB page position value: 0=unknown, 1=above-the-fold, 3=below-the-fold, 4=header, 5=footer, 6=sidebar, 7=full-screen |
109-
| `context` | Recommended | String | The video context, either `'instream'`, `'outstream'`, or `'adpod'` (for long-form videos). Example: `context: 'outstream'`. Defaults to 'instream'. |
109+
| `context` | Recommended | String | The video context, either `'instream'` or `'outstream'`. Example: `context: 'outstream'`. Defaults to 'instream'. |
110110
| `useCacheKey` | Optional | Boolean | Defaults to `false`. While context `'instream'` always will return an vastUrl in bidResponse, `'outstream'` will not. Setting this `true` will use cache url defined in global options also for outstream responses. |
111111
| `placement` | Recommended | Integer | 1=in-stream, 2=in-banner, 3=in-article, 4=in-feed, 5=interstitial/floating. **Highly recommended** because some bidders require more than context=outstream. |
112112
| `plcmt` | Recommended | Integer | 1=in-stream, 2=accompanying content, 3=interstitial, 4=no content/standalone. **Highly recommended** to comply with new IAB video specifications. See [AdCOM v1 spec](https://github.com/InteractiveAdvertisingBureau/AdCOM/blob/develop/AdCOM%20v1.0%20FINAL.md#list_plcmtsubtypesvideo) |
@@ -129,21 +129,6 @@ See [Prebid Native Implementation](/prebid/native-implementation.html) for detai
129129
| `delivery` | Optional | Array[Integer] | Supported delivery methods (e.g., streaming, progressive), see [OpenRTB 2.5 spec][openRTB]. |
130130
| `playbackend` | Optional | Integer | The event that causes playback to end, see [OpenRTB 2.5 spec][openRTB]. |
131131

132-
If `'video.context'` is set to `'adpod'` then the following parameters are also available.
133-
134-
{: .table .table-bordered .table-striped }
135-
| Name | Scope | Type | Description |
136-
|------------------+-------------+------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
137-
| `adPodDurationSec` | Required | Number | The length of the adpod in seconds. Example: `adPodDurationSec = 120` |
138-
| `durationRangeSec` | Required | Array[Number] | An array of numbers represents a list of the potential/accepted duration values that the creatives can be in the adpod block. Example: `durationRangeSec = [30, 60, 90]` |
139-
| `requireExactDuration` | Optional | Boolean | Whether the returned creatives running time must match the value of `adPodDurationSec`. Example: `requireExactDuration = true` |
140-
| `tvSeriesName` | Optional | String | The name of the television series video the adpod will appear in. Example: `tvSeriesName = 'Once Upon A Time'` |
141-
| `tvEpisodeName` | Optional | String | The name of the episode of the television series video the adpod will appear in. Example: `tvEpisodeName = 'Pilot'` |
142-
| `tvSeasonNumber` | Optional | Number | A number representing the season number of the television series video the adpod will appear in. Example: `tvSeasonNumber = 1` |
143-
| `tvEpisodeNumber` | Optional | Number | A number representing the episode number of the television series video the adpod will appear in. Example: `tvEpisodeNumber = 1` |
144-
| `contentLengthSec` | Optional | Number | A number representing the length of the video in seconds. Example: `contentLengthSec = 1` |
145-
| `contentMode` | Optional | String | A string indicating the type of content being displayed in the video player. There are two options, `live` and `on-demand`. Example: `contentMode = 'on-demand'` |
146-
147132
<a name="adUnit-examples"></a>
148133

149134
<a name="adUnit.video"></a>
@@ -193,7 +178,6 @@ When using the Video Module, the mediaTypes.video properties get filled out auto
193178
* [Instream Sound-On](#adUnit-video-example-instream)
194179
* [Accompanying Content](#adUnit-video-example-accompanying)
195180
* [No Content/Standalone](#adUnit-video-example-outstream)
196-
* [Adpod (Long-Form)](#adUnit-video-example-adpod)
197181
* [Native](#adUnit-native-example)
198182
* [Multi-Format](#adUnit-multi-format-example)
199183
* [Twin Codes](#adUnit-twin-codes-example)
@@ -419,40 +403,6 @@ pbjs.addAdUnits({
419403
});
420404
```
421405

422-
<a name="adUnit-video-example-adpod"></a>
423-
424-
#### Adpod (Long-Form)
425-
426-
For an example of an adpod video ad unit that you handle on your own, see below. For more detailed instructions, see [Show Long-Form Video Ads]({{site.baseurl}}/prebid-video/video-long-form.html).
427-
428-
```javascript
429-
var longFormatAdUnit = {
430-
video: {
431-
// required params
432-
context: 'adpod',
433-
playerSize: [640, 480],
434-
adPodDurationSec: 300,
435-
durationRangeSec: [15, 30],
436-
437-
// optional params
438-
requireExactDuration: true,
439-
tvSeriesName: 'TvName',
440-
tvEpisodeName: 'episodeName',
441-
tvSeasonNumber: 3,
442-
tvEpisodeNumber: 6,
443-
contentLength: 300, // time in seconds,
444-
contentMode: 'on-demand'
445-
}
446-
447-
bids: [{
448-
bidder: 'appnexus',
449-
params: {
450-
placementId: '123456789',
451-
}
452-
}]
453-
}
454-
```
455-
456406
<a name="adUnit-native-example"></a>
457407

458408
### Native

0 commit comments

Comments
 (0)