github.com/prebid/prebid-server@v0.275.0/adapters/bidmachine/bidmachinetest/exemplary/simple_interstitial.json (about)

     1  {
     2      "mockBidRequest":
     3      {
     4          "id": "test-request-id",
     5          "imp": [
     6          {
     7              "id": "test-imp-id",
     8              "instl": 1,
     9              "banner":
    10              {
    11                  "battr": [1],
    12                  "mimes": [
    13                      "image/jpeg",
    14                      "image/jpg",
    15                      "image/gif",
    16                      "image/png"
    17                  ],
    18                  "w": 320,
    19                  "h": 480
    20              },
    21              "ext":
    22              {
    23                  "bidder":
    24                  {
    25                      "host": "api-us",
    26                      "path": "auction/rtb/v2",
    27                      "seller_id": "1"
    28                  }
    29              }
    30          }]
    31      },
    32      "httpCalls": [
    33      {
    34          "expectedRequest":
    35          {
    36              "uri": "https://api-us.bidmachine.io/auction/rtb/v2/1",
    37              "headers":
    38              {
    39                  "Content-Type": [
    40                      "application/json"
    41                  ],
    42                  "Accept": [
    43                      "application/json"
    44                  ],
    45                  "X-Openrtb-Version": [
    46                      "2.5"
    47                  ]
    48              },
    49              "body":
    50              {
    51                  "id": "test-request-id",
    52                  "imp": [
    53                  {
    54                      "id": "test-imp-id",
    55                      "instl": 1,
    56                      "banner":
    57                      {
    58                          "battr": [1],
    59                          "mimes": [
    60                              "image/jpeg",
    61                              "image/jpg",
    62                              "image/gif",
    63                              "image/png"
    64                          ],
    65                          "w": 320,
    66                          "h": 480
    67                      },
    68                      "ext":
    69                      {
    70                          "bidder":
    71                          {
    72                              "host": "api-us",
    73                              "path": "auction/rtb/v2",
    74                              "seller_id": "1"
    75                          }
    76                      }
    77                  }]
    78              }
    79          },
    80          "mockResponse":
    81          {
    82              "status": 200,
    83              "body":
    84              {
    85                  "id": "test-request-id",
    86                  "seatbid": [
    87                  {
    88                      "bid": [
    89                      {
    90                          "id": "test-bid-id",
    91                          "impid": "test-imp-id",
    92                          "price": 100,
    93                          "adm": "test-adm",
    94                          "cid": "test-cid",
    95                          "crid": "test-crid"
    96                      }],
    97                      "seat": "bidmachine"
    98                  }],
    99                  "cur": "USD"
   100              }
   101          }
   102      }],
   103      "expectedBidResponses": [
   104      {
   105          "currency": "USD",
   106          "bids": [
   107          {
   108              "bid":
   109              {
   110                  "id": "test-bid-id",
   111                  "impid": "test-imp-id",
   112                  "price": 100,
   113                  "adm": "test-adm",
   114                  "cid": "test-cid",
   115                  "crid": "test-crid"
   116              },
   117              "type": "banner"
   118          }]
   119      }]
   120  }