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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "OwnAdx Adapter Params",
     4    "description": "A schema which validates params accepted by the OwnAdx adapter",
     5    "type": "object",
     6  
     7    "properties": {
     8      "sspId": {
     9        "type": "string",
    10        "description": "Ssp ID"
    11      },
    12      "seatId": {
    13        "type": "string",
    14        "description": "Seat ID"
    15      },
    16      "tokenId": {
    17        "type": "string",
    18        "description": "Token ID"
    19      }
    20    },
    21  
    22    "oneOf": [
    23      { "required": ["sspId"] },
    24      { "required": ["feedId"] },
    25      { "required": ["token"] }
    26    ]
    27  }