@hackage json-autotype0.2.1.0

Automatic type declaration for JSON input data

json-autotype

Takes a JSON format input, and generates automatic Haskell type declarations. Goal is to also generate parser, and pretty-printer instances.

It uses union type unification. Types inferred may be automatically trimmed and unified using attribute set matching.

I should probably write a short paper to explain the methodology.

Build Status Hackage

Details on official releases will be on Hackage

USAGE:

After installing with cabal install json-autotype, you might generate stub code for the parser:

json-autotype input.json -o MyFormat.hs

Then you might test the parser by running it on an input file:

runghc MyFormat.hs input.json

If everything is correct, then feel free to inspect the data structure generated automatically for you! The goal of this program is to make it easy for users of big JSON APIs to generate entries from example data.