diff options
author | David Robillard <d@drobilla.net> | 2020-03-22 21:35:59 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-10 19:46:04 +0200 |
commit | 55f8ee266cd705a5abfdaf80e96427dd84350240 (patch) | |
tree | a6feb57229c459402cc2800b531107149dbf9430 /lv2/port-props | |
parent | adbb099856fd80445d7a6627460ce239c4bc902a (diff) | |
download | lv2-55f8ee266cd705a5abfdaf80e96427dd84350240.tar.xz |
Add more specific property types
Diffstat (limited to 'lv2/port-props')
-rw-r--r-- | lv2/port-props/port-props.ttl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lv2/port-props/port-props.ttl b/lv2/port-props/port-props.ttl index 6dc62d0..1ddeed0 100644 --- a/lv2/port-props/port-props.ttl +++ b/lv2/port-props/port-props.ttl @@ -62,14 +62,16 @@ pprops:notOnGUI rdfs:comment "Port that should not be displayed on a GUI." . pprops:displayPriority - a rdf:Property ; + a rdf:Property , + owl:DatatypeProperty ; rdfs:domain lv2:Port ; rdfs:range xsd:nonNegativeInteger ; rdfs:label "display priority" ; rdfs:comment "A priority ranking this port in importance to its plugin." . pprops:rangeSteps - a rdf:Property ; + a rdf:Property , + owl:DatatypeProperty ; rdfs:domain lv2:Port ; rdfs:range xsd:nonNegativeInteger ; rdfs:label "range steps" ; |