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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Ix Adapter Params",
     4    "description": "A schema which validates params accepted by the Ix adapter",
     5    "type": "object",
     6    "properties": {
     7      "siteid": {
     8        "type": "string",
     9        "minLength": 1,
    10        "description": "An ID which identifies the site selling the impression, preferred."
    11      },
    12      "siteId": {
    13        "type": "string",
    14        "minLength": 1,
    15        "description": "An ID which identifies the site selling the impression."
    16      },
    17      "siteID": {
    18        "type": "string",
    19        "minLength": 1,
    20        "description": "An ID which identifies the site selling the impression."
    21      },
    22      "size": {
    23        "type": "array",
    24        "items": {
    25          "type": "integer"
    26        },
    27        "minItems": 2,
    28        "maxItems": 2,
    29        "description": "An array of two integer containing the dimension"
    30      },
    31      "sid": {
    32        "type": "string",
    33        "minLength": 1,
    34        "description": "Slot ID"
    35      }
    36    },
    37    "oneOf": [
    38      {"required": ["siteid"]},
    39      {"required": ["siteId"]},
    40      {"required": ["siteID"]}
    41    ]
    42  }