const z = require("zod") module.exports = { DELETE: { headers: z.object({ "content-type": z.string().regex(/application\/json/i), "authorization": z.string().startsWith("Bearer ") }), query: z.object({ hash: z.string().length(64) }) } }