Skip to content

Commit

Permalink
Rubicon adapter: accept accountId, siteId, zoneId as strings (prebid#…
Browse files Browse the repository at this point in the history
  • Loading branch information
And1sS authored Dec 14, 2021
1 parent 02bc1de commit 4242290
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions src/main/resources/static/bidder-params/rubicon.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,29 @@
"type": "object",
"properties": {
"accountId": {
"type": "integer",
"type": [
"integer",
"string"
],
"pattern": "^\\d+$",
"minimum": 1,
"description": "An ID which identifies the publisher's account"
},
"siteId": {
"type": "integer",
"type": [
"integer",
"string"
],
"pattern": "^\\d+$",
"minimum": 1,
"description": "An ID which identifies the site selling the impression"
},
"zoneId": {
"type": "integer",
"type": [
"integer",
"string"
],
"pattern": "^\\d+$",
"minimum": 1,
"description": "An ID which identifies the sub-section of the site where the impression is located"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"ext": {
"rubicon": {
"accountId": 2001,
"accountId": "2001",
"siteId": 3001,
"zoneId": 4001
}
Expand Down

0 comments on commit 4242290

Please sign in to comment.