github.com/prebid/prebid-server/v2@v2.18.0/adapters/screencore/screencoretest/exemplary/video-web.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123",
     7        "language": "en",
     8        "dnt": 0
     9      },
    10      "tmax": 1000,
    11      "user": {
    12        "buyeruid": "awesome-user"
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "tagid": "ogTAGID",
    24          "video": {
    25            "mimes": [
    26              "video/mp4"
    27            ],
    28            "w": 640,
    29            "h": 480,
    30            "minduration": 120,
    31            "maxduration": 150
    32          },
    33          "ext": {
    34            "bidder": {
    35              "accountId": "accountId",
    36              "placementId": "placementId"
    37            }
    38          }
    39        }
    40      ]
    41    },
    42    "httpCalls": [
    43      {
    44        "expectedRequest": {
    45          "headers": {
    46            "Content-Type": [
    47              "application/json;charset=utf-8"
    48            ],
    49            "Accept": [
    50              "application/json"
    51            ],
    52            "X-Openrtb-Version": [
    53              "2.5"
    54            ],
    55            "User-Agent": [
    56              "test-user-agent"
    57            ],
    58            "X-Forwarded-For": [
    59              "123.123.123.123"
    60            ]
    61          },
    62          "uri": "http://h1.screencore.io/?kp=accountId&kn=placementId",
    63          "body": {
    64            "id": "some-request-id",
    65            "device": {
    66              "ua": "test-user-agent",
    67              "ip": "123.123.123.123",
    68              "language": "en",
    69              "dnt": 0
    70            },
    71            "imp": [
    72              {
    73                "id": "some-impression-id",
    74                "tagid": "ogTAGID",
    75                "video": {
    76                  "mimes": [
    77                    "video/mp4"
    78                  ],
    79                  "minduration": 120,
    80                  "maxduration": 150,
    81                  "w": 640,
    82                  "h": 480
    83                }
    84              }
    85            ],
    86            "site": {
    87              "page": "test.com",
    88              "publisher": {
    89                "id": "123456789"
    90              }
    91            },
    92            "user": {
    93              "buyeruid": "awesome-user"
    94            },
    95            "tmax": 1000
    96          },
    97          "impIDs":["some-impression-id"]
    98        },
    99        "mockResponse": {
   100          "status": 200,
   101          "body": {
   102            "id": "awesome-resp-id",
   103            "seatbid": [
   104              {
   105                "bid": [
   106                  {
   107                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   108                    "impid": "some-impression-id",
   109                    "price": 3.5,
   110                    "adm": "awesome-markup",
   111                    "adomain": [
   112                      "awesome.com"
   113                    ],
   114                    "crid": "20",
   115                    "w": 1280,
   116                    "h": 720,
   117                    "ext": {
   118                      "prebid": {
   119                        "type": "video"
   120                      }
   121                    },
   122                    "mtype": 2
   123                  }
   124                ],
   125                "seat": "screencore"
   126              }
   127            ],
   128            "cur": "USD"
   129          }
   130        }
   131      }
   132    ],
   133    "expectedBidResponses": [
   134      {
   135        "bids": [
   136          {
   137            "bid": {
   138              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   139              "impid": "some-impression-id",
   140              "price": 3.5,
   141              "adm": "awesome-markup",
   142              "adomain": [
   143                "awesome.com"
   144              ],
   145              "crid": "20",
   146              "w": 1280,
   147              "h": 720,
   148              "ext": {
   149                "prebid": {
   150                  "type": "video"
   151                }
   152              },
   153              "mtype": 2
   154            },
   155            "type": "video"
   156          }
   157        ]
   158      }
   159    ]
   160  }