From ac6288312a255a5608f6b0135d3b770b3e7af7b6 Mon Sep 17 00:00:00 2001 From: ix-certification Date: Thu, 28 Jan 2021 11:21:17 -0500 Subject: [PATCH] IX: Ad unit level properties support (#2494) * adding detectMissingSizes feature toggle * cfg example update * ad unit level properties support Co-authored-by: Ix-Prebid-Support --- dev-docs/bidders/indexExchange.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/indexExchange.md b/dev-docs/bidders/indexExchange.md index dc6719a3e6..a0af161c44 100644 --- a/dev-docs/bidders/indexExchange.md +++ b/dev-docs/bidders/indexExchange.md @@ -116,7 +116,7 @@ object are detailed here. | ---- | ----- | ----------- | ------- | ---- | | `siteId` | Required | An IX-specific identifier that is associated with a specific size on this ad unit. This is similar to a placement ID or an ad unit ID that some other modules have. | `'3723'` | `string` | | `size` | Required | The single size associated with the site ID. It should be one of the sizes listed in the ad unit under `adUnits[].sizes` or `adUnits[].mediaTypes.video.playerSize`. | `[300, 600]` | `Array` | -| `video` | Required | The video object will serve as the properties of the video ad. You can create any field under the video object that is mentioned in the `OpenRTB Spec v2.5`. Some fields like `mimes`, `protocols`, `minduration`, `maxduration` are required. | `video: { startdelay: 0 }` | `object` | +| `video` | Required | The video object will serve as the properties of the video ad. You can create any field under the video object that is mentioned in the `OpenRTB Spec v2.5`. Some fields like `mimes`, `protocols`, `minduration`, `maxduration` are required. Properties not defined at this level, will be pulled from the Adunit level. | `video: { startdelay: 0 }` | `object` | | `video.mimes` | Required | Array list of content MIME types supported. | `['video/mp4', 'video/x-flv']` | `Array` | | `video.minduration` | Required | Minimum video ad duration in seconds. | `0` | `integer` | | `video.maxduration` | Required | Maximum video ad duration in seconds. | `300` | `integer` |