{-# LANGUAGE DeriveDataTypeable #-} module Text.HTML5.MetaData.Schema.StructuredValue where -- Valid: 2016-02-03 (Schema.rdfs.org) import Text.HTML5.MetaData.Class import Data.Typeable -- | Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing. data StructuredValue instance Show StructuredValue instance Read StructuredValue instance Eq StructuredValue instance Typeable StructuredValue instance MetaData StructuredValue