{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.MedicalCondition where -- Valid: 2012-08-31 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc. -- -- [@id@] MedicalCondition -- -- [@label@] Medical Condition -- -- [@comment@] Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc. -- -- [@ancestors@] @'Thing','MedicalEntity'@ -- -- [@subtypes@] @'InfectiousDisease'@ -- -- [@supertypes@] @'MedicalEntity'@ -- -- [@url@] data MedicalCondition = MedicalCondition { additionalType :: AdditionalType , description :: Description , image :: Image , name :: Name , url :: Url , alternateName :: AlternateName , code :: Code , guideline :: Guideline , medicineSystem :: MedicineSystem , recognizingAuthority :: RecognizingAuthority , relevantSpecialty :: RelevantSpecialty , study :: Study , associatedAnatomy :: AssociatedAnatomy , cause :: Cause , differentialDiagnosis :: DifferentialDiagnosis , epidemiology :: Epidemiology , expectedPrognosis :: ExpectedPrognosis , naturalProgression :: NaturalProgression , pathophysiology :: Pathophysiology , possibleComplication :: PossibleComplication , possibleTreatment :: PossibleTreatment , primaryPrevention :: PrimaryPrevention , riskFactor :: RiskFactor , secondaryPrevention :: SecondaryPrevention , signOrSymptom :: SignOrSymptom , stage :: Stage , subtype :: Subtype , typicalTest :: TypicalTest } deriving (Show, Read, Eq) instance MetaData MedicalCondition where _label = const "Medical Condition" _comment_plain = const "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc." _comment = const "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc." _url = const "http://schema.org/MedicalCondition"