diff options
author | David Robillard <d@drobilla.net> | 2020-03-22 18:24:15 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-10 19:46:04 +0200 |
commit | adbb099856fd80445d7a6627460ce239c4bc902a (patch) | |
tree | 1a145b21b70e289abf363bd339daca25f93c9fc2 /lv2/parameters | |
parent | 9feb282e932a0da077c4f742ed58ae001b83f7e1 (diff) | |
download | lv2-adbb099856fd80445d7a6627460ce239c4bc902a.tar.xz |
Remove redundant lv2:Specification type properties
These are included in the manifest so that hosts can discover them. Having
them in the data file as well is redundant, and in some cases requires an
otherwise unnecessary import of the core spec.
Diffstat (limited to 'lv2/parameters')
-rw-r--r-- | lv2/parameters/parameters.ttl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lv2/parameters/parameters.ttl b/lv2/parameters/parameters.ttl index 4ce2d8b..5c3dadf 100644 --- a/lv2/parameters/parameters.ttl +++ b/lv2/parameters/parameters.ttl @@ -1,13 +1,14 @@ +@prefix atom: <http://lv2plug.in/ns/ext/atom#> . @prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix param: <http://lv2plug.in/ns/ext/parameters#> . -@prefix atom: <http://lv2plug.in/ns/ext/atom#> . @prefix pg: <http://lv2plug.in/ns/ext/port-groups#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix units: <http://lv2plug.in/ns/extensions/units#> . <http://lv2plug.in/ns/ext/parameters> - a lv2:Specification ; + a owl:Ontology ; rdfs:label "LV2 Parameters" ; rdfs:comment "Common parameters for audio processing." ; rdfs:seeAlso <parameters.meta.ttl> . |