github.com/prebid/prebid-server@v0.275.0/static/bidder-params/gumgum.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "GumGum Adapter Params",
     4    "description": "A schema which validates params accepted by the GumGum adapter",
     5    "type": "object",
     6    "properties": {
     7      "zone": {
     8        "type": "string",
     9        "description": "A tracking id used to identify GumGum zone.",
    10        "minLength": 8
    11      },
    12      "pubId": {
    13        "type": "integer",
    14        "description": "A tracking id used to identify GumGum publisher"
    15      },
    16      "irisid": {
    17        "type": "string",
    18        "description": "A hashed IRIS.TV Content ID"
    19      },
    20      "slot": {
    21        "type": "integer",
    22        "description": "A slot id used to identify a slot placement mapped to a GumGum zone or publisher"
    23      }
    24    },
    25    "anyOf": [
    26      {
    27        "required": [
    28          "zone"
    29        ]
    30      },
    31      {
    32        "required": [
    33          "pubId"
    34        ]
    35      }
    36    ]
    37  }