github.com/prebid/prebid-server/v2@v2.18.0/adapters/bliink/bliinktest/exemplary/video.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123"
     7      },
     8      "user": {
     9        "buyeruid": "awesome-user",
    10        "ext": {
    11          "consent": "gdprConsentString"
    12        }
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "tagid": "TAGID",
    24          "video": {
    25            "mimes": [
    26              "video/mp4"
    27            ],
    28            "w": 500,
    29            "h": 300,
    30            "minduration": 120,
    31            "maxduration": 150
    32          }
    33        }
    34      ]
    35    },
    36    "httpCalls": [
    37      {
    38        "expectedRequest": {
    39          "headers": {
    40            "Content-Type": [
    41              "application/json;charset=utf-8"
    42            ],
    43            "Accept": [
    44              "application/json"
    45            ],
    46            "X-Openrtb-Version": [
    47              "2.5"
    48            ]
    49          },
    50          "uri": "http://biddertest.url/bid",
    51          "body": {
    52            "id": "some-request-id",
    53            "device": {
    54              "ua": "test-user-agent",
    55              "ip": "123.123.123.123"
    56            },
    57            "imp": [
    58              {
    59                "id": "some-impression-id",
    60                "video": {
    61                  "mimes": [
    62                    "video/mp4"
    63                  ],
    64                  "w": 500,
    65                  "h": 300,
    66                  "minduration": 120,
    67                  "maxduration": 150
    68                },
    69                "tagid": "TAGID"
    70              }
    71            ],
    72            "site": {
    73              "page": "test.com",
    74              "publisher": {
    75                "id": "123456789"
    76              }
    77            },
    78            "user": {
    79              "buyeruid": "awesome-user",
    80              "ext": {
    81                "consent": "gdprConsentString"
    82              }
    83            }
    84          },
    85          "impIDs":["some-impression-id"]
    86        },
    87        "mockResponse": {
    88          "status": 200,
    89          "body": {
    90            "id": "awesome-resp-id",
    91            "seatbid": [
    92              {
    93                "bid": [
    94                  {
    95                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    96                    "impid": "some-impression-id",
    97                    "price": 0.9,
    98                    "adm": "awesome-markup",
    99                    "adomain": [
   100                      "awesome.com"
   101                    ],
   102                    "crid": "20",
   103                    "w": 320,
   104                    "h": 50
   105                  }
   106                ],
   107                "type": "video",
   108                "seat": "bliink"
   109              }
   110            ],
   111            "cur": "EUR"
   112          }
   113        }
   114      }
   115    ],
   116    "expectedBidResponses": [
   117      {
   118        "bids": [
   119          {
   120            "bid": {
   121              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   122              "impid": "some-impression-id",
   123              "price": 0.9,
   124              "adm": "awesome-markup",
   125              "adomain": [
   126                "awesome.com"
   127              ],
   128              "crid": "20",
   129              "w": 320,
   130              "h": 50
   131            },
   132            "type": "video"
   133          }
   134        ]
   135      }
   136    ]
   137  }