Safe Haskell | None |
---|---|
Language | Haskell2010 |
Jordan.Types.JSONValue
Documentation
A type for any JSON value. This is a basic Haskell sum type representation.
This is intended to for use when working with JSON where you do not know much about its structure.
Constructors
JNull | |
JBool Bool | |
JText Text | |
JNumber Scientific | |
JArray [JSONValue] | |
JObject (Map Text JSONValue) |