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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Sovrn Adapter Params",
     4    "description": "A schema which validates params accepted by the Sovrn adapter",
     5    "type": "object",
     6  
     7    "properties": {
     8      "tagid": {
     9        "type": "string",
    10        "description": "An ID which identifies the sovrn ad tag"
    11      },
    12      "tagId": {
    13        "type": "string",
    14        "description": "An ID which identifies the sovrn ad tag (DEPRECATED, use \"tagid\" instead)"
    15      },
    16      "bidfloor": {
    17        "type": "number",
    18        "description": "The minimium acceptable bid, in CPM, using US Dollars"
    19      },
    20      "adunitcode": {
    21        "type": "string",
    22        "description": "The string which identifies Ad Unit"
    23      }
    24    },
    25    "oneOf": [
    26      { "required" : [ "tagid" ] },
    27      { "required" : [ "tagId" ] }
    28    ]
    29  }