Re: Linked Data and Semantic Web CoolURIs, 303 redirects and Page Rank.

And with a few additions to reflect the _actual_ published data (using hash
URIs) and what Michael described with conneg:
 
## Turtle Start ##
 
@prefix schema:  <http://schema.org/> <http://schema.org/> .
@prefix dcterms: <http://purl.org/dc/terms/>.
 
<http://www.bbc.co.uk/programmes/b006mw1h> a schema:CreativeWork ;
  schema:about  <http://www.bbc.co.uk/programmes/b006mw1h/thing>  .
 
<http://www.bbc.co.uk/programmes/b006mw1h#programme> a schema:TVSeries ;
  schema:name "Gardeners' World" ;
  schema:season  <http://www.bbc.co.uk/programmes/p00fx55j#programme> ,
<http://www.bbc.co.uk/programmes/p00fx5b7#programme> ;
  schema:episode  <http://www.bbc.co.uk/programmes/b049fnfd#programme> .
 
<http://www.bbc.co.uk/programmes/p00fx55j> a schema:CreativeWork ;
  schema:about  <http://www.bbc.co.uk/programmes/p00fx55j#programme> ;
  dcterms:hasFormat <http://www.bbc.co.uk/programmes/p00fx55j.html> ,
<http://www.bbc.co.uk/programmes/p00fx55j.rdf> .

<http://www.bbc.co.uk/programmes/p00fx5b7> a schema:CreativeWork ;
  schema:about  <http://www.bbc.co.uk/programmes/p00fx5b7#programme> ;
  dcterms:hasFormat <http://www.bbc.co.uk/programmes/p00fx5b7.html> ,
<http://www.bbc.co.uk/programmes/p00fx5b7.rdf> .

<http://www.bbc.co.uk/programmes/b049fnfd> a schema:CreativeWork ;
  schema:about  <http://www.bbc.co.uk/programmes/b049fnfd#programme> ;
  dcterms:hasFormat <http://www.bbc.co.uk/programmes/b049fnfd.html> ,
<http://www.bbc.co.uk/programmes/b049fnfd.rdf> .
 
<http://www.bbc.co.uk/programmes/p00fx55j.html> a schema:WebPage ;
  schema:about  <http://www.bbc.co.uk/programmes/p00fx55j#programme> .

<http://www.bbc.co.uk/programmes/p00fx5b7.html> a schema:WebPage ;
  schema:about  <http://www.bbc.co.uk/programmes/p00fx5b7#programme> .

<http://www.bbc.co.uk/programmes/b049fnfd.html> a schema:WebPage ;
  schema:about  <http://www.bbc.co.uk/programmes/b049fnfd#programme> .
 
<http://www.bbc.co.uk/programmes/p00fx55j.rdf> a schema:DataDownload ;
  schema:about  <http://www.bbc.co.uk/programmes/p00fx55j#programme> ;
  schema:encodesCreativeWork <http://www.bbc.co.uk/programmes/p00fx55j> .

<http://www.bbc.co.uk/programmes/p00fx5b7.rdf> a schema:DataDownload ;
  schema:about  <http://www.bbc.co.uk/programmes/p00fx5b7#programme> ;
  schema:encodesCreativeWork <http://www.bbc.co.uk/programmes/p00fx5b7> .

<http://www.bbc.co.uk/programmes/b049fnfd.rdf> a schema:DataDownload ;
  schema:about  <http://www.bbc.co.uk/programmes/b049fnfd#programme> ;
  schema:encodesCreativeWork <http://www.bbc.co.uk/programmes/b049fnfd> .
 
## Turtle End ##
 
 

> On July 23, 2014 at 6:53 PM Kingsley Idehen <kidehen@openlinksw.com> wrote:
>
>  On 7/23/14 12:17 PM, john.walker wrote:
>
>      > >      Hi Kingsley,
> >       
> >      In the case that Michael describes, could one reasonably expect that if
> >the BBC were to embed the following triples as RDFa in the HTML served on the
> >URL http://www.bbc.co.uk/programmes/b006mw1h, then a webcrawler would
> >understand to go directly to the webpages about the seasons and episodes?
> >
> >  >  Absolutely!!
>
>  They could even use the following within

Received on Wednesday, 23 July 2014 22:00:07 UTC