This HTML5 document contains 34 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n11http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
dchttp://purl.org/dc/elements/1.1/
n14http://linkeddata.uriburner.
n13http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n10http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n7http://vos.openlinksw.com/dataspace/person/dav#
n5http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n19http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtDeployingLinkedDataGuide_AppendixB/sioc.
n17http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n15http://vos.openlinksw.com/dataspace/person/owiki#
n16http://www.uriburner.com/wiki/URIBurner/
siochttp://rdfs.org/sioc/ns#
Subject Item
n7:this
foaf:made
n2:VirtDeployingLinkedDataGuide_AppendixB
Subject Item
n13:this
sioc:creator_of
n2:VirtDeployingLinkedDataGuide_AppendixB
Subject Item
n11:item
n10:services_of
n2:VirtDeployingLinkedDataGuide_AppendixB
Subject Item
n17:this
sioc:creator_of
n2:VirtDeployingLinkedDataGuide_AppendixB
Subject Item
n5:VOS
sioc:container_of
n2:VirtDeployingLinkedDataGuide_AppendixB
atom:entry
n2:VirtDeployingLinkedDataGuide_AppendixB
atom:contains
n2:VirtDeployingLinkedDataGuide_AppendixB
Subject Item
n2:VirtDeployingLinkedDataGuide_description_vsp
sioc:links_to
n2:VirtDeployingLinkedDataGuide_AppendixB
Subject Item
n2:VirtDeployingLinkedDataGuide_AppendixB
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:40:32.207498
dcterms:modified
2017-06-29T07:36:41.192134
rdfs:label
VirtDeployingLinkedDataGuide_AppendixB
foaf:maker
n7:this n15:this
dc:title
VirtDeployingLinkedDataGuide_AppendixB
opl:isDescribedUsing
n19:rdf
sioc:has_creator
n13:this n17:this
sioc:content
%META:TOPICPARENT{name="VirtDeployingLinkedDataGuide"}% ---+Deploying Linked Data Guide - Appendix B: New Proxy URI Formats [[VirtDeployingLinkedDataGuide][Deploying Linked Data Guide - TOC]] As of September 2009, the Sponger proxy paths /about/html and /about/rdf have been augmented to support a richer slash URI scheme for identifying an entity and its metadata in a variety of representation formats. The proxy path /about/html returns an XHTML description of an entity as before, but now includes richer embedded RDFa. Although some of the examples in this document still refer to /about/rdf (which is still usable), please bear in mind that this path has been deprecated in favour of /about/id. The new proxy path /about/id returns an RDF description of an entity, using a default serialization format of RDF/XML. Different serialization formats can be requested by specifying the appropriate media type in an Accept header. Supported alternative formats are N3, Turtle (TTL), NTriples or JSON. Alternatively, rather than using /about/id in combination with an Accept header specifying a media type, it is also possible to request a serialization format directly using another new proxy path /about/data. In this case, no Accept header is required as the required format is specified as part of the request URL. To dereference the description of a Web-addressable resource via your browser simply type in one of the following URL patterns: * HTML description - http://&lt;sponger proxy host&gt;/about/html/&lt;URLscheme&gt;/&lt;hostname&gt;/&lt;localpart&gt; * RDF description - http://&lt;sponger proxy host&gt;/about/data/&lt;format&gt;/&lt;URLscheme&gt;/&lt;hostname&gt;/&lt;localpart&gt; where format is one of xml, n3, nt, ttl or json. ---++ Examples The examples which follow, illustrating how RDF metadata about a product described at www.bestbuy.com can be requested in different formats, use a public Virtuoso Sponger service hosted at http://linkeddata.uriburner.com. For more information refer to the [[http://www.uriburner.com/wiki/URIBurner/][URIBurner Wiki]]. Notice how requests to /about/id are redirected to /about/html, /about/data/nt, /about/data/xml or /about/data/json depending on the requested format. The required URL rewriting rules are preconfigured when the cartridges VAD is installed. ---+++ HTML+RDFa based metadata <verbatim> curl -I -H "Accept: text/html" "http://linkeddata.uriburner.com/about/id/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278" HTTP/1.1 303 See Other Server: Virtuoso/05.11.3040 (Solaris) x86_64-sun-solaris2.10-64 VDB Connection: close Content-Type: text/html; charset=ISO-8859-1 Date: Tue, 01 Sep 2009 21:41:52 GMT Accept-Ranges: bytes Location: http://linkeddata.uriburner.com/about/html/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278 Content-Length: 13 </verbatim> or <verbatim> curl -I -H "Accept: application/xhtml+xml" "http://linkeddata.uriburner.com/about/id/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278" HTTP/1.1 303 See Other Server: Virtuoso/05.11.3040 (Solaris) x86_64-sun-solaris2.10-64 VDB Connection: close Content-Type: text/html; charset=ISO-8859-1 Date: Thu, 03 Sep 2009 14:33:45 GMT Accept-Ranges: bytes Location: http://linkeddata.uriburner.com/about/html/http/www.bestbuycom/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278 Content-Length: 13 </verbatim> ---+++ N3 based metadata <verbatim> curl -I -H "Accept: text/n3" "http://linkeddata.uriburner.com/about/id/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278" HTTP/1.1 303 See Other Server: Virtuoso/05.11.3040 (Solaris) x86_64-sun-solaris2.10-64 VDB Connection: close Date: Tue, 01 Sep 2009 21:38:44 GMT Accept-Ranges: bytes TCN: choice Vary: negotiate,accept Content-Location: /about/data/nt/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935%26type=product%26id=1218115079278 Content-Type: text/n3; qs=0.8 Location: http://linkeddata.uriburner.com/about/data/nt/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935%26type=product%26id=1218115079278 Content-Length: 13 </verbatim> ---+++ RDF/XML based metadata <verbatim> curl -I -H "Accept: application/rdf+xml" "http://linkeddata.uriburner.com/about/id/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278" HTTP/1.1 303 See Other Server: Virtuoso/05.11.3040 (Solaris) x86_64-sun-solaris2.10-64 VDB Connection: close Date: Tue, 01 Sep 2009 21:33:23 GMT Accept-Ranges: bytes TCN: choice Vary: negotiate,accept Content-Location: /about/data/xml/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935%26type=product%26id=1218115079278 Content-Type: application/rdf+xml; qs=0.95 Location: http://linkeddata.uriburner.com/about/data/xml/http/www.bestbuy.com/site/olspage.jsp?skuId=9491935%26type=product%26id=1218115079278 Content-Length: 13 </verbatim> ---+++ JSON based metadata <verbatim> curl -I -H "Accept: application/rdf+json" "http://linkeddata.uriburner.com/about/id/http/www.bestbuycom/site/olspage.jsp?skuId=9491935&type=product&id=1218115079278" HTTP/1.1 303 See Other Server: Virtuoso/05.11.3040 (Solaris) x86_64-sun-solaris2.10-64 VDB Connection: close Date: Tue, 01 Sep 2009 11:22:52 GMT Accept-Ranges: bytes TCN: choice Vary: negotiate,accept Content-Location: /about/data/json/http/www.bestbuycom/site/olspage.jsp?skuId=9491935%26type=product%26id=1218115079278 Content-Type: application/rdf+json; qs=0.7 Location: http://linkeddata.uriburner.com/about/data/json/http/www.bestbuycom/site/olspage.jsp?skuId=9491935%26type=product%26id=1218115079278 Content-Length: 13 </verbatim> <b>[[VirtDeployingLinkedDataGuide][Back]]</b> to Deploying Linked Data Guide | <b>[[VirtDeployingLinkedDataGuide_description_vsp][Previous:]]</b> Appendix A: <code>Description.vsp</code> - Rendering RDF as HTML | <b>[[VirtDeployingLinkedDataGuide_Glossary][Next:]]</b> Glossary
sioc:id
c15b2453ecdb8eb30bec74b8a37f2703
sioc:link
n2:VirtDeployingLinkedDataGuide_AppendixB
sioc:has_container
n5:VOS
n10:has_services
n11:item
atom:title
VirtDeployingLinkedDataGuide_AppendixB
sioc:links_to
n14:com n16: n2:VirtDeployingLinkedDataGuide
atom:source
n5:VOS
atom:author
n7:this
atom:published
2017-06-13T05:40:32Z
atom:updated
2017-06-29T07:36:41Z
sioc:topic
n5:VOS
Subject Item
n2:VirtDeployingLinkedDataGuide_Glossary
sioc:links_to
n2:VirtDeployingLinkedDataGuide_AppendixB