Skip to content

Commit

Permalink
Sovrn: Accept Imp.ext Bidfloor either as a number or string (#3484)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikagotso authored Oct 15, 2024
1 parent 351657d commit f02440b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/main/resources/static/bidder-params/sovrn.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@
"description": "An ID which identifies the sovrn ad tag (DEPRECATED, use \"tagid\" instead)"
},
"bidfloor": {
"type": "number",
"description": "The minimum acceptable bid, in CPM, using US Dollars"
"anyOf": [
{
"type": "number",
"description": "The minimum acceptable bid, in CPM, using US Dollars"
},
{
"type": "string",
"description": "The minimum acceptable bid, in CPM, using US Dollars (as a string)"
}
]
},
"adunitcode": {
"type": "string",
Expand Down

0 comments on commit f02440b

Please sign in to comment.