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
* return following columns, with specified type, in that order:
192
+
* return following columns, with specified type, in this order:
178
193
* account ID, string
179
194
* price granularity, string
180
195
* banner cache TTL, integer
@@ -191,7 +206,19 @@ runtime
191
206
192
207
It is recommended to include `LIMIT 1` clause in the query because only the very first result returned will be taken.
193
208
194
-
TCF configuration column format:
209
+
If a host company doesn't support a given field, or they have a different table name, they can just update the query with whatever values are needed. e.g.
and bid_validations column is json with next format
334
+
#### Bid Validations configuration JSON
335
+
336
+
The `bid_validations` column is json with this format:
308
337
309
338
```json
310
339
{
311
340
"banner-creative-max-size": "enforce"
312
341
}
313
342
```
314
343
344
+
Valid values are:
345
+
- "skip": don't do anything about creative max size for this publisher
346
+
- "warn": if a bidder returns a creative that's larger in height or width than any of the allowed sizes, log an operational warning.
347
+
- "enforce": if a bidder returns a creative that's larger in height or width than any of the allowed sizes, reject the bid and log an operational warning.
315
348
316
-
Analytics configuration column format:
349
+
#### Analytics Validations configuration JSON
350
+
351
+
The `analytics_config` configuration column format:
317
352
318
353
```json
319
354
{
320
355
"auction-events": {
321
-
"web": true,
322
-
"amp": true,
323
-
"app": false
356
+
"web": true, // the analytics adapter should log auction events when the channel is web
357
+
"amp": true, // the analytics adapter should log auction events when the channel is AMP
358
+
"app": false // the analytics adapter should not log auction events when the channel is app
324
359
}
325
360
}
326
361
```
327
362
328
-
#### Example
363
+
#### Creating the accounts table
329
364
330
-
Query to create accounts_account table:
365
+
Traditionally the table name used by Prebid Server is `accounts_account`. No one remembers why. But here's SQL
0 commit comments