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

     1  {
     2      "$schema": "http://json-schema.org/draft-04/schema#",
     3      "title": "Adnuntius Adapter Params",
     4      "description": "A schema which validates params accepted by the Adnuntius adapter",
     5      "type": "object",
     6  
     7      "properties": {
     8          "auId": {
     9              "type": "string",
    10              "description": "Placement ID"
    11          },
    12          "maxDeals": {
    13              "type": "integer",
    14              "description": "Specify how many deals that you want to return from the auction."
    15          },
    16          "network": {
    17              "type": "string",
    18              "description": "Network if required"
    19          },
    20          "noCookies": {
    21              "type": "boolean",
    22              "description": "Disable cookies being set by the ad server."
    23          },
    24          "bidType": {
    25              "type": "string",
    26              "description": "Allows you to specify Net or Gross bids."
    27          }
    28      },
    29  
    30      "required": ["auId"]
    31  }