github.com/prebid/prebid-server/v2@v2.18.0/adapters/adf/adftest/exemplary/single-banner.json (about)

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