File tree Expand file tree Collapse file tree
src/main/resources/static/bidder-params Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 "$schema" : " http://json-schema.org/draft-04/schema#" ,
33 "title" : " Taboola Adapter Params" ,
44 "description" : " A schema which validates params accepted by the Taboola adapter" ,
5+
56 "type" : " object" ,
67 "properties" : {
78 "publisherId" : {
1112 "type" : " string"
1213 },
1314 "tagid" : {
14- "type" : " string"
15+ "type" : " string" ,
16+ "description" : " Deprecated, use tagId instead."
17+ },
18+ "tagId" : {
19+ "type" : " string" ,
20+ "description" : " preferred, will get precedence if both tagId and tagid are defined"
1521 },
1622 "bidfloor" : {
1723 "type" : " number"
3541 "type" : " integer"
3642 }
3743 },
38- "required" : [
39- " tagid" ,
40- " publisherId"
44+ "oneOf" : [
45+ {
46+ "required" : [ " tagid" , " publisherId" ]
47+ },
48+ {
49+ "required" : [ " tagId" , " publisherId" ]
50+ }
4151 ]
4252}
You can’t perform that action at this time.
0 commit comments