{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.ParentAudience where -- Valid: 2013-05-30 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | A set of characteristics describing parents, who can be interested in viewing some content -- -- [@id@] ParentAudience -- -- [@label@] Parent Audience -- -- [@comment@] A set of characteristics describing parents, who can be interested in viewing some content -- -- [@ancestors@] @'Thing','Intangible','Audience','PeopleAudience'@ -- -- [@subtypes@] -- -- [@supertypes@] @'PeopleAudience'@ -- -- [@url@] data ParentAudience = ParentAudience { additionalType :: AdditionalType , description :: Description , image :: Image , name :: Name , url :: Url , healthCondition :: HealthCondition , suggestedGender :: SuggestedGender , suggestedMaxAge :: SuggestedMaxAge , suggestedMinAge :: SuggestedMinAge , childMaxAge :: ChildMaxAge , childMinAge :: ChildMinAge } deriving (Show, Read, Eq) instance MetaData ParentAudience where _label = const "Parent Audience" _comment_plain = const "A set of characteristics describing parents, who can be interested in viewing some content" _comment = const "A set of characteristics describing parents, who can be interested in viewing some content" _url = const "http://schema.org/ParentAudience"