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

     1  {
     2      "$schema": "http://json-schema.org/draft-04/schema#",
     3      "title": "Adprime Adapter Params",
     4      "description": "A schema which validates params accepted by the Adprime adapter",
     5      "type": "object",
     6      "properties": {
     7          "TagID": {
     8              "type": "string",
     9              "description": "An ID which identifies the adprime ad tag"
    10          },
    11          "keywords": {
    12              "type": "array",
    13              "description": "page context keywords",
    14              "items": {
    15                  "type": "string"
    16              }
    17          },
    18          "audiences": {
    19              "type": "array",
    20              "description": "publisher audiences",
    21              "items": {
    22                  "type": "string"
    23              }
    24          }
    25      },
    26      "required": [
    27          "TagID"
    28      ]
    29  }