From 307d5eb4f4da202c3d85b882333e83948a85d597 Mon Sep 17 00:00:00 2001 From: Irakli Gotsiridze Date: Thu, 7 Sep 2023 16:03:16 +0400 Subject: [PATCH 1/3] adunitcode description --- dev-docs/bidders/sovrn.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dev-docs/bidders/sovrn.md b/dev-docs/bidders/sovrn.md index 9c7581933f..c9b61c5e69 100644 --- a/dev-docs/bidders/sovrn.md +++ b/dev-docs/bidders/sovrn.md @@ -19,10 +19,11 @@ sidebarType: 1 ### Bid Params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------|----------|----------------------|------------|----------| -| `tagid` | required | The sovrn Ad Tag ID | `'315045'` | `string` | -| `bidfloor` | optional | Bid floor in dollars | `'0.04'` | `string` | +| Name | Scope | Description | Example | Type | +|--------------|----------|----------------------|------------------|----------| +| `tagid` | required | The sovrn Ad Tag ID | `'315045'` | `string` | +| `bidfloor` | optional | Bid floor in dollars | `'0.04'` | `string` | +| `adunitcode` | optional | Ad unit code | `'example_code'` | `string` | Bid Params for video ads. These params should be added to `mediatype.video`. From e830094e4f7517a24663758e38f11707950387af Mon Sep 17 00:00:00 2001 From: Irakli Gotsiridze Date: Fri, 8 Sep 2023 00:02:12 +0400 Subject: [PATCH 2/3] minor update --- dev-docs/bidders/sovrn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/sovrn.md b/dev-docs/bidders/sovrn.md index c9b61c5e69..522af6e301 100644 --- a/dev-docs/bidders/sovrn.md +++ b/dev-docs/bidders/sovrn.md @@ -23,7 +23,7 @@ sidebarType: 1 |--------------|----------|----------------------|------------------|----------| | `tagid` | required | The sovrn Ad Tag ID | `'315045'` | `string` | | `bidfloor` | optional | Bid floor in dollars | `'0.04'` | `string` | -| `adunitcode` | optional | Ad unit code | `'example_code'` | `string` | +| `adunitcode` | optional | Ad unit identifier | `'example_code'` | `string` | Bid Params for video ads. These params should be added to `mediatype.video`. From 2f01f9d89f051b1db4d7f992c84519e7bb219284 Mon Sep 17 00:00:00 2001 From: Irakli Gotsiridze Date: Tue, 19 Sep 2023 15:59:14 +0400 Subject: [PATCH 3/3] fix linter errors --- dev-docs/bidders/sovrn.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-docs/bidders/sovrn.md b/dev-docs/bidders/sovrn.md index 522af6e301..1baa37724e 100644 --- a/dev-docs/bidders/sovrn.md +++ b/dev-docs/bidders/sovrn.md @@ -56,7 +56,7 @@ Bid Params for video ads. These params should be added to `mediatype.video`. ### Note -[Protocols list](#epsilon-protocols) +[Protocols list](https://docs.prebid.org/dev-docs/bidders/epsilon.html#protocols) #### MIME types @@ -126,7 +126,7 @@ Source: [OpenRTB scpecification](https://www.iab.com/wp-content/uploads/2016/03/ #### Video instream adUnit -``` +```javascript var instreamAdUnit = { code: 'instream-div', sizes: [[640, 480]], @@ -149,7 +149,7 @@ Source: [OpenRTB scpecification](https://www.iab.com/wp-content/uploads/2016/03/ #### Video outstream adUnit -``` +```javascript var outstreamAdUnit = { code: 'outstream-div', sizes: [[640, 480]], @@ -167,12 +167,12 @@ Source: [OpenRTB scpecification](https://www.iab.com/wp-content/uploads/2016/03/ tagid: '315045' } }] - }, + } ``` #### Banner adUnit -``` +```javascript var bannerAdUnit = { code: 'banner-div', sizes: [[300, 250]],