Popularity
6.8
Growing
Activity
0.0
Stable
12
3
9

Monthly Downloads: 17
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Data     Text     JSON    
Latest version: v0.4.0.0

jsonschema-gen alternatives and similar packages

Based on the "Data" category.
Alternatively, view jsonschema-gen alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of jsonschema-gen or a related project?

Add another 'Data' Package

README

jsonschema-gen

jsonschema-gen is a Haskell library to generate JSON Schema that is based on your existing Haskell datatype. Generated schema can be extracted in JSON format. You can use it with any tools that support JSON Schema file.

This library provides

  • Functions generating JSON Schema that conforms to the draft v4 schema in json format.
  • Generated schema can be used to validate json data that are converted from and to aeson value.

Tests

  • Prerequisites for test
    • python-2.7
pip install jsonschema
cabal sandbox init
cabal install --only-dependencies
cabal configure --enable-tests
cabal build
cabal test