Skip to content

Commit

Permalink
Rise: Add placementId parameter to bidder ext (#3626)
Browse files Browse the repository at this point in the history
  • Loading branch information
zkosanovic committed Apr 22, 2024
1 parent 7635519 commit ca83a83
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions openrtb_ext/imp_rise.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ package openrtb_ext
type ImpExtRise struct {
PublisherID string `json:"publisher_id"`
Org string `json:"org"`
PlacementID string `json:"placementId"`
}
16 changes: 14 additions & 2 deletions static/bidder-params/rise.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,22 @@
"publisher_id": {
"type": "string",
"description": "Deprecated, use org instead."
},
"placementId": {
"type": "string",
"description": "Placement ID."
}
},
"oneOf": [
{ "required": ["org"] },
{ "required": ["publisher_id"] }
{
"required": [
"org"
]
},
{
"required": [
"publisher_id"
]
}
]
}

0 comments on commit ca83a83

Please sign in to comment.