{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [{
      "id": "test-imp-id-1",
      "ext": {
        "bidder": {
          "smartadId": "9607"
        }
      },
      "native": {
        "request": "{json string 1}",
        "ver": "1.2"
      }
    }, {
      "id": "test-imp-id-2",
      "ext": {
        "bidder": {
          "smartadId": "9607"
        }
      },
      "native": {
        "request": "{json string 2}",
        "ver": "1.2"
      }
    }]
  },
  "httpCalls": [{
    "expectedRequest": {
      "uri": "https://prebid-server-aws.dianomi.com/openrtb2/auction",
      "headers": {
        "Content-Type": [
          "application/json;charset=utf-8"
        ],
        "Accept": [
          "application/json"
        ]
      },
      "body": {
        "id": "test-request-id",
        "imp": [{
          "id": "test-imp-id-1",
          "ext": {
            "bidder": {
              "smartadId": "9607"
            }
          },
          "native": {
            "request": "{json string 1}",
            "ver": "1.2"
          },
          "tagid": "9607"
        }, {
          "id": "test-imp-id-2",
          "ext": {
            "bidder": {
              "smartadId": "9607"
            }
          },
          "native": {
            "request": "{json string 2}",
            "ver": "1.2"
          },
          "tagid": "9607"
        }]
      },
      "impIDs":["test-imp-id-1","test-imp-id-2"]
    },
    "mockResponse": {
      "status": 200,
      "body": {
        "id": "test-request-id",
        "seatbid": [{
          "bid": [{
            "id": "test-bid-id-1",
            "impid": "test-imp-id-1",
            "price": 10,
            "adm": "{json response string 1}",
            "adomain": [],
            "crid": "test-creative-id-1",
            "ext": {
              "prebid": {
                "type": "native"
              }
            }
          }, {
            "id": "test-bid-id-2",
            "impid": "test-imp-id-2",
            "price": 2,
            "adm": "{json response string 2}",
            "adomain": [ "ad-domain" ],
            "crid": "test-creative-id-2",
            "ext": {
              "prebid": {
                "type": "native"
              }
            }
          }]
        }],
        "cur": "EUR"
      }
    }
  }],
  "expectedBidResponses": [{
    "currency": "EUR",
    "bids": [{
      "bid": {
        "id": "test-bid-id-1",
        "impid": "test-imp-id-1",
        "price": 10,
        "adm": "{json response string 1}",
        "crid": "test-creative-id-1",
        "ext": {
          "prebid": {
            "type": "native"
          }
        }
      },
      "type": "native"
    }, {
      "bid": {
        "id": "test-bid-id-2",
        "impid": "test-imp-id-2",
        "price": 2,
        "adm": "{json response string 2}",
        "adomain": [ "ad-domain" ],
        "crid": "test-creative-id-2",
        "ext": {
          "prebid": {
            "type": "native"
          }
        }
      },
      "type": "native"
    }]
  }]
}
