diff options
author | David Robillard <d@drobilla.net> | 2021-03-12 20:12:01 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-15 14:27:03 -0400 |
commit | 3a4020958acf5b88f366e5bc99e3009a7beca104 (patch) | |
tree | ec15811b44152c64af3bf2bda66f39334530dd4f /lv2/parameters | |
parent | b37402500176b328a6a5752df2a170538cc9594c (diff) | |
download | lv2-3a4020958acf5b88f366e5bc99e3009a7beca104.tar.xz |
Add owl:imports to ontologies
These are required by OWL tools to use vocabulary from another ontology.
Though we don't use OWL tools in LV2, they are at least useful for sanity
checking the semantic side of things. These properties are also nice to have
anyway, since they clearly describe the dependencies between specifications.
Diffstat (limited to 'lv2/parameters')
-rw-r--r-- | lv2/parameters/parameters.ttl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lv2/parameters/parameters.ttl b/lv2/parameters/parameters.ttl index 5c3dadf..9987812 100644 --- a/lv2/parameters/parameters.ttl +++ b/lv2/parameters/parameters.ttl @@ -11,7 +11,10 @@ a owl:Ontology ; rdfs:label "LV2 Parameters" ; rdfs:comment "Common parameters for audio processing." ; - rdfs:seeAlso <parameters.meta.ttl> . + rdfs:seeAlso <parameters.meta.ttl> ; + owl:imports <http://lv2plug.in/ns/ext/atom> , + <http://lv2plug.in/ns/ext/port-groups> , + <http://lv2plug.in/ns/lv2core> . param:ControlGroup a rdfs:Class ; |