diff options
author | David Robillard <d@drobilla.net> | 2011-11-20 18:11:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-20 18:11:26 +0000 |
commit | 35c47b58729b075350462dc5eb1a68cc08aefd53 (patch) | |
tree | 3973776a39b9c8835052a59e9ae5c2083690838f /core.lv2/lv2.ttl | |
parent | 6d87e825340ca813c6a95c42aadb48dfee6452f9 (diff) | |
download | lv2-35c47b58729b075350462dc5eb1a68cc08aefd53.tar.xz |
Add range to lv2:symbol and lv2:name.
Diffstat (limited to 'core.lv2/lv2.ttl')
-rw-r--r-- | core.lv2/lv2.ttl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl index 0ab56c5..26dc9cc 100644 --- a/core.lv2/lv2.ttl +++ b/core.lv2/lv2.ttl @@ -426,6 +426,7 @@ function. The index uniqely identifies the port on an instance of the plugin. """ . lv2:symbol a rdf:Property , owl:DatatypeProperty ; + rdfs:range xsd:string ; rdfs:label "symbol" ; rdfs:comment """ A short name used as a machine and human readable identifier. @@ -440,6 +441,7 @@ change the plugin URI if a port symbol is changed or removed). lv2:name a rdf:Property , owl:DatatypeProperty ; rdfs:domain lv2:Port ; + rdfs:range xsd:string ; rdfs:label "name" ; rdfs:comment """ A display name for labeling the Port in a user interface. |