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

     1  
     2  {
     3      "$schema": "http://json-schema.org/draft-04/schema#",
     4      "title": "ConnectAd S2S dapter Params",
     5      "description": "A schema which validates params accepted by the ConnectAd Adapter",
     6    
     7      "type": "object",
     8      "properties": {
     9        "networkId": {
    10          "type": "integer",
    11          "description": "NetworkId"
    12        },
    13        "siteId": {
    14          "type": "integer",
    15          "description": "SiteId"
    16        },
    17        "bidfloor": {
    18          "type": "number",
    19          "description": "Requests Floorprice"
    20        }
    21      },
    22      "required": ["networkId", "siteId"]
    23    }
    24