This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
request.go
188 lines (171 loc) · 5.25 KB
/
request.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
// Package request provides OpenRTB Native 1.2 request types
// (section "4 Native Ad Request Markup Details")
//
// https://iabtechlab.com/standards/openrtb-native/
// https://iabtechlab.com/wp-content/uploads/2016/07/OpenRTB-Native-Ads-Specification-Final-1.2.pdf
package request
import (
"encoding/json"
"github.com/mxmCherry/openrtb/v17/native1"
)
// 4.1 Native Markup Request Object
//
// The Native Object defines the native1 advertising opportunity available for bid via this bid request.
// It will be included as a JSON-encoded string in the bid request’s imp.native1 field or as a direct JSON object, depending on the choice of the exchange.
// While OpenRTB 2.x officially supports only JSON-encoded strings, many exchanges have implemented a formal object.
// Check with your integration docs.
//
// Note: Prior to VERSION 1.1, the specification could be interpreted as requiring the native1 request to have a root node with a single field “native” that would contain the object above as its value.
// The Native Markup Request Object specified above is now the root object.
type Request struct {
// Field:
// ver
// Scope:
// optional
// Type:
// string
// Default:
// 1.2
// Description:
// Version of the Native Markup version in use.
Ver string `json:"ver,omitempty"`
// Field:
// layout
// Scope:
// recommended in 1.0, deprecated/removed in 1.2
// Type:
// integer
// Description:
// The Layout ID of the native1 ad unit.
// See the Table of Layout IDs below.
Layout native1.Layout `json:"layout,omitempty"`
// Field:
// adunit
// Scope:
// recommended in 1.0, deprecated/removed in 1.2
// Type:
// integer
// Description:
// The Ad unit ID of the native1 ad unit.
// See Table of Ad Unit IDs below for a list of supported core ad units.
AdUnit native1.AdUnit `json:"adunit,omitempty"`
// Field:
// context
// Scope:
// recommended
// Type:
// integer
// Description:
// The context in which the ad appears.
// See Table of Context IDs below for a list of supported context types.
Context native1.ContextType `json:"context,omitempty"`
// Field:
// contextsubtype
// Scope:
// optional
// Type:
// integer
// Description:
// A more detailed context in which the ad appears.
// See Table of Context SubType IDs below for a list of supported context subtypes.
ContextSubType native1.ContextSubType `json:"contextsubtype,omitempty"`
// Field:
// plcmttype
// Scope:
// recommended
// Type:
// integer
// Description:
// The design/format/layout of the ad unit being offered.
// See Table of Placement Type IDs below for a list of supported placement types.
PlcmtType native1.PlacementType `json:"plcmttype,omitempty"`
// Field:
// plcmtcnt
// Scope:
// optional
// Type:
// integer
// Default:
// 1
// Description:
// The number of identical placements in this Layout.
// Refer Section 8.1 Multiplacement Bid Requests for further detail.
PlcmtCnt int64 `json:"plcmtcnt,omitempty"`
// Field:
// seq
// Scope:
// optional
// Type:
// integer
// Default:
// 0
// Description:
// 0 for the first ad, 1 for the second ad, and so on.
// Note this would generally NOT be used in combination with plcmtcnt - either you are auctioning multiple identical placements (in which case plcmtcnt>1, seq=0) or you are holding separate auctions for distinct items in the feed (in which case plcmtcnt=1, seq=>=1)
Seq int64 `json:"seq,omitempty"`
// Field:
// assets
// Scope:
// required
// Type:
// array of objects
// Description:
// An array of Asset Objects.
// Any bid response must comply with the array of elements expressed in the bid request.
Assets []Asset `json:"assets"`
// Field:
// aurlsupport
// Scope:
// optional
// Type:
// int
// Default:
// 0
// Description:
// Whether the supply source / impression supports returning an assetsurl instead of an asset object.
// 0 or the absence of the field indicates no such support.
AURLSupport int8 `json:"aurlsupport,omitempty"`
// Field:
// durlsupport
// Scope:
// optional
// Type:
// int
// Default:
// 0
// Description:
// Whether the supply source / impression supports returning a dco url instead of an asset object.
// 0 or the absence of the field indicates no such support.
// Beta feature.
DURLSupport int8 `json:"durlsupport,omitempty"`
// Field:
// eventtrackers
// Scope:
// optional
// Type:
// array of objects
// Description:
// Specifies what type of event tracking is supported - see Event Trackers Request Object
EventTrackers []EventTracker `json:"eventtrackers,omitempty"`
// Field:
// privacy
// Scope:
// recommended
// Type:
// integer
// Default:
// 0
// Description:
// Set to 1 when the native1 ad supports buyer-specific privacy notice.
// Set to 0 (or field absent) when the native1 ad doesn’t support custom privacy links or if support is unknown.
Privacy int8 `json:"privacy,omitempty"`
// Field:
// ext
// Scope:
// optional
// Type:
// object
// Description:
// This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification
Ext json.RawMessage `json:"ext,omitempty"`
}