The Response whose body to read as JSON
An Effect that resolves with unknown or fails with a
FailedToRead tagged error
Wraps Response.json() in an Effect. The result type is unknown
since JSON parsing does not guarantee a specific shape — use
mini-effect/schema with validate for runtime validation. If
reading fails, the error is wrapped in a FailedToRead tagged error
that can be caught with catchTags.
Reads the response body as parsed JSON.