Mercurial > hg > audio-features-catalogue
annotate fuxi/af-base-properties.n3 @ 18:d5012016bf64 tip
added rdfpy and rdfonto directories
author | nothing@tehis.net |
---|---|
date | Tue, 23 Apr 2013 11:49:20 +0100 |
parents | 53069717108c |
children |
rev | line source |
---|---|
nothing@15 | 1 @prefix af: <http://sovarr.c4dm.eecs.qmul.ac.uk/features/af-ontology#> . |
nothing@15 | 2 @prefix owl: <http://www.w3.org/2002/07/owl#> . |
nothing@15 | 3 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
nothing@15 | 4 |
nothing@15 | 5 af:complexity a owl:ObjectProperty ; |
nothing@15 | 6 rdfs:domain af:AudioFeature ; |
nothing@15 | 7 rdfs:range <http://www.w3.org/2001/XMLSchema#string> . |
nothing@15 | 8 |
nothing@15 | 9 af:dimensionality a owl:ObjectProperty ; |
nothing@15 | 10 rdfs:domain af:AudioFeature ; |
nothing@15 | 11 rdfs:range <http://www.w3.org/2001/XMLSchema#string> . |
nothing@15 | 12 |
nothing@15 | 13 af:domain a owl:ObjectProperty ; |
nothing@15 | 14 rdfs:domain af:AudioFeature ; |
nothing@15 | 15 rdfs:range <http://www.w3.org/2001/XMLSchema#string> . |
nothing@15 | 16 |
nothing@15 | 17 af:level a owl:ObjectProperty ; |
nothing@15 | 18 rdfs:domain af:AudioFeature ; |
nothing@15 | 19 rdfs:range <http://www.w3.org/2001/XMLSchema#string> . |
nothing@15 | 20 |
nothing@15 | 21 af:model a owl:ObjectProperty ; |
nothing@15 | 22 rdfs:domain af:AudioFeature ; |
nothing@15 | 23 rdfs:range <http://www.w3.org/2001/XMLSchema#string> . |
nothing@15 | 24 |
nothing@15 | 25 af:temporalscale a owl:ObjectProperty ; |
nothing@15 | 26 rdfs:domain af:AudioFeature ; |
nothing@15 | 27 rdfs:range <http://www.w3.org/2001/XMLSchema#string> . |
nothing@15 | 28 |
nothing@15 | 29 af:AudioFeature a owl:Class . |
nothing@15 | 30 |