const z = require("zod") module.exports = { GET: { query: z.object({ username: z.string() .min(3) .max(16), serverId: z.string() .min(1), ip: z.string() .optional() }), error: { code: 204, message: "Ignored" } } }