Description of the The Emerson Quartet, 2003, string quartet: the performance
From Music Ontology Wiki
[edit] RDF/XML
1 <mo:Performance rdf:about="http://music.org/bach#emersonperf"> 2 <time:event rdf:resource="http://music.org/bach#emersonperfti" /> 3 <event:hasAgent rdf:resource="http://music.org/bach#emersonquartet" /> 4 <event:hasProduct> 5 <mo:Sound rdf:about="http://music.org/bach#emersonsound" /> 6 </event:hasProduct> 7 <event:hasFactor rdf:resource="http://music.org/bach#kunstderfuge" /> 8 </mo:Performance> 9 <mo:Recording rdf:about="http://music.org/bach#emersonrec"> 10 <event:hasFactor rdf:resource="http://music.org/bach#emersonsound" /> 11 <event:hasProduct> 12 <mo:Signal> 13 <mo:publishedAs> 14 <mo:Record rdf:about="http://music.org/bach#emersonrecord"> 15 <dc:title>The Art of the Fugue</dc:title> 16 <mo:releaseStatus rdf:resource="http://purl.org/ontology/mo/official" /> 17 <dc:creator rdf:resource="http://music.org/bach#emersonquartet" /> 18 </mo:Record> 19 </mo:publishedAs> 20 </mo:Signal> 21 </event:hasProduct> 22 </mo:Recording> 23 <time:TimeInterval rdf:about="http://music.org/bach#emersonperfti"> 24 <time:intervalDuring rdf:resource="http://placetime.com/interval/gregorian/2003-01-01T00:00:00Z/P1Y" /> 25 <time:onTimeLine rdf:resource="http://purl.org/NET/c4dm/timeline.owl#universaltimeline" /> 26 </time:TimeInterval> 27 <mo:MusicalGroup rdf:about="http://music.org/bach#emersonquartet"> 28 <foaf:name>The Emerson Quartet</foaf:name> 29 <foaf:member rdf:resource="http://music.org/bach#eugenedrucker" /> 30 <foaf:member rdf:resource="http://music.org/bach#philipsetzer" /> 31 <foaf:member rdf:resource="http://music.org/bach#lawrencedutton" /> 32 <foaf:member rdf:resource="http://music.org/bach#davidfinckel" /> 33 </mo:MusicalGroup>
[edit] RDF/N3
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix mo: <http://purl.org/ontology/mo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ex: <http://example.com/test#>.
@prefix bach: <http://music.org/bach#>.
@prefix timeline: <http://purl.org/NET/c4dm/timeline.owl#>.
@prefix time: <http://www.w3.org/2006/time#>.
@prefix event: <http://purl.org/NET/c4dm/event.owl#>.
bach:emersonperf a mo:Performance;
time:event bach:emersonperfti;
event:hasAgent bach:emersonquartet;
event:hasFactor instrument:violin; # plug your favorite instrument taxnonomy here...
event:hasFactor instrument:violin;
event:hasFactor instrument:viola;
event:hasFactor instrument:cello;
event:hasProduct bach:emersonsound; # the MusicalExpression
event:hasFactor bach:kunstderfuge; # the MusicalWork
.
# During 2003:
bach:emersonperfti a time:TimeInterval;
time:intervalDuring <http://placetime.com/interval/gregorian/2003-01-01T00:00:00Z/P1Y>;
time:onTimeLine timeline:universaltimeline
.
#Emerson Quartet:
bach:emersonquartet a mo:MusicGroup;
foaf:name "The Emerson Quartet";
foaf:member bach:eugenedrucker;
foaf:member bach:philipsetzer;
foaf:member bach:lawrencedutton;
foaf:member bach:davidfinckel;
.
...
# The actual MusicalExpression(s)
bach:emersonsound a mo:Sound.
bach:emersonrec a mo:Recording;
event:hasFactor bach:emersonsound;
event:hasProduct [
a mo:Signal;
mo:publishedAs bach:emersonrecord;
]
.
# The MusicalManifestation
bach:emersonrecord a mo:Record;
dc:title "The Art of the Fugue";
mo:releaseStatus mo:official;
dc:creator bach:emersonquartet; # Redundant, but just for info, here...
.

