{
  "mockBidRequest": {
    "id": "test-request-id",
    "app": {
      "bundle": "com.prebid"
    },
    "device": {
      "ip":"127.0.0.1"
    },
    "imp": [
      {
        "id": "test-imp-id",
        "video": {
          "mimes": [
            "video/mp4"
          ],
          "protocols": [
            2,
            3,
            5,
            6
          ],
          "w": 1024,
          "h": 728
        },
        "ext": {
          "bidder": {
            "zone": 123456
          }
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://srv.aso1.net/pbs/bidder?zid=123456",
        "headers": {
          "Accept": [
            "application/json"
          ],
          "Content-Type": [
            "application/json;charset=utf-8"
          ]
        },
        "body": {
          "id": "test-request-id",
          "app": {
            "bundle": "com.prebid"
          },
          "device": {
            "ip":"127.0.0.1"
          },
          "imp": [
            {
              "id": "test-imp-id",
              "video": {
                "mimes": [
                  "video/mp4"
                ],
                "protocols": [
                  2,
                  3,
                  5,
                  6
                ],
                "w": 1024,
                "h": 728
              },
              "ext": {
                "bidder": {
                  "zone": 123456
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "cur": "USD",
          "seatbid": [
            {
              "seat": "seat",
              "bid": [
                {
                  "id": "1",
                  "impid": "test-imp-id",
                  "price": 0.500000,
                  "adm": "vast xml",
                  "crid": "123",
                  "w": 1024,
                  "h": 728,
                  "ext": {
                    "prebid": {
                      "type": "video"
                    }
                  }
                }
              ]
            }
          ]
        }
      }
    }
  ],

  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "1",
            "impid": "test-imp-id",
            "price": 0.5,
            "adm": "vast xml",
            "crid": "123",
            "w": 1024,
            "h": 728,
            "ext": {
              "prebid": {
                "type": "video"
              }
            }
          },
          "type": "video"
        }
      ]
    }
  ]
}
