This HTML5 document contains 29 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/
n5http://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://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n6http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n12http://vos.openlinksw.com/dataspace/person/dav#
n8http://vos.openlinksw.com/dataspace/owiki/wiki/
n4http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtBBCSPARQLCollection/sioc.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n13http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n17http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n12:this
foaf:made
n2:VirtBBCSPARQLCollection
Subject Item
n14:this
sioc:creator_of
n2:VirtBBCSPARQLCollection
Subject Item
n5:item
n6:services_of
n2:VirtBBCSPARQLCollection
Subject Item
n13:this
sioc:creator_of
n2:VirtBBCSPARQLCollection
Subject Item
n8:VOS
sioc:container_of
n2:VirtBBCSPARQLCollection
atom:entry
n2:VirtBBCSPARQLCollection
atom:contains
n2:VirtBBCSPARQLCollection
Subject Item
n2:VirtBBCSPARQLCollection
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:37:44.134253
dcterms:modified
2017-06-29T07:36:00.226968
rdfs:label
VirtBBCSPARQLCollection
foaf:maker
n12:this n17:this
dc:title
VirtBBCSPARQLCollection
opl:isDescribedUsing
n4:rdf
sioc:has_creator
n14:this n13:this
sioc:content
---++BBC SPARQL Collection %TOC% ---+++All Programmes Related To James Bond <verbatim> PREFIX po: <http://purl.org/ontology/po/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri ?label WHERE { ?uri po:category <http://www.bbc.co.uk/programmes/people/bmFtZS9ib25kLCBqYW1lcyAobm8gcXVhbGlmaWVyKQ#person> ; rdfs:label ?label. } </verbatim> ---+++Find All Eastenders Broadcasta After A Given Date <verbatim> ## Find all eastenders broadcasta after 2009-01-01, ## along with the broadcast version &amp; type PREFIX event: <http://purl.org/NET/c4dm/event.owl#> PREFIX tl: <http://purl.org/NET/c4dm/timeline.owl#> PREFIX po: <http://purl.org/ontology/po/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> SELECT ?version_type ?broadcast_start WHERE { <http://www.bbc.co.uk/programmes/b006m86d#programme> po:episode ?episode . ?episode po:version ?version . ?version a ?version_type . ?broadcast po:broadcast_of ?version . ?broadcast event:time ?time . ?time tl:start ?broadcast_start . FILTER ( (?version_type != <http://purl.org/ontology/po/Version>) &amp;&amp; (?broadcast_start > "2009-01-01T00:00:00Z"^^xsd:dateTime) ) } </verbatim> ---+++Find All Programmes That Featured Both The Foo Fighters And All Green <verbatim> PREFIX po: <http://purl.org/ontology/po/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX mo: <http://purl.org/ontology/mo/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX event: <http://purl.org/NET/c4dm/event.owl#> PREFIX tl: <http://purl.org/NET/c4dm/timeline.owl#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?programme ?label WHERE { ?event1 po:track ?track1 . ?track1 foaf:maker ?maker1 . ?maker1 owl:sameAs <http://www.bbc.co.uk/music/artists/67f66c07-6e61-4026-ade5-7e782fad3a5d#artist> . ?event2 po:track ?track2 . ?track2 foaf:maker ?maker2 . ?maker2 owl:sameAs <http://www.bbc.co.uk/music/artists/fb7272ba-f130-4f0a-934d-6eeea4c18c9a#artist> . ?event1 event:time ?t1 . ?event2 event:time ?t2 . ?t1 tl:timeline ?tl . ?t2 tl:timeline ?tl . ?version po:time ?t . ?t tl:timeline ?tl . ?programme po:version ?version . ?programme rdfs:label ?label . } </verbatim> ---+++Get Short Synopsis Of Eastenders Episodes <verbatim> PREFIX po: <http://purl.org/ontology/po/> PREFIX dc: <http://purl.org/dc/elements/1.1/> SELECT ?t ?o WHERE { <http://www.bbc.co.uk/programmes/b006m86d#programme> po:episode ?e . ?e a po:Episode . ?e po:short_synopsis ?o . ?e dc:title ?t } </verbatim> ---+++Get Short Synopsis Of Eastenders Episodes ( With Graph ) <verbatim> PREFIX po: <http://purl.org/ontology/po/> PREFIX dc: <http://purl.org/dc/elements/1.1/> SELECT ?g ?t ?o WHERE { graph ?g { <http://www.bbc.co.uk/programmes/b006m86d#programme> po:episode ?e . ?e a po:Episode . ?e po:short_synopsis ?o . ?e dc:title ?t } } </verbatim> ---+++ Get Reviews Where John Paul Jones Has Been Involved <verbatim> PREFIX mo: <http://purl.org/ontology/mo/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dc: <http://purl.org/dc/elements/1.1/> PREFIX rev: <http://purl.org/stuff/rev#> PREFIX po: <http://purl.org/ontology/po/> SELECT DISTINCT ?r_name, ?rev WHERE { { <http://www.bbc.co.uk/music/artists/4490113a-3880-4f5b-a39b-105bfceaed04#artist> foaf:made ?r1 . ?r1 a mo:Record . ?r1 dc:title ?r_name . ?r1 rev:hasReview ?rev } UNION { <http://www.bbc.co.uk/music/artists/4490113a-3880-4f5b-a39b-105bfceaed04#artist> mo:member_of ?b1 . ?b1 foaf:made ?r1 . ?r1 a mo:Record . ?r1 dc:title ?r_name . ?r1 rev:hasReview ?rev } } </verbatim>
sioc:id
e7749640798812e18106c8b2b9e40935
sioc:link
n2:VirtBBCSPARQLCollection
sioc:has_container
n8:VOS
n6:has_services
n5:item
atom:title
VirtBBCSPARQLCollection
atom:source
n8:VOS
atom:author
n12:this
atom:published
2017-06-13T05:37:44Z
atom:updated
2017-06-29T07:36:00Z
sioc:topic
n8:VOS