Is creating schemas at runtime from JSONSchemas fetched over the network a bad practice @colinhacks @EffectTS_ ?
2
0
4
945
1
@code_tank_dev @EffectTS_ agreed, weird pattern. better to use a JSON Schema validator (TypeCompiler from Typebox) at that point
@code_tank_dev @colinhacks @EffectTS_ defeats the type safety argument, if you're given the data and the schema they'll always match but you can't know the structure you're expecting. So I'd say yes it is a bad practice