{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.Energy where -- Valid: 2012-06-26 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | [@id@] Energy -- [@label@] Energy -- [@comment_plain@] Properties that take Enerygy as values are of the form ' ' -- [@comment@] Properties that take Enerygy as values are of the form ' ' -- [@ancestors@] @'Thing','Intangible','Quantity'@ -- [@subtypes@] @@ -- [@supertypes@] @'Quantity'@ -- [@url@] data Energy = Energy { description :: Description , image :: Image , name :: Name , url :: Url } deriving (Show, Read, Eq) instance MetaData Energy where _label = const "Energy" _comment_plain = const "Properties that take Enerygy as values are of the form ' '" _comment = const "Properties that take Enerygy as values are of the form ' '" _url = const "http://schema.org/Energy"