Re: blog post

3 views
Skip to first unread message

John Breslin

unread,
May 7, 2010, 8:35:07 AM5/7/10
to Open Graph Protocol, sioc...@googlegroups.com
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.
--
>
> John,
>
> Shouldn't we just make the mappings and then publish for all to use etc?
>
> --
>
> Regards,
>
> Kingsley Idehen
> President & CEO
> OpenLink Software
> Web:http://www.openlinksw.com
> Weblog:http://www.openlinksw.com/blog/~kidehen
> Twitter/Identi.ca: kidehen
--
# diff ogp_original.rdf ogp_modified.rdf
7a8,9
> xmlns:sioc="http://rdfs.org/sioc/ns#"
> xmlns:sioct="http://rdfs.org/sioc/types#"
115a118,132
> <rdfs:Class rdf:about="http://opengraphprotocol.org/schema/Website">
> <rdfs:label xml:lang="en-US">Website</rdfs:label>
> <rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/ns#Site"/>
> </rdfs:Class>
>
> <rdfs:Class rdf:about="http://opengraphprotocol.org/schema/Blog">
> <rdfs:label xml:lang="en-US">Blog</rdfs:label>
> <rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/types#Weblog"/>
> </rdfs:Class>
>
> <rdfs:Class rdf:about="http://opengraphprotocol.org/schema/Article">
> <rdfs:label xml:lang="en-US">Article</rdfs:label>
> <rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/ns#Post"/>
> </rdfs:Class>
>

--
You received this message because you are subscribed to the Google Groups "SIOC-Dev" group.
To post to this group, send email to sioc...@googlegroups.com.
To unsubscribe from this group, send email to sioc-dev+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sioc-dev?hl=en.

Kingsley Idehen

unread,
May 7, 2010, 10:32:40 AM5/7/10
to open-grap...@googlegroups.com, sioc...@googlegroups.com
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:Class>

<rdfs:Class rdf:about="http://opengraphprotocol.org/schema/Website">
<rdfs:label xml:lang="en-US">Website</rdfs:label>
<rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/ns#Site"/>
<rdfs:isDefinedBy rdf:resource="http://opengraphprotocol.org/schema/"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://opengraphprotocol.org/schema/Blog">
<rdfs:label xml:lang="en-US">Blog</rdfs:label>
<rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/types#Weblog"/>
<rdfs:isDefinedBy rdf:resource="http://opengraphprotocol.org/schema/"/>
</rdfs:Class>

<rdfs:Class rdf:about="http://opengraphprotocol.org/schema/Article">
<rdfs:label xml:lang="en-US">Article</rdfs:label>
<rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/ns#Post"/>
<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

Kingsley Idehen

unread,
May 7, 2010, 10:39:27 AM5/7/10
to open-grap...@googlegroups.com, sioc...@googlegroups.com
All,

Taking the RDF/XML and passing it through:
http://www.ebusiness-unibw.org/tools/rdf2rdfa/process-form, here is the
RDFa snippet that can go anywhere within the current HTML based schema
doc. Example:

...
<body>
<!-- Existing Human-readable content -->

<!-- RDFa Meta-data Insert Starts Here -->
[*** so paste the RDFa snippet below here re. actual document **]

</body>


RDFa snippet for opengraph schema:
---------------------------------------------

<div xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:sioct="http://rdfs.org/sioc/types#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" class="rdf2rdfa">
<div class="description" about="http://opengraphprotocol.org/schema/"
typeof="owl:Ontology">
<div xmlns:d1e3="http://www.w3.org/1999/XMLSchema#"
property="dc:date" content="2010-04-29" datatype="d1e3:date"></div>
<div property="dc:description" content="Schema for the Open Graph
protocol." xml:lang="en-US"></div>
<div property="dc:title" content="Open Graph Protocol Schema"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Actor" typeof="rdfs:Class">
<div rel="owl:equivalentClass"
resource="http://dbpedia.org/resource/Actor"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Actor" xml:lang="en-US"></div>
<div rel="rdfs:subClassOf"
resource="http://xmlns.com/foaf/0.1/Person"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Album" typeof="rdfs:Class">
<div rel="owl:equivalentClass"
resource="http://dbpedia.org/resource/Album"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Album" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Article" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Article" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso" resource="http://rdfs.org/sioc/ns#Post"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Athlete" typeof="rdfs:Class">
<div rel="owl:equivalentClass"
resource="http://dbpedia.org/resource/Athlete"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Athlete" xml:lang="en-US"></div>
<div rel="rdfs:subClassOf"
resource="http://xmlns.com/foaf/0.1/Person"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Author" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Author" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Band" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Band" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Blog" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Blog" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://rdfs.org/sioc/types#Weblog"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Book" typeof="rdfs:Class">
<div rel="owl:equivalentClass"
resource="http://dbpedia.org/resource/Book"></div>
<div rel="owl:equivalentClass"
resource="http://purl.org/ontology/bibo/Book"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Book" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/City" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="City" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Country" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Country" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Director" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Director" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Drink" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Drink" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Food" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Food" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Game" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Game" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Governmental"
typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Governmental"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Landmark" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Landmark" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Movie" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Movie" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Musician" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Musician" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Non_profit" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Non profit"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Poltician" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Politician"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Public_figure"
typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Public Figure"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/School" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="School" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/State_province"
typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="State or Province"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/University" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="University"
xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/Website" typeof="rdfs:Class">
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="Website" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso" resource="http://rdfs.org/sioc/ns#Site"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/country-name"
typeof="rdf:Property">
<div property="rdfs:comment" content="The country name of the
resource e.g., &#34;USA&#34;" xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="country name"
xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2006/vcard/ns#country-name"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/description"
typeof="rdf:Property">
<div property="rdfs:comment" content="A one to two sentence
description of your object." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="description"
xml:lang="en-US"></div>
<div rel="rdfs:subPropertyOf"
resource="http://www.w3.org/2000/01/rdf-schema#comments"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/email" typeof="rdf:Property">
<div property="rdfs:comment" content="Email of the contact for
your object." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="email" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://xmlns.com/foaf/0.1/mbox"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/fax_number"
typeof="rdf:Property">
<div property="rdfs:comment" content="Fax number of the contact
for your object." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="fax number"
xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://xmlns.com/foaf/0.1/phone"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/image" typeof="rdf:Property">
<div property="rdfs:comment" content="An image URL which should
represent your object within the graph." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="image" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://xmlns.com/foaf/0.1/depiction"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/isbn" typeof="rdf:Property">
<div property="rdfs:comment" content="International Standard Book
Number for your object." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="International Standard Book
Number" xml:lang="en-US"></div>
<div property="rdfs:label" content="isbn" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://purl.org/ontology/bibo/isbn"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/latitude" typeof="rdf:Property">
<div property="rdfs:comment" content="The latitude of the resource
e.g., the latitude of a company." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="latitude" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2003/01/geo/wgs84_pos#lat"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/locality" typeof="rdf:Property">
<div property="rdfs:comment" content="The locality of the resource
e.g, &#34;Palo Alto&#34;" xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="locality" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2006/vcard/ns#locality"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/longitude" typeof="rdf:Property">
<div property="rdfs:comment" content="The longitude of the
resource e.g., the longitude of a company." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="longitude" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2003/01/geo/wgs84_pos#long"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/phone_number"
typeof="rdf:Property">
<div property="rdfs:comment" content="Phone number of the contact
for your object." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="phone number"
xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://xmlns.com/foaf/0.1/phone"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/postal-code"
typeof="rdf:Property">
<div property="rdfs:comment" content="The postal code of the
resource e.g., &#34;94304&#34;" xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="postal code"
xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2006/vcard/ns#postal-code"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/region" typeof="rdf:Property">
<div property="rdfs:comment" content="The region of the resource
e.g., &#34;CA&#34;" xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="region" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2006/vcard/ns#region"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/site_name" typeof="rdf:Property">
<div property="rdfs:comment" content="If your object is part of a
larger web site, the name which should be displayed for the overall
site. e.g., &#34;IMDb&#34;." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="site name" xml:lang="en-US"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/street-address"
typeof="rdf:Property">
<div property="rdfs:comment" content="The street address of the
resource e.g., &#34;1601 S California Ave&#34;." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="street address"
xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/2006/vcard/ns#street-address"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/title" typeof="rdf:Property">
<div property="rdfs:comment" content="The title of the object as
it should appear within the graph, e.g., &#34;The Rock&#34;."
xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="title" xml:lang="en-US"></div>
<div rel="rdfs:subPropertyOf"
resource="http://www.w3.org/2000/01/rdf-schema#label"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/type" typeof="rdf:Property">
<div property="rdfs:comment" content="The type of your object,
e.g., &#34;movie&#34;. Depending on the type you specify, other
properties may also be required." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="type" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/upc" typeof="rdf:Property">
<div property="rdfs:comment" content="Universal Product Code for
your object." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="universal product code"
xml:lang="en-US"></div>
<div property="rdfs:label" content="upc" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://purl.org/goodrelations/v1#hasEAN_UCC-13"></div>
</div>
<div class="description"
about="http://opengraphprotocol.org/schema/url" typeof="rdf:Property">
<div property="rdfs:comment" content="The canonical URL of your
object that will be used as its permanent ID in the graph, e.g.,
&#34;http://www.imdb.com/title/tt0117500/&#34;." xml:lang="en-US"></div>
<div rel="rdfs:isDefinedBy"
resource="http://opengraphprotocol.org/schema/"></div>
<div property="rdfs:label" content="url" xml:lang="en-US"></div>
<div rel="rdfs:seeAlso"
resource="http://purl.org/dc/elements/1.1/identifier"></div>
<div rel="rdfs:seeAlso"
resource="http://xmlns.com/foaf/0.1/homepage"></div>
</div>
</div>


--

Regards,

Kingsley Idehen
President & CEO
OpenLink Software
Web: http://www.openlinksw.com
Weblog: http://www.openlinksw.com/blog/~kidehen
Twitter/Identi.ca: kidehen





--
Reply all
Reply to author
Forward
0 new messages