-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Slimmed down json schema language and validator -- -- Slimmed down json schema language and validator @package quick-schema @version 0.1.0.0 module Data.Json.Schema data FieldQualifier Plain :: FieldQualifier Optional :: FieldQualifier Exact :: FieldQualifier data Field Field :: FieldQualifier -> Schema -> Field data Schema Bool :: Bool -> Schema Number :: Scientific -> Schema String :: Text -> Schema Array :: (Vector Schema) -> Schema Object :: (HashMap Text Field) -> Schema isValidFor :: Value -> Schema -> Bool validate :: Schema -> Value -> Bool schemaToJSON :: Schema -> Value