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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Openx Adapter Params",
     4    "description": "A schema which validates params accepted by the Openx adapter",
     5  
     6    "type": "object",
     7    "properties": {
     8      "unit": {
     9        "type": "string",
    10        "description": "The ad unit id.",
    11        "pattern": "^[0-9]+$"
    12      },
    13      "delDomain": {
    14        "type": "string",
    15        "description": "The delivery domain for the customer.",
    16        "pattern": "\\.[a-zA-Z]{2,3}$",
    17        "format": "hostname"
    18      },
    19      "platform": {
    20        "type": "string",
    21        "description": "The platform id for the customer.",
    22        "format": "uuid"
    23      },
    24      "customFloor": {
    25        "type": "number",
    26        "description": "The minimum CPM price in USD.",
    27        "minimum": 0
    28      },
    29      "customParams": {
    30        "type": "object",
    31        "description": "User-defined targeting key-value pairs."
    32      }
    33    },
    34    "required": [
    35      "unit"
    36    ],
    37    "anyOf": [
    38      {
    39        "required": [
    40          "delDomain"
    41        ]
    42      },
    43      {
    44        "required": [
    45          "platform"
    46        ]
    47      }
    48    ]
    49  }