aeson-schemas-1.0.0: src/Data/Aeson/Schema.hs
{-|
Module : Data.Aeson.Schema
Maintainer : Brandon Chinn <brandon@leapyear.io>
Stability : experimental
Portability : portable
This module defines a new way of parsing JSON data by defining type-level schemas and
extracting information using quasiquoters that will check if a given query path is
valid at compile-time.
-}
module Data.Aeson.Schema
( -- * Types
Object
, SchemaType
, IsSchemaObject
, SchemaResult
-- * Quasiquoters for extracting or manipulating JSON data or schemas
, schema
, get
, unwrap
, mkGetter
) where
import Data.Aeson.Schema.Internal
import Data.Aeson.Schema.TH