{-# LANGUAGE OverloadedStrings #-} module Text.HTML5.MetaData.Schema.PostalAddress where -- Valid: 2012-06-26 ( Schema.rdfs.org ) import Text.HTML5.MetaData.Class import Text.HTML5.MetaData.Type import Data.Text -- | [@id@] PostalAddress -- [@label@] Postal Address -- [@comment_plain@] The mailing address. -- [@comment@] The mailing address. -- [@ancestors@] @'Thing','Intangible','StructuredValue','ContactPoint'@ -- [@subtypes@] @@ -- [@supertypes@] @'ContactPoint'@ -- [@url@] data PostalAddress = PostalAddress { description :: Description , image :: Image , name :: Name , url :: Url , contactType :: ContactType , email :: Email , faxNumber :: FaxNumber , telephone :: Telephone , addressCountry :: AddressCountry , addressLocality :: AddressLocality , addressRegion :: AddressRegion , postOfficeBoxNumber :: PostOfficeBoxNumber , postalCode :: PostalCode , streetAddress :: StreetAddress } deriving (Show, Read, Eq) instance MetaData PostalAddress where _label = const "Postal Address" _comment_plain = const "The mailing address." _comment = const "The mailing address." _url = const "http://schema.org/PostalAddress"