Is there any TypeScript-safe library that can automatically generate a schema from a real dataset, but with more than just field names and types?
I mean something that can look at real data and produce a structure that includes:
inferred field types
descriptions or semantic meaning
examples pulled from the dataset
relationships between fields
maybe even suggested transformations or constraints
Basically: a schema generator that doesn’t just map the shape of the data, but tries to explain it.
Does anything like this exist in the TS ecosystem? Or anything close?