Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions src/main/resources/static/bidder-params/taboola.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Taboola Adapter Params",
"description": "A schema which validates params accepted by the Taboola adapter",

"type": "object",
"properties": {
"publisherId": {
Expand All @@ -11,7 +12,12 @@
"type": "string"
},
"tagid": {
"type": "string"
"type": "string",
"description": "Deprecated, use tagId instead."
},
"tagId": {
"type": "string",
"description": "preferred, will get precedence if both tagId and tagid are defined"
},
"bidfloor": {
"type": "number"
Expand All @@ -35,8 +41,12 @@
"type": "integer"
}
},
"required": [
"tagid",
"publisherId"
"oneOf": [
{
"required": [ "tagid", "publisherId" ]
},
{
"required": [ "tagId", "publisherId" ]
}
]
}
Loading