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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Flipp Adapter Params",
     4    "description": "A schema which validates params accepted by the Flipp adapter",
     5    "type": "object",
     6    "properties": {
     7      "publisherNameIdentifier": {
     8        "type": "string",
     9        "minLength": 1,
    10        "description": "Publisher Name Identifier"
    11      },
    12      "creativeType": {
    13        "type": "string",
    14        "enum": ["NativeX", "DTX"]
    15      },
    16      "siteId": {
    17        "type": "integer"
    18      },
    19      "zoneIds": {
    20        "type": "array",
    21        "items": {
    22          "type": "integer"
    23        }
    24      },
    25      "userKey": {
    26        "type": "string",
    27        "format": "uuid"
    28      },
    29      "ip": {
    30        "type": "string"
    31      },
    32      "options": {
    33        "type": "object",
    34        "properties": {
    35          "startCompact": {
    36            "type": "boolean"
    37          },
    38          "dwellExpand": {
    39            "type": "boolean"
    40          },
    41          "contentCode": {
    42            "type": "string"
    43          }
    44        }
    45      }
    46    },
    47    "required": [
    48      "publisherNameIdentifier",
    49      "siteId",
    50      "creativeType"
    51    ]
    52  }