Right now, we require you to cast a hashtable to `[HttpResponseContext]` in order to send a response for `http`. ```powershell Push-OutputBinding -Name res -Value ([HttpResponseContext]@{ Status = 200 Body = "Hello World" }) ``` this casting shouldn't be needed.