{
  "mockBidRequest": {
    "id": "test-req-id",
    "imp": [
      {
        "id": "test-imp-id",
        "video": {
          "mimes": [
            "video/mp4"
          ],
          "w": 640,
          "h": 480,
          "minduration": 120,
          "maxduration": 150
        },
        "ext": {
          "bidder": {
            "adUnitId": 123,
            "siteId": 456
          }
        }
      }
    ],
    "tmax": 500
  },
  "httpcalls": [
    {
      "expectedRequest": {
        "uri": "https://localhost/bid/4",
        "body": {
          "id": "test-req-id",
          "imp": [
            {
              "id": "test-imp-id",
              "video": {
                "mimes": [
                  "video/mp4"
                ],
                "w": 640,
                "h": 480,
                "minduration": 120,
                "maxduration": 150
              },
              "ext": {
                "akcelo": {
                  "adUnitId": 123,
                  "siteId": 456
                }
              }
            }
          ],
          "site": {
            "publisher": {
              "ext": {
                "prebid": {
                  "parentAccount": "456"
                }
              }
            }
          },
          "tmax": 500
        },
        "impIDs": [
          "test-imp-id"
        ]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-req-id",
          "seatbid": [
            {
              "bid": [
                {
                  "id": "test-bid-id",
                  "impid": "test-imp-id",
                  "price": 1,
                  "adm": "<xml>vast</xml>",
                  "crid": "test-creative-id",
                  "ext": {
                    "prebid": {
                      "type": "video"
                    }
                  }
                }
              ]
            }
          ],
          "bidid": "test-seatbid-id",
          "cur": "USD"
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "test-bid-id",
            "impid": "test-imp-id",
            "price": 1,
            "adm": "<xml>vast</xml>",
            "crid": "test-creative-id",
            "ext": {
              "prebid": {
                "type": "video"
              }
            }
          },
          "type": "video"
        }
      ]
    }
  ]
}
