github.com/prebid/prebid-server/v2@v2.18.0/adapters/revcontent/revcontenttest/exemplary/simple-banner.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [{"w": 300, "h": 50}]
     9          }
    10        }
    11      ],
    12      "site": {
    13        "id": "example",
    14        "domain": "example.com",
    15        "page": "example.com",
    16        "publisher": {
    17          "id": "example"
    18        }
    19      }
    20    },
    21  
    22    "httpCalls": [
    23      {
    24        "expectedRequest": {
    25          "uri": "https://trends.revcontent.com/rtb?userId=1234&apiKey=abcd",
    26          "body": {
    27            "id": "test-request-id",
    28            "imp": [
    29              {
    30                "id":"test-imp-id",
    31                "banner": {
    32                  "format": [{"w": 300, "h": 50}]
    33                }
    34              }
    35            ],
    36            "site": {
    37              "id": "example",
    38              "domain": "example.com",
    39              "page": "example.com",
    40              "publisher": {
    41                "id": "example"
    42              }
    43            }
    44          },
    45          "impIDs":["test-imp-id"]
    46        },
    47        "mockResponse": {
    48          "status": 200,
    49          "body": {
    50            "id": "test-request-id",
    51            "seatbid": [
    52              {
    53                "seat": "ttx",
    54                "bid": [{
    55                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    56                  "impid": "test-imp-id",
    57                  "price": 1.2,
    58                  "adm": "<div></div>",
    59                  "crid": "crid_testid"
    60                }]
    61              }
    62            ],
    63            "cur": "USD"
    64          }
    65        }
    66      }
    67    ],
    68  
    69    "expectedBidResponses": [
    70      {
    71        "currency": "USD",
    72        "bids": [
    73          {
    74            "bid": {
    75              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    76              "impid": "test-imp-id",
    77              "price": 1.2,
    78              "adm": "<div></div>",
    79              "crid": "crid_testid"
    80            },
    81            "type": "banner"
    82          }
    83        ]
    84      }
    85    ]
    86  }