Hey gents, I just started porting some apps from zod to schema.
I found the composable syntax much nicer but haven't fully checked all differences.
One topic I'm interested in is forms and client-side validation.
- is there a way to introspect schema to dynamically build a structure digestible by html attributes? I tried getAnnotations or PropertyStructure but they're not perfect
- how do you keep html attributes and schemas in sync? Eg minLenght, max, required etc
- do you validate only onSubmit or also onBlur?