github.com/prebid/prebid-server@v0.275.0/adapters/bidmachine/bidmachinetest/exemplary/rewarded_interstitial_no_battr.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                  "prebid":
    24                  {
    25                      "is_rewarded_inventory": 1
    26                  },
    27                  "bidder":
    28                  {
    29                      "host": "api-us",
    30                      "path": "auction/rtb/v2",
    31                      "seller_id": "1"
    32                  }
    33              }
    34          }]
    35      },
    36      "httpCalls": [
    37      {
    38          "expectedRequest":
    39          {
    40              "uri": "https://api-us.bidmachine.io/auction/rtb/v2/1",
    41              "headers":
    42              {
    43                  "Content-Type": [
    44                      "application/json"
    45                  ],
    46                  "Accept": [
    47                      "application/json"
    48                  ],
    49                  "X-Openrtb-Version": [
    50                      "2.5"
    51                  ]
    52              },
    53              "body":
    54              {
    55                  "id": "test-request-id",
    56                  "imp": [
    57                  {
    58                      "id": "test-imp-id",
    59                      "instl": 1,
    60                      "banner":
    61                      {
    62                          "battr": [1, 16],
    63                          "mimes": [
    64                              "image/jpeg",
    65                              "image/jpg",
    66                              "image/gif",
    67                              "image/png"
    68                          ],
    69                          "w": 320,
    70                          "h": 480
    71                      },
    72                      "ext":
    73                      {
    74                          "prebid":
    75                          {
    76                              "is_rewarded_inventory": 1
    77                          },
    78                          "bidder":
    79                          {
    80                              "host": "api-us",
    81                              "path": "auction/rtb/v2",
    82                              "seller_id": "1"
    83                          }
    84                      }
    85                  }]
    86              }
    87          },
    88          "mockResponse":
    89          {
    90              "status": 200,
    91              "body":
    92              {
    93                  "id": "test-request-id",
    94                  "seatbid": [
    95                  {
    96                      "bid": [
    97                      {
    98                          "id": "test-bid-id",
    99                          "impid": "test-imp-id",
   100                          "price": 100,
   101                          "adm": "test-adm",
   102                          "cid": "test-cid",
   103                          "crid": "test-crid"
   104                      }],
   105                      "seat": "bidmachine"
   106                  }],
   107                  "cur": "USD"
   108              }
   109          }
   110      }],
   111      "expectedBidResponses": [
   112      {
   113          "currency": "USD",
   114          "bids": [
   115          {
   116              "bid":
   117              {
   118                  "id": "test-bid-id",
   119                  "impid": "test-imp-id",
   120                  "price": 100,
   121                  "adm": "test-adm",
   122                  "cid": "test-cid",
   123                  "crid": "test-crid"
   124              },
   125              "type": "banner"
   126          }]
   127      }]
   128  }