John Breslin wrote:
> I've added Website, Blog and Article to the latest downloaded schema,
> temporary version is here:
>
>
http://rdfs.org/temp/modified.rdf
>
> I used rdfs:seeAlso for loose mappings to SIOC Site, Weblog and Post
> classes; I think this is more appropriate. A diff is at the end of
> this message.
>
> Hope this helps,
>
John,
Added a few more isDefinedBy relations and produced an N3 variant:
@prefix sioc: <
http://rdfs.org/sioc/ns#> .
@prefix foaf: <
http://xmlns.com/foaf/0.1/> .
@prefix sioct: <
http://rdfs.org/sioc/types#> .
@prefix owl: <
http://www.w3.org/2002/07/owl#> .
@prefix dc: <
http://purl.org/dc/elements/1.1/> .
@prefix xml: <
http://www.w3.org/XML/1998/namespace> .
@prefix rdfs: <
http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <
http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix og: <
http://opengraphprotocol.org/schema/> .
<
http://opengraphprotocol.org/schema/> rdf:type owl:Ontology ;
dc:title "Open Graph Protocol Schema"@en-US ;
dc:description "Schema for the Open Graph protocol."@en-US ;
dc:date "2010-04-29"^^<
http://www.w3.org/1999/XMLSchema#date> .
og:Band rdf:type rdfs:Class ;
rdfs:label "Band"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Governmental rdf:type rdfs:Class ;
rdfs:label "Governmental"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Non_profit rdf:type rdfs:Class ;
rdfs:label "Non profit"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:School rdf:type rdfs:Class ;
rdfs:label "School"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:University rdf:type rdfs:Class ;
rdfs:label "University"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Actor rdf:type rdfs:Class ;
rdfs:label "Actor"@en-US ;
rdfs:subClassOf foaf:Person ;
owl:equivalentClass <
http://dbpedia.org/resource/Actor> ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Athlete rdf:type rdfs:Class ;
rdfs:label "Athlete"@en-US ;
rdfs:subClassOf foaf:Person ;
owl:equivalentClass <
http://dbpedia.org/resource/Athlete> ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Author rdf:type rdfs:Class ;
rdfs:label "Author"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Director rdf:type rdfs:Class ;
rdfs:label "Director"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Musician rdf:type rdfs:Class ;
rdfs:label "Musician"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Poltician rdf:type rdfs:Class ;
rdfs:label "Politician"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Public_figure rdf:type rdfs:Class ;
rdfs:label "Public Figure"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:City rdf:type rdfs:Class ;
rdfs:label "City"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Country rdf:type rdfs:Class ;
rdfs:label "Country"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Landmark rdf:type rdfs:Class ;
rdfs:label "Landmark"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:State_province rdf:type rdfs:Class ;
rdfs:label "State or Province"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Album rdf:type rdfs:Class ;
rdfs:label "Album"@en-US ;
owl:equivalentClass <
http://dbpedia.org/resource/Album> ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Book rdf:type rdfs:Class ;
rdfs:label "Book"@en-US ;
owl:equivalentClass <
http://purl.org/ontology/bibo/Book> ,
<
http://dbpedia.org/resource/Book> ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Drink rdf:type rdfs:Class ;
rdfs:label "Drink"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Food rdf:type rdfs:Class ;
rdfs:label "Food"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Game rdf:type rdfs:Class ;
rdfs:label "Game"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Movie rdf:type rdfs:Class ;
rdfs:label "Movie"@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Website rdf:type rdfs:Class ;
rdfs:label "Website"@en-US ;
rdfs:seeAlso sioc:Site ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Blog rdf:type rdfs:Class ;
rdfs:label "Blog"@en-US ;
rdfs:seeAlso sioct:Weblog ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:Article rdf:type rdfs:Class ;
rdfs:label "Article"@en-US ;
rdfs:seeAlso sioc:Post ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:title rdf:type rdf:Property ;
rdfs:label "title"@en-US ;
rdfs:comment "The title of the object as it should appear within the
graph, e.g., \"The Rock\"."@en-US ;
rdfs:subPropertyOf rdfs:label ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:description rdf:type rdf:Property ;
rdfs:label "description"@en-US ;
rdfs:comment "A one to two sentence description of your object."@en-US ;
rdfs:subPropertyOf rdfs:comments ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:image rdf:type rdf:Property ;
rdfs:label "image"@en-US ;
rdfs:comment "An image URL which should represent your object within
the graph."@en-US ;
rdfs:seeAlso foaf:depiction ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:url rdf:type rdf:Property ;
rdfs:label "url"@en-US ;
rdfs:comment "The canonical URL of your object that will be used as
its permanent ID in the graph, e.g.,
\"
http://www.imdb.com/title/tt0117500/\"."@en-US ;
rdfs:seeAlso foaf:homepage ,
dc:identifier ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:type rdf:type rdf:Property ;
rdfs:label "type"@en-US ;
rdfs:comment "The type of your object, e.g., \"movie\". Depending
on the type you specify, other properties may also be required."@en-US ;
rdfs:seeAlso rdf:type ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:site_name rdf:type rdf:Property ;
rdfs:label "site name"@en-US ;
rdfs:comment "If your object is part of a larger web site, the name
which should be displayed for the overall site. e.g., \"IMDb\"."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> .
og:latitude rdf:type rdf:Property ;
rdfs:label "latitude"@en-US ;
rdfs:comment "The latitude of the resource e.g., the latitude of a
company."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2003/01/geo/wgs84_pos#lat> .
og:longitude rdf:type rdf:Property ;
rdfs:label "longitude"@en-US ;
rdfs:comment "The longitude of the resource e.g., the longitude of
a company."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2003/01/geo/wgs84_pos#long> .
og:street-address rdf:type rdf:Property ;
rdfs:label "street address"@en-US ;
rdfs:comment "The street address of the resource e.g., \"1601 S
California Ave\"."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2006/vcard/ns#street-address> .
og:locality rdf:type rdf:Property ;
rdfs:label "locality"@en-US ;
rdfs:comment "The locality of the resource e.g, \"Palo Alto\""@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2006/vcard/ns#locality> .
og:region rdf:type rdf:Property ;
rdfs:label "region"@en-US ;
rdfs:comment "The region of the resource e.g., \"CA\""@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2006/vcard/ns#region> .
og:postal-code rdf:type rdf:Property ;
rdfs:label "postal code"@en-US ;
rdfs:comment "The postal code of the resource e.g., \"94304\""@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2006/vcard/ns#postal-code> .
og:country-name rdf:type rdf:Property ;
rdfs:label "country name"@en-US ;
rdfs:comment "The country name of the resource e.g., \"USA\""@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://www.w3.org/2006/vcard/ns#country-name> .
og:email rdf:type rdf:Property ;
rdfs:label "email"@en-US ;
rdfs:comment "Email of the contact for your object."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso foaf:mbox .
og:phone_number rdf:type rdf:Property ;
rdfs:label "phone number"@en-US ;
rdfs:comment "Phone number of the contact for your object."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso foaf:phone .
og:fax_number rdf:type rdf:Property ;
rdfs:label "fax number"@en-US ;
rdfs:comment "Fax number of the contact for your object."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso foaf:phone .
og:upc rdf:type rdf:Property ;
rdfs:label "upc"@en-US ,
"universal product code"@en-US ;
rdfs:comment "Universal Product Code for your object."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://purl.org/goodrelations/v1#hasEAN_UCC-13> .
og:isbn rdf:type rdf:Property ;
rdfs:label "isbn"@en-US ,
"International Standard Book Number"@en-US ;
rdfs:comment "International Standard Book Number for your
object."@en-US ;
rdfs:isDefinedBy <
http://opengraphprotocol.org/schema/> ;
rdfs:seeAlso <
http://purl.org/ontology/bibo/isbn> .
RDF/XML variant:
<rdf:RDF
xmlns:rdf="
http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="
http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="
http://www.w3.org/2002/07/owl#"
xmlns:og="
http://opengraphprotocol.org/schema/"
xmlns:foaf="
http://xmlns.com/foaf/0.1/"
xmlns:dc="
http://purl.org/dc/elements/1.1/"
xml:base="
http://opengraphprotocol.org/schema/"
xml:geo="
http://www.w3.org/2003/01/geo/wgs84_pos#"
xml:vcard="
http://www.w3.org/2006/vcard/ns#">
<owl:Ontology rdf:about="
http://opengraphprotocol.org/schema/">
<dc:title xml:lang="en-US">Open Graph Protocol Schema</dc:title>
<dc:description xml:lang="en-US">Schema for the Open Graph
protocol.</dc:description>
<dc:date
rdf:datatype="
http://www.w3.org/1999/XMLSchema#date">2010-04-29</dc:date>
</owl:Ontology>
<!-- Classes generated by Dan Brickley for the categories -->
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Band">
<rdfs:label xml:lang="en-US">Band</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Governmental">
<rdfs:label xml:lang="en-US">Governmental</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Non_profit">
<rdfs:label xml:lang="en-US">Non profit</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/School">
<rdfs:label xml:lang="en-US">School</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/University">
<rdfs:label xml:lang="en-US">University</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Actor">
<rdfs:label xml:lang="en-US">Actor</rdfs:label>
<rdfs:subClassOf rdf:resource="
http://xmlns.com/foaf/0.1/Person"/>
<owl:equivalentClass rdf:resource="
http://dbpedia.org/resource/Actor"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Athlete">
<rdfs:label xml:lang="en-US">Athlete</rdfs:label>
<rdfs:subClassOf rdf:resource="
http://xmlns.com/foaf/0.1/Person"/>
<owl:equivalentClass rdf:resource="
http://dbpedia.org/resource/Athlete"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Author">
<rdfs:label xml:lang="en-US">Author</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Director">
<rdfs:label xml:lang="en-US">Director</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Musician">
<rdfs:label xml:lang="en-US">Musician</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Poltician">
<rdfs:label xml:lang="en-US">Politician</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Public_figure">
<rdfs:label xml:lang="en-US">Public Figure</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/City">
<rdfs:label xml:lang="en-US">City</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Country">
<rdfs:label xml:lang="en-US">Country</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Landmark">
<rdfs:label xml:lang="en-US">Landmark</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/State_province">
<rdfs:label xml:lang="en-US">State or Province</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Album">
<rdfs:label xml:lang="en-US">Album</rdfs:label>
<owl:equivalentClass rdf:resource="
http://dbpedia.org/resource/Album"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Book">
<rdfs:label xml:lang="en-US">Book</rdfs:label>
<owl:equivalentClass rdf:resource="
http://purl.org/ontology/bibo/Book"/>
<owl:equivalentClass rdf:resource="
http://dbpedia.org/resource/Book"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Drink">
<rdfs:label xml:lang="en-US">Drink</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Food">
<rdfs:label xml:lang="en-US">Food</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Game">
<rdfs:label xml:lang="en-US">Game</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<rdfs:Class rdf:about="
http://opengraphprotocol.org/schema/Movie">
<rdfs:label xml:lang="en-US">Movie</rdfs:label>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdfs:Class>
<!-- Properties defined at www2010 with exact mapping -->
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/title">
<rdfs:label xml:lang="en-US">title</rdfs:label>
<rdfs:comment xml:lang="en-US">The title of the object as it should
appear within the graph, e.g., "The Rock".</rdfs:comment>
<rdfs:subPropertyOf
rdf:resource="
http://www.w3.org/2000/01/rdf-schema#label"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/description">
<rdfs:label xml:lang="en-US">description</rdfs:label>
<rdfs:comment xml:lang="en-US">A one to two sentence description of
your object.</rdfs:comment>
<rdfs:subPropertyOf
rdf:resource="
http://www.w3.org/2000/01/rdf-schema#comments"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdf:Property>
<!-- Properties defined at www2010 with loose mapping because of
alignment problems and to maintain simple RDFa markup -->
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/image">
<rdfs:label xml:lang="en-US">image</rdfs:label>
<rdfs:comment xml:lang="en-US">An image URL which should represent your
object within the graph.</rdfs:comment>
<rdfs:seeAlso rdf:resource="
http://xmlns.com/foaf/0.1/depiction"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/url">
<rdfs:label xml:lang="en-US">url</rdfs:label>
<rdfs:comment xml:lang="en-US">The canonical URL of your object that
will be used as its permanent ID in the graph, e.g.,
"
http://www.imdb.com/title/tt0117500/".</rdfs:comment>
<rdfs:seeAlso rdf:resource="
http://xmlns.com/foaf/0.1/homepage"/>
<rdfs:seeAlso rdf:resource="
http://purl.org/dc/elements/1.1/identifier"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/type">
<rdfs:label xml:lang="en-US">type</rdfs:label>
<rdfs:comment xml:lang="en-US">The type of your object, e.g.,
"movie". Depending on the type you specify, other properties may also
be required.</rdfs:comment>
<rdfs:seeAlso
rdf:resource="
http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/site_name">
<rdfs:label xml:lang="en-US">site name</rdfs:label>
<rdfs:comment xml:lang="en-US">If your object is part of a larger web
site, the name which should be displayed for the overall site. e.g.,
"IMDb".</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/latitude">
<rdfs:label xml:lang="en-US">latitude</rdfs:label>
<rdfs:comment xml:lang="en-US">The latitude of the resource e.g., the
latitude of a company.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://www.w3.org/2003/01/geo/wgs84_pos#lat"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/longitude">
<rdfs:label xml:lang="en-US">longitude</rdfs:label>
<rdfs:comment xml:lang="en-US">The longitude of the resource e.g., the
longitude of a company.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://www.w3.org/2003/01/geo/wgs84_pos#long"/>
</rdf:Property>
<rdf:Property
rdf:about="
http://opengraphprotocol.org/schema/street-address">
<rdfs:label xml:lang="en-US">street address</rdfs:label>
<rdfs:comment xml:lang="en-US">The street address of the resource e.g.,
"1601 S California Ave".</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso
rdf:resource="
http://www.w3.org/2006/vcard/ns#street-address"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/locality">
<rdfs:label xml:lang="en-US">locality</rdfs:label>
<rdfs:comment xml:lang="en-US">The locality of the resource e.g, "Palo
Alto"</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://www.w3.org/2006/vcard/ns#locality"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/region">
<rdfs:label xml:lang="en-US">region</rdfs:label>
<rdfs:comment xml:lang="en-US">The region of the resource e.g.,
"CA"</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://www.w3.org/2006/vcard/ns#region"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/postal-code">
<rdfs:label xml:lang="en-US">postal code</rdfs:label>
<rdfs:comment xml:lang="en-US">The postal code of the resource e.g.,
"94304"</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://www.w3.org/2006/vcard/ns#postal-code"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/country-name">
<rdfs:label xml:lang="en-US">country name</rdfs:label>
<rdfs:comment xml:lang="en-US">The country name of the resource e.g.,
"USA"</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://www.w3.org/2006/vcard/ns#country-name"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/email">
<rdfs:label xml:lang="en-US">email</rdfs:label>
<rdfs:comment xml:lang="en-US">Email of the contact for your
object.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://xmlns.com/foaf/0.1/mbox"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/phone_number">
<rdfs:label xml:lang="en-US">phone number</rdfs:label>
<rdfs:comment xml:lang="en-US">Phone number of the contact for your
object.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://xmlns.com/foaf/0.1/phone"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/fax_number">
<rdfs:label xml:lang="en-US">fax number</rdfs:label>
<rdfs:comment xml:lang="en-US">Fax number of the contact for your
object.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://xmlns.com/foaf/0.1/phone"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/upc">
<rdfs:label xml:lang="en-US">upc</rdfs:label>
<rdfs:label xml:lang="en-US">universal product code</rdfs:label>
<rdfs:comment xml:lang="en-US">Universal Product Code for your
object.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso
rdf:resource="
http://purl.org/goodrelations/v1#hasEAN_UCC-13"/>
</rdf:Property>
<rdf:Property rdf:about="
http://opengraphprotocol.org/schema/isbn">
<rdfs:label xml:lang="en-US">isbn</rdfs:label>
<rdfs:label xml:lang="en-US">International Standard Book
Number</rdfs:label>
<rdfs:comment xml:lang="en-US">International Standard Book Number for
your object.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="
http://opengraphprotocol.org/schema/"/>
<rdfs:seeAlso rdf:resource="
http://purl.org/ontology/bibo/isbn"/>
</rdf:Property>
</rdf:RDF>
Kingsley