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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "AdOcean Adapter Params",
     4    "description": "A schema which validates params accepted by the AdOcean adapter",
     5    "type": "object",
     6    "properties": {
     7      "emiter": {
     8        "type": "string",
     9        "description": "Deprecated, use emitterPrefix instead. AdOcean emiter",
    10        "pattern": ".+"
    11      },
    12      "emitterPrefix": {
    13        "type": "string",
    14        "description": "AdOcean emitter prefix",
    15        "pattern": "^[\\w\\-]+$"
    16      },
    17      "masterId": {
    18        "type": "string",
    19        "description": "Master's id",
    20        "pattern": "^[\\w.]+$"
    21      },
    22      "slaveId": {
    23        "type": "string",
    24        "description": "Slave's id",
    25        "pattern": "^adocean[\\w.]+$"
    26      }
    27    },
    28    "oneOf": [
    29      { "required": ["emiter", "masterId", "slaveId"] },
    30      { "required": ["emitterPrefix", "masterId", "slaveId"] }
    31    ]
    32  }