github.com/prebid/prebid-server@v0.275.0/static/bidder-params/epsilon.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Epsilon Adapter Params",
     4    "description": "A schema which validates params accepted by the Epsilon adapter.",
     5    "type": "object",
     6    "properties": {
     7      "site_id": {
     8        "type": "string",
     9        "description": "An Epsilon specific ID which identifies the site."
    10      },
    11      "secure": {
    12        "type": "integer",
    13        "description": "Override http/https context on ad markup."
    14      },
    15      "bidfloor" : {
    16        "type": "number",
    17        "description": "Minimum bid price that will be considered."
    18      },
    19      "tag_id": {
    20        "type": "string",
    21        "description": "Identifies specific ad placement."
    22      },
    23      "position": {
    24        "type": "integer",
    25        "description": "Ad position on screen."
    26      },
    27      "mimes": {
    28        "type": "array",
    29        "description": "Array of content MIME types.  For videos only.",
    30        "items": {
    31          "type": "string"
    32        }
    33      },
    34      "maxduration": {
    35        "type": "integer",
    36        "description": "Maximum duration in seconds.  For videos only."
    37      },
    38      "api": {
    39        "type": "array",
    40        "description": "Array of supported API frameworks.  For videos only.",
    41        "items": {
    42          "type": "integer"
    43        }
    44      },
    45      "protocols": {
    46        "type": "array",
    47        "description": "Array of supported video protocols.  For videos only.",
    48        "items": {
    49          "type": "integer"
    50        }
    51      }
    52    },
    53    "required": ["site_id"]
    54  }