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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Outbrain Adapter Params",
     4    "description": "A schema which validates params accepted by the Outbrain adapter",
     5  
     6    "type": "object",
     7    "properties": {
     8      "publisher": {
     9        "type": "object",
    10        "properties": {
    11          "id": {
    12            "type": "string"
    13          },
    14          "name": {
    15            "type": "string"
    16          },
    17          "domain": {
    18            "type": "string"
    19          }
    20        },
    21        "required": ["id"]
    22      },
    23      "tagid": {
    24        "type": "string"
    25      },
    26      "bcat": {
    27        "type": "array",
    28        "items": {
    29          "type": "string"
    30        }
    31      },
    32      "badv": {
    33        "type": "array",
    34        "items": {
    35          "type": "string"
    36        }
    37      }
    38    },
    39    "required": ["publisher"]
    40  }