Description of Bach, die Kunst der Fuge: the performance

From Music Ontology Wiki

Jump to: navigation, search

[edit] RDF/XML


 1        <foaf:Person rdf:about="http://music.org/bach#bach">
 2            <foaf:name>Johann Sebastian Bach</foaf:name>
 3            <mo:wikipedia rdf:resource="http://en.wikipedia.org/wiki/Johann_Sebastian_Bach" />
 4        </foaf:Person>

 5    	<mo:Composition rdf:about="http://music.org/bach#kdfcomposition">
 6    		<dc:title>The composition event, when Bach composed the art of the fugue</dc:title>
 7    		<event:hasAgent rdf:resource="http://music.org/bach#bach" />
 8    		<event:time rdf:resource="http://music.org/bach#compti" />
 9    		<event:hasProduct rdf:resource="http://music.org/bach#kunstderfuge" />
 10    	</mo:Composition>

 11        <time:TimeInterval rdf:about="http://music.org/bach#compti">
 12            <time:intervalDuring rdf:resource="http://placetime.com/interval/gregorian/1742-01-01T00:00:00Z/P7Y6M" />
 13            <timeline:onTimeLine rdf:resource="http://purl.org/NET/c4dm/timeline.owl#universaltimeline" />
 14            <event:hasProduct rdf:resource="http://music.org/bach#kunstderfuge" />
 15            <event:hasProduct rdf:resource="http://music.org/bach#kunstderfugescore" />
 16        </time:TimeInterval>    

 17        <mo:MusicalWork rdf:about="http://music.org/bach#kunstderfuge">
 18            <dc:title>Die Kunst der Fuge</dc:title>
 19        </mo:MusicalWork>    

 20        <mo:Score rdf:about="http://music.org/bach#kunstderfugescore">
 21            <dc:title>Die Kunst der Fuge, composer's score</dc:title>
 22            <mo:publishedAs>
 23                <mo:PublishedScore rdf:about="http://music.org/bach#firstpub">
 24                    <dc:title>Die Kunst der Fuge, published posthumously in 1751</dc:title>
 25                    <dc:date>
 26                        <time:TimeInterval rdf:about="http://music.org/bach#publicationti">
 27                            <time:intervalDuring rdf:resource="http://placetime.com/interval/gregorian/1751-01-01T00:00:00Z/P1Y" />
 28                            <timeline:onTimeLine rdf:resource="http://purl.org/NET/c4dm/timeline.owl#universaltimeline" />
 29                        </time:TimeInterval>
 30                    </dc:date>
 31                </mo:PublishedScore>
 32            </mo:publishedAs>
 33        </mo:Score>    
 


[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 bach: <http://music.org/bach#>.
 5    @prefix timeline: <http://purl.org/NET/c4dm/timeline.owl#>.
 6    @prefix time: <http://www.w3.org/2006/time#>.
 7    @prefix event: <http://purl.org/NET/c4dm/event.owl#>.


 8    bach:bach a foaf:Person;
 9    	foaf:name "Johann Sebastian Bach";
 10    	mo:wikipedia <http://en.wikipedia.org/wiki/Johann_Sebastian_Bach>;
 11    	# foaf:mbox ... :-)
 12    	.


 13    bach:kdfcomposition a mo:Composition;
 14    	dc:title "The composition event, when Bach composed the art of the fugue";
 15    	event:hasAgent bach:bach;
 16    	event:time bach:compti;
 17    	event:hasProduct bach:kunstderfuge
 18    	.

 19    # The time interval where these composition event has occured.
 20    # We just know it was between 1742 and June 1749
 21    # If someone wants to refine it:-)
 22    bach:compti a time:TimeInterval;
 23    	time:intervalDuring <http://placetime.com/interval/gregorian/1742-01-01T00:00:00Z/P7Y6M>;
 24    	timeline:onTimeLine timeline:universaltimeline;
 25            event:hasProduct bach:kunstderfuge;
 26            event:hasProduct bach:kunstderfugescore;
 27    	.

 28    # The actual MusicalWork:
 29    bach:kunstderfuge a mo:MusicalWork;
 30    	dc:title "Die Kunst der Fuge";
 31    	.

 32    # The related expression: the composer's score - this is an informational object, not the actual piece of paper
 33    bach:kunstderfugescore a mo:Score;
 34            dc:title "Die Kunst der Fuge, composer's score"
 35            mo:publishedAs bach:firstpub;
 36            .

 37    # First publication (1751):
 38    bach:firstpub a mo:PublishedScore;
 39    	dc:title "Die Kunst der Fuge, published posthumously in 1751";
 40    	dc:date bach:publicationti;
 41    	.

 42    # We just know that the publication happened during 1751
 43    bach:publicationti a time:TimeInterval;
 44    	time:intervalDuring <http://placetime.com/interval/gregorian/1751-01-01T00:00:00Z/P1Y>;
 45    	timeline:onTimeLine timeline:universaltimeline
 46    	.

 
Personal tools