{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE DeriveDataTypeable #-} module Text.HTML5.MetaData.Schema.DriveWheelConfigurationValue where -- Valid: 2016-02-03 (Schema.rdfs.org) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text import Data.Typeable import {-# SOURCE #-} qualified Text.HTML5.MetaData.Schema.Thing import {-# SOURCE #-} qualified Text.HTML5.MetaData.Schema.Intangible import {-# SOURCE #-} qualified Text.HTML5.MetaData.Schema.Enumeration import {-# SOURCE #-} qualified Text.HTML5.MetaData.Schema.QualitativeValue -- | A value indicating which roadwheels will receive torque. -- -- [@id@] DriveWheelConfigurationValue -- -- [@label@] Drive Wheel Configuration Value -- -- [@comment@] A value indicating which roadwheels will receive torque. -- -- [@ancestors@] @'Thing','Intangible','Enumeration','QualitativeValue'@ -- -- [@subtypes@] -- -- [@supertypes@] @'QualitativeValue'@ -- -- [@url@] data DriveWheelConfigurationValue = DriveWheelConfigurationValue { additionalProperty :: AdditionalProperty , equal :: Equal , greater :: Greater , greaterOrEqual :: GreaterOrEqual , lesser :: Lesser , lesserOrEqual :: LesserOrEqual , nonEqual :: NonEqual , valueReference :: ValueReference , supersededBy :: SupersededBy , additionalType :: AdditionalType , alternateName :: AlternateName , description :: Description , image :: Image , mainEntityOfPage :: MainEntityOfPage , name :: Name , potentialAction :: PotentialAction , sameAs :: SameAs , url :: Url } deriving (Show, Read, Eq, Typeable) instance MetaData DriveWheelConfigurationValue where _label = const "Drive Wheel Configuration Value" _comment_plain = const "A value indicating which roadwheels will receive torque." _comment = const "A value indicating which roadwheels will receive torque." _url = const "http://schema.org/DriveWheelConfigurationValue" _ancestors = const [typeOf (undefined :: Text.HTML5.MetaData.Schema.Thing.Thing) ,typeOf (undefined :: Text.HTML5.MetaData.Schema.Intangible.Intangible) ,typeOf (undefined :: Text.HTML5.MetaData.Schema.Enumeration.Enumeration) ,typeOf (undefined :: Text.HTML5.MetaData.Schema.QualitativeValue.QualitativeValue)] _subtypes = const [] _supertypes = const [typeOf (undefined :: Text.HTML5.MetaData.Schema.QualitativeValue.QualitativeValue)]