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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Pangle Adapter Params",
     4    "description": "A schema which validates params accepted by the Pangle adapter",
     5    "type": "object",
     6    "properties": {
     7      "token": {
     8        "type": "string",
     9        "description": "Access Token",
    10        "pattern": ".+"
    11      },
    12      "appid": {
    13        "type": "string",
    14        "description": "App ID",
    15        "pattern": "[0-9]+"
    16      },
    17      "placementid": {
    18        "type": "string",
    19        "description": "Placement ID",
    20        "pattern": "[0-9]+"
    21      }
    22    },
    23    "required": [
    24      "token"
    25    ],
    26    "dependencies": {
    27      "placementid": [
    28        "appid"
    29      ],
    30      "appid": [
    31        "placementid"
    32      ]
    33    }
    34  }