aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/ext/resize-port
diff options
context:
space:
mode:
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/resize-port')
-rw-r--r--lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl10
1 files changed, 7 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl b/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl
index 6b10a4d..72f81a2 100644
--- a/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl
+++ b/lv2/lv2plug.in/ns/ext/resize-port/resize-port.ttl
@@ -16,6 +16,7 @@
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> .
@@ -44,7 +45,8 @@ amount of space required for a particular port buffer.</p>
""" .
rsz:asLargeAs
- a rdf:Property ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain lv2:Port ;
rdfs:range lv2:Symbol ;
rdfs:label "as large as" ;
@@ -62,9 +64,11 @@ enough to copy I, or NULL if the port is lv2:connectionOptional.
""" .
rsz:minimumSize
- a rdf:Property ;
+ a rdf:Property ,
+ owl:DatatypeProperty ,
+ owl:FunctionalProperty ;
rdfs:domain lv2:Port ;
- rdfs:range lv2:Symbol ;
+ rdfs:range xsd:nonNegativeInteger ;
rdfs:label "minimum size" ;
rdfs:comment """
Indicates that a port requires a buffer at least this large, in bytes.