aeson-utils

Utilities for working with Aeson.

Version on this page:0.2.2.1@rev:2
LTS Haskell 16.31:0.3.0.2@rev:7
Stackage Nightly 2020-08-03:0.3.0.2@rev:7
Latest on Hackage:0.3.0.2@rev:7

See all snapshots aeson-utils appears in

BSD-3-Clause licensed by Silk. B.V.
Maintained by [email protected]
This version can be pinned in stack with:aeson-utils-0.2.2.1@sha256:f306a03acf8d68a087cdcf5fd1ddcf7672820cd303a494c892aa176f56d1332d,958

Module documentation for 0.2.2.1

  • Data
    • Data.Aeson
      • Data.Aeson.Utils

aeson-utils

Build Status

A small package containing helpful addititions to aeson.

It provides eitherDecodeV and decodeV functions (analogous to eitherDecode and decode in aeson) that can be used to parse atomic JSON values at the top level. This is not strictly valid JSON, only objects and arrays are allowed at the top level in the specification, but aeson’s encode allows this already. This gives us the nice property decodeV . encode = Just.

The package also contains the .=? operator that you can use to optionally construct object pairs:

object (
  [ "a" .= foo
  , "b" .= bar
  ] ++ catMaybes
  [ "c" .=? mBaz
  , "d" .=? mQux
  ])

Finally it has a parseNumber function that converts a scientific into Either Integer Double in case you want to distinguish between integrals and fractionals.

Installation instructions

aeson-utils is available on hackage

cabal install aeson-utils

Changes

Changelog

0.2.2.1

  • Allow attoparsec 0.12.*

0.2.2.0

  • Deprecate parseNumber in favor of Data.Scientific.floatingOrInteger
  • Re-export Data.Scientific.floatingOrInteger

0.2.1.1

  • Allow scientific 0.3.*