© 2026 Hedgehog Software, LLC
{ "user": { "email": string, "name": string, }, "parent": { "email": string, "name": string } | null }
export const getUserByIdResponseSchema = z.object({ user: z.object(userCore), parent: z.object(userCore).nullable(), });