You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: overview/glossary.md
+59-8Lines changed: 59 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,35 @@ implementation) to the AdUnit, (the sellable item).
27
27
## AdUnit
28
28
29
29
`Ad servers such as Google Ad Manager` - the AdUnit is the thing that business people care about. It's an
30
-
inventory concept targeted by line items.
30
+
inventory concept targeted by [line items](#line-items).
31
31
32
-
[`Prebid Adunit`](/dev-docs/adunit-reference.html) - Prebid adds another layer to the ad server AdUnit: which header bidders should participate in the auction and their parameters.
32
+
[Prebid Adunit] - Prebid adds another layer to the ad server AdUnit: which header bidders should participate in the auction and their parameters.
33
+
34
+
## Placement
35
+
36
+
A 'placement' is bidder term that's similar to [AdUnit](#adunit) -- it helps the bidder link the AdUnit to details about the header bidding auction that have been entered into their systems.
37
+
Some bidders may use a combination of multiple parameters like zoneId, formatId, siteId or something else, but the concept is similar.
38
+
39
+
{: .alert.alert-warning :}
40
+
A notable exception is Google Ad Manager. [Google Ad Manager placements](https://support.google.com/admanager/answer/177397?hl=en) are a _group of [ad units](#adunit)_!
41
+
42
+
## Line Items
43
+
44
+
A 'Line Item' is an ad server concept that contains information about how a specific ad is intended to serve to a website or app. Line items are added to containers called 'Orders' and carry details like:
45
+
46
+
- The number of times the advertiser or buyer wants an ad creative to serve
47
+
- The cost negotiated for the campaign
48
+
- Start and end times of the campaign
49
+
- Targeting that allows the advertiser or buyer to reach its intended audience or demographic
50
+
51
+
(Adapted from the [Google Ad Manager Line Item documentation](https://support.google.com/admanager/answer/9405477?hl=en))
52
+
53
+
Integrating Prebid bids with other ad sources requires a [special line item setup](/adops/adops-planning-guide.html) if you aren't using an ad server that supports Prebid natively, which most don't.
54
+
The [Prebid Line Item Manager] can help set up GAM line items. GAM 360 has the beginnings of a [native Prebid integration](https://support.google.com/admanager/answer/12273163?hl=en).
55
+
56
+
## Key Values
57
+
58
+
A generic way to target [line items](#line-items) in your ad manager. Prebid makes heavy use of key values to indicate the winning bidder and the winning bid price.
33
59
34
60
## AMP
35
61
@@ -39,10 +65,14 @@ also limits the scripts that can be run on the page. See [Prebid's AMP page](/fo
39
65
## Config ID
40
66
41
67
`Prebid SDK` - when coding the mobile app for the technical implmentation of the adslot, the SDK function call
42
-
refers to this ID that refers to an impression-level stored request on Prebid Server. This server-side stored
68
+
refers to this ID that refers to an impression-level stored request on [Prebid Server]. This server-side stored
43
69
request contains the bidders and parameters that can participate in the auction for that adslot.
44
70
45
-
## MediaType or Media Format
71
+
## Ad Formats
72
+
73
+
This section contains terms around ad formats and their respective configuration.
74
+
75
+
### MediaType or Media Format
46
76
47
77
`banner` - also called 'display', these ads are generally simple rectangular images.
48
78
@@ -51,22 +81,26 @@ can be formatted to smoothly fit into the content.
51
81
52
82
`video` - see Player-Initiated Video and Page-Initiated Video
53
83
54
-
## Multiformat AdUnit
84
+
###Multiformat AdUnit
55
85
56
86
An AdUnit that can display creatives of multiple media formats: banner, native, and/or video.
57
87
58
-
## Page-Initated Video
88
+
###Page-Initated Video
59
89
60
90
Also called 'outstream', these are AdUnits that work in Prebid.js just like banners, but are displayed with
61
91
a special 'renderer' to play a video ad instead of a static image.
62
92
63
-
## Player-Initiated Video
93
+
###Player-Initiated Video
64
94
65
95
Once called 'instream', these are AdUnits that live within a video player.
66
96
97
+
### Interstitial
98
+
99
+
Interstitial ads are full-screen ads that cover most of the visible UI. They're typically displayed at during navigation, e.g. clicking a link or going to the next level in a game.
100
+
67
101
## Prebid Mobile
68
102
69
-
Prebid SDK and Prebid Server working together to provide header bidding for mobile apps.
103
+
Prebid SDK and [Prebid Server] working together to provide header bidding for mobile apps.
70
104
71
105
## Renderer
72
106
@@ -83,3 +117,20 @@ associated with a particular adslot. There's a string ID for this block of JSON
83
117
price granularity, targeting parameters, etc. There's a string ID for this block of JSON that can be used by the Prebid SDK or Prebid.js. In Prebid SDK, the "account ID" field in the init function currently doubles as the ID of the top-level stored request.
84
118
85
119
`AMP stored request` - a block of JSON available to Prebid Server that stores both global and impression-level parameters. There's a string ID for this block of JSON that can be used by AMP RTC calls.
120
+
121
+
## Server Side Bidding
122
+
123
+
The header-bidding auction takes place on a server. Notable server side bidding systems are
0 commit comments