{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.DietarySupplement where -- Valid: 2012-08-31 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites. -- -- [@id@] DietarySupplement -- -- [@label@] Dietary Supplement -- -- [@comment@] A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites. -- -- [@ancestors@] @'Thing','MedicalEntity','MedicalTherapy'@ -- -- [@subtypes@] -- -- [@supertypes@] @'MedicalTherapy'@ -- -- [@url@] data DietarySupplement = DietarySupplement { additionalType :: AdditionalType , description :: Description , image :: Image , name :: Name , url :: Url , alternateName :: AlternateName , code :: Code , guideline :: Guideline , medicineSystem :: MedicineSystem , recognizingAuthority :: RecognizingAuthority , relevantSpecialty :: RelevantSpecialty , study :: Study , adverseOutcome :: AdverseOutcome , contraindication :: Contraindication , duplicateTherapy :: DuplicateTherapy , indication :: Indication , seriousAdverseOutcome :: SeriousAdverseOutcome , activeIngredient :: ActiveIngredient , background :: Background , dosageForm :: DosageForm , isProprietary :: IsProprietary , legalStatus :: LegalStatus , manufacturer :: Manufacturer , maximumIntake :: MaximumIntake , mechanismOfAction :: MechanismOfAction , nonProprietaryName :: NonProprietaryName , recommendedIntake :: RecommendedIntake , safetyConsideration :: SafetyConsideration , targetPopulation :: TargetPopulation } deriving (Show, Read, Eq) instance MetaData DietarySupplement where _label = const "Dietary Supplement" _comment_plain = const "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites." _comment = const "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites." _url = const "http://schema.org/DietarySupplement"