annotate cpack/musicont/rdf/base/Manifest.ttl @ 0:718306e29690 tip

commiting public release
author Daniel Wolff
date Tue, 09 Feb 2016 21:05:06 +0100
parents
children
rev   line source
Daniel@0 1 @prefix lib: <http://www.swi-prolog.org/rdf/library/> .
Daniel@0 2 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Daniel@0 3 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
Daniel@0 4 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Daniel@0 5 @prefix dcterms: <http://purl.org/dc/terms/> .
Daniel@0 6 @prefix frbr: <http://purl.org/vocab/frbr/core#> .
Daniel@0 7 @prefix event: <http://purl.org/NET/c4dm/event.owl#> .
Daniel@0 8 @prefix time: <http://www.w3.org/2006/time#> .
Daniel@0 9 @prefix tl: <http://purl.org/NET/c4dm/timeline.owl#> .
Daniel@0 10 @prefix mo: <http://purl.org/ontology/mo/> .
Daniel@0 11 @prefix mit: <http://purl.org/ontology/mo/mit#> .
Daniel@0 12 @prefix chord: <http://purl.org/ontology/chord/> .
Daniel@0 13 @prefix keys: <http://purl.org/NET/c4dm/keys.owl#> .
Daniel@0 14
Daniel@0 15 <musicont>
Daniel@0 16 a lib:Schema ;
Daniel@0 17 a lib:Virtual ;
Daniel@0 18 dcterms:title "The Music Ontology" ;
Daniel@0 19 owl:imports
Daniel@0 20 <http://www.w3.org/2006/time> ,
Daniel@0 21 # <http://purl.org/NET/c4dm/event.owl> , # SLOW
Daniel@0 22 # <http://purl.org/NET/c4dm/timeline.owl> ,
Daniel@0 23 # <http://purl.org/NET/c4dm/keys.owl> ,
Daniel@0 24 # <http://purl.org/ontology/chord/> ,
Daniel@0 25 # <http://purl.org/vocab/frbr/core> , # NOT WORKING IN MANIFEST
Daniel@0 26 # <http://motools.sourceforge.net/event/> ,
Daniel@0 27 # <http://motools.sourceforge.net/timeline/> ,
Daniel@0 28 # <http://motools.sourceforge.net/keys/> ,
Daniel@0 29 # <http://motools.sourceforge.net/chord/> ,
Daniel@0 30 # <http://purl.org/ontology/mo/> ,
Daniel@0 31 <musicontology.n3> ,
Daniel@0 32 <instruments.rdf> .
Daniel@0 33
Daniel@0 34 [ a lib:Namespace ; lib:mnemonic "time" ; lib:namespace time: ] .
Daniel@0 35 [ a lib:Namespace ; lib:mnemonic "event" ; lib:namespace event: ] .
Daniel@0 36 [ a lib:Namespace ; lib:mnemonic "tl" ; lib:namespace tl: ] .
Daniel@0 37 [ a lib:Namespace ; lib:mnemonic "chord" ; lib:namespace chord: ] .
Daniel@0 38 [ a lib:Namespace ; lib:mnemonic "keys" ; lib:namespace keys: ] .
Daniel@0 39 [ a lib:Namespace ; lib:mnemonic "frbr" ; lib:namespace frbr: ] .
Daniel@0 40 [ a lib:Namespace ; lib:mnemonic "mo" ; lib:namespace mo: ] .
Daniel@0 41 [ a lib:Namespace ; lib:mnemonic "mit" ; lib:namespace mit: ] .
Daniel@0 42