module Text.HTML5.MetaData.Schema.SomeProducts where
import Text.HTML5.MetaData.Class
import Text.HTML5.MetaData.Type
import Data.Text
import Data.Typeable
import qualified Text.HTML5.MetaData.Schema.Thing
import qualified Text.HTML5.MetaData.Schema.Product
data SomeProducts = SomeProducts { additionalType :: AdditionalType
, alternateName :: AlternateName
, description :: Description
, image :: Image
, name :: Name
, sameAs :: SameAs
, url :: Url
, aggregateRating :: AggregateRating
, audience :: Audience
, brand :: Brand
, color :: Color
, depth :: Depth
, gtin13 :: Gtin13
, gtin14 :: Gtin14
, gtin8 :: Gtin8
, height :: Height
, isAccessoryOrSparePartFor :: IsAccessoryOrSparePartFor
, isConsumableFor :: IsConsumableFor
, isRelatedTo :: IsRelatedTo
, isSimilarTo :: IsSimilarTo
, itemCondition :: ItemCondition
, logo :: Logo
, manufacturer :: Manufacturer
, model :: Model
, mpn :: Mpn
, offers :: Offers
, productID :: ProductID
, releaseDate :: ReleaseDate
, review :: Review
, reviews :: Reviews
, sku :: Sku
, weight :: Weight
, width :: Width
, inventoryLevel :: InventoryLevel
}
deriving (Show, Read, Eq, Typeable)
instance MetaData SomeProducts where
_label = const "Some Products"
_comment_plain = const ""
_comment = const ""
_url = const "http://schema.org/SomeProducts"
_ancestors = const [typeOf (undefined :: Text.HTML5.MetaData.Schema.Thing.Thing)
,typeOf (undefined :: Text.HTML5.MetaData.Schema.Product.Product)]
_subtypes = const []
_supertypes = const [typeOf (undefined :: Text.HTML5.MetaData.Schema.Product.Product)]