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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Undertone Adapter Params",
     4    "description": "A schema which validates params accepted by the Undertone adapter",
     5    "type": "object",
     6    "properties": {
     7      "placementId": {
     8        "type": "integer",
     9        "minimum": 1,
    10        "description": "Undertone unique placement identifier"
    11      },
    12      "publisherId": {
    13        "type": "integer",
    14        "minimum": 1,
    15        "description": "Publisher unique identifier"
    16      }
    17    },
    18    "required": [
    19      "placementId",
    20      "publisherId"
    21    ]
    22  }