github.com/prebid/prebid-server@v0.275.0/adapters/screencore/screencoretest/exemplary/banner-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-id1",
    23          "tagid": "ogTAGID",
    24          "banner": {
    25            "w": 320,
    26            "h": 50
    27          },
    28          "ext": {
    29            "bidder": {
    30              "accountId": "accountId",
    31              "placementId": "placementId"
    32            }
    33          }
    34        },
    35        {
    36          "id": "some-impression-id2",
    37          "tagid": "ogTAGID",
    38          "banner": {
    39            "w": 320,
    40            "h": 50
    41          },
    42          "ext": {
    43            "bidder": {
    44              "accountId": "accountId",
    45              "placementId": "placementId"
    46            }
    47          }
    48        }
    49      ]
    50    },
    51    "httpCalls": [
    52      {
    53        "expectedRequest": {
    54          "headers": {
    55            "Content-Type": [
    56              "application/json;charset=utf-8"
    57            ],
    58            "Accept": [
    59              "application/json"
    60            ],
    61            "X-Openrtb-Version": [
    62              "2.5"
    63            ],
    64            "User-Agent": [
    65              "test-user-agent"
    66            ],
    67            "X-Forwarded-For": [
    68              "123.123.123.123"
    69            ]
    70          },
    71          "uri": "http://h1.screencore.io/?kp=accountId&kn=placementId",
    72          "body": {
    73            "id": "some-request-id",
    74            "device": {
    75              "ua": "test-user-agent",
    76              "ip": "123.123.123.123",
    77              "language": "en",
    78              "dnt": 0
    79            },
    80            "imp": [
    81              {
    82                "id": "some-impression-id1",
    83                "tagid": "ogTAGID",
    84                "banner": {
    85                  "w": 320,
    86                  "h": 50
    87                }
    88              },
    89              {
    90                "id": "some-impression-id2",
    91                "tagid": "ogTAGID",
    92                "banner": {
    93                  "w": 320,
    94                  "h": 50
    95                },
    96                "ext": {
    97                  "bidder": {
    98                    "accountId": "accountId",
    99                    "placementId": "placementId"
   100                  }
   101                }
   102              }
   103            ],
   104            "site": {
   105              "page": "test.com",
   106              "publisher": {
   107                "id": "123456789"
   108              }
   109            },
   110            "user": {
   111              "buyeruid": "awesome-user"
   112            },
   113            "tmax": 1000
   114          }
   115        },
   116        "mockResponse": {
   117          "status": 200,
   118          "body": {
   119            "id": "awesome-resp-id",
   120            "seatbid": [
   121              {
   122                "bid": [
   123                  {
   124                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   125                    "impid": "some-impression-id1",
   126                    "price": 3.5,
   127                    "adm": "awesome-markup",
   128                    "adomain": [
   129                      "awesome.com"
   130                    ],
   131                    "crid": "20",
   132                    "w": 320,
   133                    "h": 50,
   134                    "mtype": 1
   135                  },
   136                  {
   137                    "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   138                    "impid": "some-impression-id2",
   139                    "price": 3.5,
   140                    "adm": "awesome-markup",
   141                    "adomain": [
   142                      "awesome.com"
   143                    ],
   144                    "crid": "20",
   145                    "w": 320,
   146                    "h": 50,
   147                    "mtype": 1
   148                  }
   149                ],
   150                "type": "banner",
   151                "seat": "screencore"
   152              }
   153            ],
   154            "cur": "USD"
   155          }
   156        }
   157      }
   158    ],
   159    "expectedBidResponses": [
   160      {
   161        "bids": [
   162          {
   163            "bid": {
   164              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   165              "impid": "some-impression-id1",
   166              "price": 3.5,
   167              "adm": "awesome-markup",
   168              "crid": "20",
   169              "adomain": [
   170                "awesome.com"
   171              ],
   172              "w": 320,
   173              "h": 50,
   174              "mtype": 1
   175            },
   176            "type": "banner"
   177          },
   178          {
   179            "bid": {
   180              "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   181              "impid": "some-impression-id2",
   182              "price": 3.5,
   183              "adm": "awesome-markup",
   184              "crid": "20",
   185              "adomain": [
   186                "awesome.com"
   187              ],
   188              "w": 320,
   189              "h": 50,
   190              "mtype": 1
   191            },
   192            "type": "banner"
   193          }
   194        ]
   195      }
   196    ]
   197  }