| Maintainer | Brandon Chinn <brandon@leapyear.io> |
|---|---|
| Stability | experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Aeson.Schema
Description
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.
Synopsis
- data Object (schema :: SchemaType)
- data SchemaType
- type IsSchemaObject schema = (IsSchemaType schema, SchemaResult schema ~ Object schema)
- type family SchemaResult (schema :: SchemaType) where ...
- schema :: QuasiQuoter
- get :: QuasiQuoter
- unwrap :: QuasiQuoter
- mkGetter :: String -> String -> Name -> String -> DecsQ
Types
data Object (schema :: SchemaType) Source #
The object containing JSON data and its schema.
Has a FromJSON instance, so you can use the usual Aeson decoding functions.
obj = decode "{\"a\": 1}" :: Maybe (Object [schema| { a: Int } |])Instances
| IsSchemaObject schema => Show (Object schema) Source # | |
| IsSchemaObject schema => FromJSON (Object schema) Source # | |
data SchemaType Source #
The type-level schema definition for JSON data.
To view a schema for debugging, use showSchema.
Instances
| (KnownSymbol key, IsSchemaType inner, Show (SchemaResult inner), Typeable (SchemaResult inner), IsSchemaObject (SchemaObject rest), Typeable rest) => IsSchemaType (SchemaObject ((,) key inner ': rest)) Source # | |
Defined in Data.Aeson.Schema.Internal Methods parseValue :: [Text] -> Value -> Parser (SchemaResult (SchemaObject ((key, inner) ': rest))) Source # showValue :: SchemaResult (SchemaObject ((key, inner) ': rest)) -> String Source # | |
| IsSchemaType (SchemaObject ([] :: [(Symbol, SchemaType)])) Source # | |
Defined in Data.Aeson.Schema.Internal Methods parseValue :: [Text] -> Value -> Parser (SchemaResult (SchemaObject [])) Source # showValue :: SchemaResult (SchemaObject []) -> String Source # | |
type IsSchemaObject schema = (IsSchemaType schema, SchemaResult schema ~ Object schema) Source #
A constraint that checks if the given schema is a 'SchemaObject.
type family SchemaResult (schema :: SchemaType) where ... Source #
A type family mapping SchemaType to the corresponding Haskell type.
Equations
| SchemaResult SchemaBool = Bool | |
| SchemaResult SchemaInt = Int | |
| SchemaResult SchemaDouble = Double | |
| SchemaResult SchemaText = Text | |
| SchemaResult (SchemaCustom inner) = inner | |
| SchemaResult (SchemaMaybe inner) = Maybe (SchemaResult inner) | |
| SchemaResult (SchemaList inner) = [SchemaResult inner] | |
| SchemaResult (SchemaObject inner) = Object (SchemaObject inner) |
Quasiquoters for extracting or manipulating JSON data or schemas
schema :: QuasiQuoter Source #
Defines a QuasiQuoter for writing schemas.
Example:
import Data.Aeson.Schema (schema)
type MySchema = [schema|
{
foo: {
a: Int,
// you can add comments like this
nodes: List {
b: Maybe Bool,
},
c: Text,
d: Text,
e: MyType,
f: Maybe List {
name: Text,
},
},
}
|]Syntax:
{ key: <schema>, ... }corresponds to a JSONObjectwith the given key mapping to the given schema.Bool,Int,Double, andTextcorrespond to the usual Haskell values.Maybe <schema>andList <schema>correspond toMaybeand[], containing values specified by the provided schema (no parentheses needed).- Any other uppercase identifier corresponds to the respective type in scope -- requires a FromJSON instance.
{ key: #Other, ... }maps the given key to theOtherschema.{ #Other, ... }extends this schema with theOtherschema.
get :: QuasiQuoter Source #
Defines a QuasiQuoter for extracting JSON data.
Example:
let Just result = decode ... :: Maybe (Object MySchema) [get| result.foo.a |] :: Int [get| result.foo.nodes |] :: [Object (..)] [get| result.foo.nodes[] |] :: [Object (..)] [get| result.foo.nodes[].b |] :: [Maybe Bool] [get| result.foo.nodes[].b! |] :: [Bool] -- runtime error if any values are Nothing [get| result.foo.c |] :: Text [get| result.foo.(a,c) |] :: (Int, Text) [get| result.foo.[c,d] |] :: [Text] let nodes = [get| result.foo.nodes |] flip map nodes $ \node -> fromMaybe ([get| node.num |] == 0) [get| node.b |] map [get| .num |] nodes
Syntax:
x.yis only valid ifxis anObject. Returns the value of the keyy..yreturns a function that takes in anObjectand returns the value of the keyy.x.[y,z.a]is only valid ifxis anObject, and ifyandz.ahave the same type. Returns the value of the operationsyandz.aas a list. MUST be the last operation.x.(y,z.a)is only valid ifxis anObject. Returns the value of the operationsyandz.aas a tuple. MUST be the last operation.x!is only valid ifxis aMaybe. Unwraps the value ofxfrom aJustvalue and errors (at runtime!) ifxisNothing.x[]is only valid ifxis a list. Applies the remaining rules as anfmapover the values in the list, e.g.x?follows the same rules asx[]except it's only valid ifxis aMaybe.
unwrap :: QuasiQuoter Source #
Defines a QuasiQuoter to extract a schema within the given schema.
For example:
-- | MyFoo ~ Object [schema| { b: Maybe Bool } |]
type MyFoo = [unwrap| MySchema.foo.nodes[] |]If the schema is imported qualified, you can use parentheses to distinguish it from the expression:
type MyFoo = [unwrap| (MyModule.Schema).foo.nodes[] |]
You can then use the type alias as usual:
parseBar :: MyFoo -> String parseBar = maybe "null" show . [get| .b |] foo = map parseBar [get| result.foo.nodes[] |]
The syntax is mostly the same as get, except the operations run on the
type itself, instead of the values. Differences from get:
x!is only valid ifxis aMaybe atype. Returnsa, the type wrapped in theMaybe.x?is the same asx!.x[]is only valid ifxis a[a]type. Returnsa, the type contained in the list.
mkGetter :: String -> String -> Name -> String -> DecsQ Source #
A helper that generates a get expression and a type alias for the result
of the expression.
mkGetter "Node" "getNodes" ''MySchema ".nodes![]"
-- is equivalent to:
type Node = [unwrap| MySchema.nodes[] |] -- Object [schema| { b: Maybe Bool } |]
getNodes :: Object MySchema -> [Node]
getNodes = [get| .nodes![] |]mkGetter takes four arguments:
unwrapName- The name of the type synonym to store the unwrapped schema as
funcName- The name of the getter function
startSchema- The schema to extract/unwrap from
ops- The operation to pass to the
getandunwrapquasiquoters
There is one subtlety that occurs from the use of the same ops string for both the
unwrap and get quasiquoters:
unwrap strips out intermediate functors, while get
applies within the functor. So in the above example, ".nodes![]" strips out the list when
saving the schema to Node, while in the below example, ".nodes!" doesn't strip out the list
when saving the schema to Nodes.
mkGetter "Nodes" "getNodes" ''MySchema ".nodes"
-- is equivalent to:
type Nodes = [unwrap| MySchema.nodes! |] -- [Object [schema| { b: Maybe Bool } |]]
getNodes :: Object MySchema -> Nodes
getNodes = [get| .nodes! |]As another example,
mkGetter "MyName" "getMyName" ''MySchema ".f?[].name" -- is equivalent to: type MyName = [unwrap| MySchema.f?[].name |] -- Text getMyBool :: Object MySchema -> Maybe [MyName] getMyBool = [get| .f?[].name |]