github.com/prebid/prebid-server/v2@v2.18.0/adapters/dianomi/dianomitest/exemplary/multi-native.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [{
     5        "id": "test-imp-id-1",
     6        "ext": {
     7          "bidder": {
     8            "smartadId": "9607"
     9          }
    10        },
    11        "native": {
    12          "request": "{json string 1}",
    13          "ver": "1.2"
    14        }
    15      }, {
    16        "id": "test-imp-id-2",
    17        "ext": {
    18          "bidder": {
    19            "smartadId": "9607"
    20          }
    21        },
    22        "native": {
    23          "request": "{json string 2}",
    24          "ver": "1.2"
    25        }
    26      }]
    27    },
    28    "httpCalls": [{
    29      "expectedRequest": {
    30        "uri": "https://prebid-server-aws.dianomi.com/openrtb2/auction",
    31        "headers": {
    32          "Content-Type": [
    33            "application/json;charset=utf-8"
    34          ],
    35          "Accept": [
    36            "application/json"
    37          ]
    38        },
    39        "body": {
    40          "id": "test-request-id",
    41          "imp": [{
    42            "id": "test-imp-id-1",
    43            "ext": {
    44              "bidder": {
    45                "smartadId": "9607"
    46              }
    47            },
    48            "native": {
    49              "request": "{json string 1}",
    50              "ver": "1.2"
    51            },
    52            "tagid": "9607"
    53          }, {
    54            "id": "test-imp-id-2",
    55            "ext": {
    56              "bidder": {
    57                "smartadId": "9607"
    58              }
    59            },
    60            "native": {
    61              "request": "{json string 2}",
    62              "ver": "1.2"
    63            },
    64            "tagid": "9607"
    65          }]
    66        },
    67        "impIDs":["test-imp-id-1","test-imp-id-2"]
    68      },
    69      "mockResponse": {
    70        "status": 200,
    71        "body": {
    72          "id": "test-request-id",
    73          "seatbid": [{
    74            "bid": [{
    75              "id": "test-bid-id-1",
    76              "impid": "test-imp-id-1",
    77              "price": 10,
    78              "adm": "{json response string 1}",
    79              "adomain": [],
    80              "crid": "test-creative-id-1",
    81              "ext": {
    82                "prebid": {
    83                  "type": "native"
    84                }
    85              }
    86            }, {
    87              "id": "test-bid-id-2",
    88              "impid": "test-imp-id-2",
    89              "price": 2,
    90              "adm": "{json response string 2}",
    91              "adomain": [ "ad-domain" ],
    92              "crid": "test-creative-id-2",
    93              "ext": {
    94                "prebid": {
    95                  "type": "native"
    96                }
    97              }
    98            }]
    99          }],
   100          "cur": "EUR"
   101        }
   102      }
   103    }],
   104    "expectedBidResponses": [{
   105      "currency": "EUR",
   106      "bids": [{
   107        "bid": {
   108          "id": "test-bid-id-1",
   109          "impid": "test-imp-id-1",
   110          "price": 10,
   111          "adm": "{json response string 1}",
   112          "crid": "test-creative-id-1",
   113          "ext": {
   114            "prebid": {
   115              "type": "native"
   116            }
   117          }
   118        },
   119        "type": "native"
   120      }, {
   121        "bid": {
   122          "id": "test-bid-id-2",
   123          "impid": "test-imp-id-2",
   124          "price": 2,
   125          "adm": "{json response string 2}",
   126          "adomain": [ "ad-domain" ],
   127          "crid": "test-creative-id-2",
   128          "ext": {
   129            "prebid": {
   130              "type": "native"
   131            }
   132          }
   133        },
   134        "type": "native"
   135      }]
   136    }]
   137  }