github.com/prebid/prebid-server@v0.275.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        },
    86        "mockResponse": {
    87          "status": 200,
    88          "body": {
    89            "id": "awesome-resp-id",
    90            "seatbid": [
    91              {
    92                "bid": [
    93                  {
    94                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    95                    "impid": "some-impression-id",
    96                    "price": 0.9,
    97                    "adm": "awesome-markup",
    98                    "adomain": [
    99                      "awesome.com"
   100                    ],
   101                    "crid": "20",
   102                    "w": 320,
   103                    "h": 50
   104                  }
   105                ],
   106                "type": "video",
   107                "seat": "bliink"
   108              }
   109            ],
   110            "cur": "EUR"
   111          }
   112        }
   113      }
   114    ],
   115    "expectedBidResponses": [
   116      {
   117        "bids": [
   118          {
   119            "bid": {
   120              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   121              "impid": "some-impression-id",
   122              "price": 0.9,
   123              "adm": "awesome-markup",
   124              "adomain": [
   125                "awesome.com"
   126              ],
   127              "crid": "20",
   128              "w": 320,
   129              "h": 50
   130            },
   131            "type": "video"
   132          }
   133        ]
   134      }
   135    ]
   136  }