shakebook-0.2.0.4: Shake-based technical documentation generator; HTML & PDF

Safe HaskellNone
LanguageHaskell2010

Shakebook.Aeson

Synopsis

Documentation

withJSON :: ToJSON a => a -> Value -> Value Source #

Union two JSON values together.

withStringField :: Text -> Text -> Value -> Value Source #

Add a String field to a JSON value.

withArrayField :: Text -> [Value] -> Value -> Value Source #

Add an Array field to a JSON value.

withObjectField :: Text -> Value -> Value -> Value Source #

Add an Object field to a JSON value.

withObjectFieldMaybe :: Text -> Maybe Value -> Value -> Value Source #

Maybe add an Object field to a JSON value.