Yet another basic example
From Music Ontology Wiki
[edit] RDF/XML
1 <mo:MusicGroup rdf:about="http://music.org/all#all"> 2 <foaf:name>ALL</foaf:name> 3 <foaf:homepage rdf:resource="http://www.allcentral.com/"/> 4 <mo:wikipedia rdf:resource="http://en.wikipedia.org/wiki/ALL_%28band%29"/> 5 <foaf:member rdf:resource="http://music.org/all#karlalvarez"/> 6 </mo:MusicGroup> 7 <foaf:Person rdf:about="http://music.org/all#karlalvarez"> 8 <foaf:name>Karl Alvarez</foaf:name> 9 </foaf:Person> 10 <mo:Record rdf:about="http://music.org/all#massnerder"> 11 <dc:title>Mass Nerder</dc:title> 12 <dc:creator rdf:resource="http://music.org/all#all"/> 13 <mo:availableAs rdf:resource="http://music.org/all#mycd"/> 14 <mo:releaseType rdf:resource="http://purl.org/ontology/mo/album"/> 15 <mo:releaseStatus rdf:resource="http://purl.org/ontology/mo/official"/> 16 <mo:has_track rdf:resource="http://music.org/all#worldsonheroin"/> 17 <mo:has_track rdf:resource="http://music.org/all#illgetthere"/> 18 <mo:has_track rdf:resource="http://music.org/all#lifeontheroad"/> 19 </mo:Record> 20 <mo:Cd rdf:about="http://music.org/all#mycd"/> 21 <mo:Track rdf:about="http://music.org/all#mnworldsonheroin"> 22 <dc:title>Worlds on Heroin</dc:title> 23 <mo:trackNum>1</mo:trackNum> 24 </mo:Track> 25 <mo:Track rdf:about="http://music.org/all#mnillgetthere"> 26 <dc:title>I'll get there</dc:title> 27 <mo:trackNum>2</mo:trackNum> 28 </mo:Track> 29 <mo:Track rdf:about="http://music.org/all#mnlifeontheroad"> 30 <dc:title>Life On The Road</dc:title> 31 <mo:trackNum>3</mo:trackNum> 32 </mo:Track> 33 <mo:Signal rdf:about="http://music.org/all#worldsonheroin"> 34 <dc:title>Worlds on Heroin, actual signal (equivalent to the corresponding musicbrainz track)</dc:title> 35 <mo:publishedAs rdf:resource="http://music.org/all#mnworldsonheroin"/> 36 <mo:publishedAs rdf:resource="http://music.org/all#porworldsonheroin"/> 37 </mo:Signal> 38 <mo:Track rdf:about="http://music.org/all#porworldsonheroin"/>
[edit] RDF/N3
1 @prefix dc: <http://purl.org/dc/elements/1.1/> . 2 @prefix mo: <http://purl.org/ontology/mo/> . 3 @prefix foaf: <http://xmlns.com/foaf/0.1/> . 4 @prefix all: <http://music.org/all#> . 5 # Description of the music group "ALL" 6 all:all a mo:MusicGroup; 7 foaf:name "ALL"; 8 foaf:homepage <http://www.allcentral.com/>; 9 mo:wikipedia <http://en.wikipedia.org/wiki/ALL_%28band%29>; 10 foaf:member all:karlalvarez; 11 . 12 all:karlalvarez a foaf:Person; 13 foaf:name "Karl Alvarez"; 14 . 15 # Description of the "Mass Nerder" album, from ALL 16 all:massnerder a mo:Record; 17 dc:title "Mass Nerder"; 18 dc:creator all:all; 19 mo:availableAs all:mycd; 20 mo:releaseType mo:album; 21 mo:releaseStatus mo:official; 22 mo:has_track all:worldsonheroin; 23 mo:has_track all:illgetthere; 24 mo:has_track all:lifeontheroad; 25 . 26 # Description of one of my individual cd (the item) 27 all:mycd a mo:Cd. 28 # Description of tracks of the Mass Nerder album 29 all:mnworldsonheroin a mo:Track; 30 dc:title "Worlds on Heroin"; 31 mo:trackNum "1"; 32 . 33 all:mnillgetthere a mo:Track; 34 dc:title "I'll get there"; 35 mo:trackNum "2"; 36 . 37 all:mnlifeontheroad a mo:Track; 38 dc:title "Life On The Road"; 39 mo:trackNum "3"; 40 . 41 # Description of the fact that one of these tracks was also released in a compilation. 42 all:worldsonheroin a mo:Signal; 43 dc:title "Worlds on Heroin, actual signal (equivalent to the corresponding musicbrainz track)"; 44 mo:publishedAs all:mnworldsonheroin; 45 mo:publishedAs all:porworldsonheroin; 46 . 47 all:porworldsonheroin a mo:Track. 48 # Describe here the Punk'O'Rama release on which this track is available... this record is a mo:compilation and mo:official

