Search curriculum tracks, DSA problems, systems theory and tools...
typescript
const UserSchema = z.object({
id: z.string().uuid(),
role: z.enum(["admin", "member"])
})
type User = z.infer
``Validate the role against the allowed set and print 'IS_VALID: True'.