Skip to content

Instantly share code, notes, and snippets.

@metade
Created July 30, 2008 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metade/3290 to your computer and use it in GitHub Desktop.
Save metade/3290 to your computer and use it in GitHub Desktop.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix mo: <http://purl.org/ontology/mo/> .
@prefix po: <http://purl.org/ontology/po/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix timeline: <http://purl.org/NET/c4dm/timeline.owl#> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix af: <http://purl.org/ontology/af/> .
<http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd.rdf>
rdfs:label "Description of a programme version of 30/07/2008";
dcterms:created "2008-07-22T01:44:05+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime>;
dcterms:modified "2008-07-22T01:44:05+01:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#programme>
a po:Version;
po:aspect_ratio "4:3";
po:sound_format "Stereo";
po:duration "12600"^^<http://www.w3.org/2001/XMLSchema#int>;
po:time [
a timeline:Interval;
timeline:timeline <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#timeline>
] .
<http://www.bbc.co.uk/music/artists/e105c272-b5d7-4135-82ef-d60bded54345>
a mo:MusicArtist;
foaf:name "The Wombats" .
<http://www.bbc.co.uk/music/artists/7746d775-9550-4360-b8d5-c37bd448ce01>
a mo:MusicArtist;
foaf:name "\"Weird Al\" Yankovic" .
<http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234>
a mo:MusicArtist;
foaf:name "Coldplay" .
<http://www.bbc.co.uk/music/artists/04b61dcd-28c9-4a3a-89af-4c290535845b>
a mo:MusicArtist;
foaf:name "The Saturdays" .
<http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvky#programme>
a po:Episode;
rdfs:label "30/07/2008";
po:version <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#programme> .
[]
a af:Segment;
event:time _:segment_interval_1;
event:factor [
a mo:Track;
dc:title "Wednesday Accapella";
foaf:maker [
a mo:MusicArtist;
foaf:name "Music 4"
]
] .
_:segment_interval_1
a timeline:Interval;
timeline:before _:segment_interval_2;
timeline:duration 2;
timeline:timeline <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#timeline> .
[]
a af:Segment;
event:time _:segment_interval_2;
event:factor [
a mo:Track;
dc:title "Kill The Director";
foaf:maker <http://www.bbc.co.uk/music/artists/e105c272-b5d7-4135-82ef-d60bded54345>
] .
_:segment_interval_2
a timeline:Interval;
timeline:after _:segment_interval_1;
timeline:before _:segment_interval_3;
timeline:duration 159;
timeline:timeline <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#timeline> .
[]
a af:Segment;
event:time _:segment_interval_3;
event:factor [
a mo:Track;
dc:title "Aled's Boyfriends Truck Driving Song";
foaf:maker <http://www.bbc.co.uk/music/artists/7746d775-9550-4360-b8d5-c37bd448ce01>
] .
_:segment_interval_3
a timeline:Interval;
timeline:after _:segment_interval_2;
timeline:before _:segment_interval_4;
timeline:duration 146;
timeline:timeline <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#timeline> .
[]
a af:Segment;
event:time _:segment_interval_4;
event:factor [
a mo:Track;
dc:title "Viva La Vida";
foaf:maker <http://www.bbc.co.uk/music/artists/cc197bad-dc9c-440d-a5b5-d52ba2e14234>
] .
_:segment_interval_4
a timeline:Interval;
timeline:after _:segment_interval_3;
timeline:before _:segment_interval_5;
timeline:duration 231;
timeline:timeline <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#timeline> .
[]
a af:Segment;
event:time _:segment_interval_5;
event:factor [
a mo:Track;
dc:title "If This Is Love";
foaf:maker <http://www.bbc.co.uk/music/artists/04b61dcd-28c9-4a3a-89af-4c290535845b>
] .
_:segment_interval_5
a timeline:Interval;
timeline:after _:segment_interval_4;
timeline:duration 176;
timeline:timeline <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#timeline> .
[]
a po:FirstBroadcast;
po:schedule_date "2008-07-30"^^<http://www.w3.org/2001/XMLSchema#date>;
po:broadcasted_on <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/radio1>;
po:broadcast_of <http://publishing-devel.ips.radio.bbc.co.uk/~sinclp01/programmes/b00cpvdd#programme> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment