{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.MedicalRiskFactor where -- Valid: 2014-04-03 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | -- -- [@id@] MedicalRiskFactor -- -- [@label@] Medical Risk Factor -- -- [@comment@] -- -- [@ancestors@] @'Thing','MedicalEntity'@ -- -- [@subtypes@] -- -- [@supertypes@] @'MedicalEntity'@ -- -- [@url@] data MedicalRiskFactor = MedicalRiskFactor { additionalType :: AdditionalType , alternateName :: AlternateName , description :: Description , image :: Image , name :: Name , sameAs :: SameAs , url :: Url , code :: Code , guideline :: Guideline , medicineSystem :: MedicineSystem , recognizingAuthority :: RecognizingAuthority , relevantSpecialty :: RelevantSpecialty , study :: Study , increasesRiskOf :: IncreasesRiskOf } deriving (Show, Read, Eq) instance MetaData MedicalRiskFactor where _label = const "Medical Risk Factor" _comment_plain = const "" _comment = const "" _url = const "http://schema.org/MedicalRiskFactor"