@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix mo: <http://purl.org/ontology/mo/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix all: <http://music.org/all#> .

# Description of the "Mass Nerder" album, from ALL
all:all a mo:MusicGroup;
   foaf:name "ALL";
   foaf:homepage <http://www.allcentral.com/>;
   mo:wikipedia <http://en.wikipedia.org/wiki/ALL_%28band%29>;
   foaf:member all:karlalvarez;
   .
all:karlalvarez a foaf:Person;
   foaf:name "Karl Alvarez";
   .

# Album:
all:massnerder a mo:Album;
   dc:title "Mass Nerder";
   dc:creator all:all;
   mo:has_track all:worldsonheroin;
   mo:has_track all:illgetthere;
   mo:has_track all:lifeontheroad;
   .

# Tracks:
all:mnworldsonheroin a mo:Track;
   dc:title "Worlds on Heroin";
   mo:trackNum "1"; 
   .
all:mnillgetthere a mo:Track;
   dc:title "I'll get there";
   mo:trackNum "2";
   .
all:mnlifeontheroad a mo:Track;
   dc:title "Life On The Road";
   mo:trackNum "3";
   .

# Now, if we want to say that one of these tracks was also released in a compilation?
all:worldsonheroin a mo:Signal;
   dc:title "Worlds on Heroin, actual signal (equivalent to the corresponding musicbrainz track)";
   mo:publishedAs all:mnworldsonheroin;
   mo:publishedAs all:porworldsonheroin;
   .

all:porworldsonheroin a mo:Track.
#Well... Describe here the Punk'O'Rama release on which this track is available...



-- YvesRaimond - 20 Feb 2007

Topic revision: r2 - 2007-02-20 - 16:06:29 - YvesRaimond
 
This site is powered by the TWiki collaboration platformCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding OMRAS2? Send feedback