github.com/prebid/prebid-server@v0.275.0/adapters/openx/openxtest/exemplary/fledge.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [{"w": 728, "h": 90}]
     9          },
    10          "ext": {
    11            "ae": 1,
    12            "bidder": {
    13              "unit": "539439964",
    14              "delDomain": "se-demo-d.openx.net"
    15            }
    16          }
    17        }
    18      ]
    19    },
    20  
    21    "httpCalls": [
    22      {
    23        "expectedRequest": {
    24          "uri": "http://rtb.openx.net/prebid",
    25          "body": {
    26            "id": "test-request-id",
    27            "imp": [
    28              {
    29                "id": "test-imp-id",
    30                "banner": {
    31                  "format": [{"w": 728, "h": 90}]
    32                },
    33                "tagid": "539439964",
    34                "ext": {
    35                  "ae": 1
    36                }
    37              }
    38            ],
    39            "ext": {
    40              "bc": "hb_pbs_1.0.0",
    41              "delDomain": "se-demo-d.openx.net"
    42            }
    43          }
    44        },
    45        "mockResponse": {
    46          "status": 200,
    47          "body": {
    48            "id": "test-request-id",
    49            "seatbid": [
    50              {
    51                "seat": "openx",
    52                "bid": [{
    53                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    54                  "impid": "test-imp-id",
    55                  "price": 0.500000,
    56                  "adm": "some-test-ad",
    57                  "crid": "crid_10",
    58                  "h": 90,
    59                  "w": 728
    60                }]
    61              }
    62            ],
    63            "cur": "USD",
    64            "ext": {
    65              "fledge_auction_configs": {
    66                "test-request-id": {
    67                  "seller": "openx.com",
    68                  "interestGroupBuyers": ["buyer1.com"],
    69                  "sellerTimeout": 0,
    70                  "perBuyerSignals": {
    71                    "buyer1.com": [1,"two",3,4, {}]
    72                  }
    73                }
    74              }
    75            }
    76          }
    77        }
    78      }
    79    ],
    80  
    81    "expectedBidResponses": [
    82      {
    83        "currency": "USD",
    84        "bids": [
    85          {
    86            "bid": {
    87              "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
    88              "impid": "test-imp-id",
    89              "price": 0.5,
    90              "adm": "some-test-ad",
    91              "crid": "crid_10",
    92              "w": 728,
    93              "h": 90
    94            },
    95            "type": "banner"
    96          }
    97        ],
    98        "fledgeauctionconfigs": [
    99          {
   100            "impid": "test-request-id",
   101            "bidder": "openx",
   102            "config": {
   103              "seller": "openx.com",
   104              "interestGroupBuyers": ["buyer1.com"],
   105              "sellerTimeout": 0,
   106              "perBuyerSignals": {
   107                "buyer1.com": [1,"two",3,4, {}]
   108              }
   109            }
   110          }
   111        ]
   112      }
   113    ]
   114  }