github.com/prebid/prebid-server/v2@v2.18.0/static/bidder-params/taboola.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Taboola Adapter Params",
     4    "description": "A schema which validates params accepted by the Taboola adapter",
     5  
     6    "type": "object",
     7    "properties": {
     8      "publisherId": {
     9        "type": "string"
    10      },
    11      "publisherDomain": {
    12        "type": "string"
    13      },
    14      "tagid": {
    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"
    21      },
    22      "bidfloor": {
    23        "type": "number"
    24      },
    25      "bcat": {
    26        "type": "array",
    27        "items": {
    28          "type": "string"
    29        }
    30      },
    31      "badv": {
    32        "type": "array",
    33        "items": {
    34          "type": "string"
    35        }
    36      },
    37      "pageType": {
    38        "type": "string"
    39      },
    40      "position": {
    41        "type": "integer"
    42      }
    43    },
    44    "oneOf": [
    45      {
    46        "required": [ "tagid", "publisherId" ]
    47      },
    48      {
    49        "required": [ "tagId", "publisherId" ]
    50      }
    51    ]
    52  }