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

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "Yandex Adapter Params",
     4    "description": "A schema which validates params accepted by the Yandex adapter",
     5    "type": "object",
     6    "properties": {
     7      "page_id": {
     8        "type": "integer",
     9        "minLength": 1,
    10        "minimum": 1,
    11        "description": "Special Page Id provided by Yandex Manager"
    12      },
    13      "imp_id": {
    14        "type": "integer",
    15        "minLength": 1,
    16        "minimum": 1,
    17        "description": "Special identifier provided by Yandex Manager"
    18      },
    19      "placement_id": {
    20        "type": "string",
    21        "description": "Ad placement identifier",
    22        "pattern": "(\\S+-)?\\d+-\\d+"
    23      }
    24    },
    25    "oneOf": [
    26      {
    27        "required": [ "page_id", "imp_id" ]
    28      },
    29      {
    30        "required": [ "placement_id" ]
    31      }
    32    ]
    33  }