{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.MedicalSignOrSymptom where -- Valid: 2012-08-31 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | Any indication of the existence of a medical condition or disease. -- -- [@id@] MedicalSignOrSymptom -- -- [@label@] Medical Sign or Symptom -- -- [@comment@] Any indication of the existence of a medical condition or disease. -- -- [@ancestors@] @'Thing','MedicalEntity'@ -- -- [@subtypes@] @'MedicalSign','MedicalSymptom'@ -- -- [@supertypes@] @'MedicalEntity'@ -- -- [@url@] data MedicalSignOrSymptom = MedicalSignOrSymptom { additionalType :: AdditionalType , description :: Description , image :: Image , name :: Name , url :: Url , alternateName :: AlternateName , code :: Code , guideline :: Guideline , medicineSystem :: MedicineSystem , recognizingAuthority :: RecognizingAuthority , relevantSpecialty :: RelevantSpecialty , study :: Study , cause :: Cause , possibleTreatment :: PossibleTreatment } deriving (Show, Read, Eq) instance MetaData MedicalSignOrSymptom where _label = const "Medical Sign or Symptom" _comment_plain = const "Any indication of the existence of a medical condition or disease." _comment = const "Any indication of the existence of a medical condition or disease." _url = const "http://schema.org/MedicalSignOrSymptom"