github.com/prebid/prebid-server/v2@v2.18.0/adapters/gumgum/gumgumtest/supplemental/banner-with-site.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [
     9              {
    10                "w": 300,
    11                "h": 250
    12              },
    13              {
    14                "w": 300,
    15                "h": 300
    16              }
    17            ],
    18            "w": 300,
    19            "h": 250
    20          },
    21          "ext": {
    22            "bidder": {
    23              "pubId": 12345678
    24            }
    25          }
    26        }
    27      ],
    28      "site": {
    29        "publisher": {
    30          "id": "12345678"
    31        }
    32      }
    33    },
    34  
    35    "httpCalls": [
    36      {
    37        "expectedRequest": {
    38          "uri": "https://g2.gumgum.com/providers/prbds2s/bid",
    39          "body":{
    40            "id": "test-request-id",
    41            "imp": [{
    42              "id": "test-imp-id",
    43              "banner": {
    44                "format": [{
    45                  "w": 300,
    46                  "h": 250
    47                }, {
    48                  "w": 300,
    49                  "h": 300
    50                }],
    51                "w": 300,
    52                "h": 250
    53              },
    54              "ext": {
    55                "bidder": {
    56                  "pubId": 12345678
    57                }
    58              }
    59            }],
    60            "site": {
    61              "publisher": {
    62                "id": "12345678"
    63              }
    64            }
    65          },
    66          "impIDs":["test-imp-id"]
    67        },
    68        "mockResponse": {
    69          "status": 200,
    70          "body": {
    71            "seatbid": [
    72              {
    73                "bid": [
    74                  {
    75                    "crid": "2068416",
    76                    "adm": "some-test-ad",
    77                    "adid": "2068416",
    78                    "price": 5,
    79                    "id": "5736a50b-6b05-42a8-aa6d-b0a4649dcd05",
    80                    "impid": "test-imp-id",
    81                    "cid": "4747"
    82                  }
    83                ]
    84              }
    85            ]
    86          }
    87        }
    88      }
    89    ],
    90  
    91    "expectedBidResponses": [
    92      {
    93        "currency": "USD",
    94        "bids": [
    95          {
    96            "bid": {
    97              "crid": "2068416",
    98              "adm": "some-test-ad",
    99              "adid": "2068416",
   100              "price": 5,
   101              "id": "5736a50b-6b05-42a8-aa6d-b0a4649dcd05",
   102              "impid": "test-imp-id",
   103              "cid": "4747"
   104            },
   105            "type": "banner"
   106          }
   107        ]
   108      }
   109    ]
   110  }