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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Orbidder Adapter Params",
     4    "description": "A schema which validates params accepted by the Orbidder adapter",
     5  
     6    "type": "object",
     7    "properties": {
     8      "accountId": {
     9        "type": "string",
    10        "description": "The marketer's accountId."
    11      },
    12      "placementId": {
    13        "type": "string",
    14        "description": "The placementId of the ad unit."
    15      },
    16      "bidfloor": {
    17        "type": "number",
    18        "description": "The minimum CPM price in EUR.",
    19        "minimum": 0
    20      }
    21    },
    22  
    23    "required": ["accountId", "placementId"]
    24  }