github.com/prebid/prebid-server@v0.275.0/adapters/adman/admantest/exemplary/simple-web-banner.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": 600
    16                        }
    17                    ]
    18                },
    19                "tagid": "1",
    20                "ext": {
    21                    "bidder": {
    22                        "TagID": "1"
    23                    }
    24                }
    25            }
    26        ],
    27        "site": {
    28            "id": "1",
    29            "domain": "test.com"
    30        },
    31        "device": {
    32            "ip": "123.123.123.123"
    33        }
    34    },
    35    
    36      "httpCalls": [
    37        {
    38          "expectedRequest": {
    39            "uri": "http://pub.admanmedia.com/?c=o&m=ortb",
    40            "body": {
    41              "id": "test-request-id",
    42              "imp": [
    43                  {
    44                      "id": "test-imp-id",
    45                      "banner": {
    46                          "format": [
    47                              {
    48                                  "w": 300,
    49                                  "h": 250
    50                              },
    51                              {
    52                                  "w": 300,
    53                                  "h": 600
    54                              }
    55                          ]
    56                      },
    57                      "tagid": "1",
    58                      "ext": {
    59                          "bidder": {
    60                              "TagID": "1"
    61                          }
    62                      }
    63                  }
    64              ],
    65              "site": {
    66                  "id": "1",
    67                  "domain": "test.com"
    68              },
    69              "device": {
    70                  "ip": "123.123.123.123"
    71              }
    72          }
    73          },
    74          "mockResponse": {
    75            "status": 200,
    76            "body": {
    77              "id": "test-request-id",
    78              "seatbid": [
    79                  {
    80                      "bid": [
    81                          {
    82                              "id": "test_bid_id",
    83                              "impid": "test-imp-id",
    84                              "price": 0.27543,
    85                              "adm": "<iframe id=\"adm-banner-1\" width=\"468\" height=\"60\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" style=\"{overflow:hidden}\" src=\"https://pub.admanmedia.com/?c=o&m=adm&k=bc2d316f39931a07d9a8dd249bf85fc0\"></iframe>",
    86                              "cid": "test_cid",
    87                              "crid": "test_crid",
    88                              "dealid": "test_dealid",
    89                              "w": 468,
    90                              "h": 60,
    91                              "ext": {
    92                                  "prebid": {
    93                                      "type": "banner"
    94                                  }
    95                              }
    96                          }
    97                      ],
    98                      "seat": "adman"
    99                  }
   100              ],
   101              "cur": "USD"
   102            }
   103          }
   104        }
   105      ],
   106    
   107      "expectedBidResponses": [
   108        {
   109          "bids":[
   110            {
   111              "bid":  {
   112                  "id": "test_bid_id",
   113                  "impid": "test-imp-id",
   114                  "price": 0.27543,
   115                  "adm": "<iframe id=\"adm-banner-1\" width=\"468\" height=\"60\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" style=\"{overflow:hidden}\" src=\"https://pub.admanmedia.com/?c=o&m=adm&k=bc2d316f39931a07d9a8dd249bf85fc0\"></iframe>",
   116                  "cid": "test_cid",
   117                  "crid": "test_crid",
   118                  "dealid": "test_dealid",
   119                  "w": 468,
   120                  "h": 60,
   121                  "ext": {
   122                      "prebid": {
   123                          "type": "banner"
   124                      }
   125                  }
   126              },
   127              "type": "banner"
   128            }
   129          ]
   130        }
   131      ]
   132    }
   133