{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.Energy where import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | Properties that take Enerygy as values are of the form ' ' 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"