aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/patch
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-22 21:35:59 +0100
committerDavid Robillard <d@drobilla.net>2020-04-10 19:46:04 +0200
commit55f8ee266cd705a5abfdaf80e96427dd84350240 (patch)
treea6feb57229c459402cc2800b531107149dbf9430 /lv2/patch
parentadbb099856fd80445d7a6627460ce239c4bc902a (diff)
downloadlv2-55f8ee266cd705a5abfdaf80e96427dd84350240.tar.xz
Add more specific property types
Diffstat (limited to 'lv2/patch')
-rw-r--r--lv2/patch/patch.ttl15
1 files changed, 10 insertions, 5 deletions
diff --git a/lv2/patch/patch.ttl b/lv2/patch/patch.ttl
index a74a67e..e8fe8c6 100644
--- a/lv2/patch/patch.ttl
+++ b/lv2/patch/patch.ttl
@@ -140,7 +140,8 @@ patch:Set
rdfs:comment "A compact request to set a property to a value." .
patch:accept
- a rdf:Property ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
rdfs:label "accept" ;
rdfs:domain patch:Request ;
rdfs:range rdfs:Class ;
@@ -179,14 +180,16 @@ patch:destination
rdfs:comment "The destination to move the patch:subject to." .
patch:property
- a rdf:Property ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
rdfs:label "property" ;
rdfs:domain patch:Message ;
rdfs:range rdf:Property ;
rdfs:comment "The property for a patch:Set or patch:Get message." .
patch:readable
- a rdf:Property ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
rdfs:label "readable" ;
rdfs:range rdf:Property ;
rdfs:comment "A property that can be read with a patch:Get message." .
@@ -227,7 +230,8 @@ patch:subject
rdfs:comment "The subject this message applies to." .
patch:value
- a rdf:Property ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:label "value" ;
rdfs:domain patch:Set ;
rdfs:range rdf:Property ;
@@ -239,7 +243,8 @@ patch:wildcard
rdfs:comment "A wildcard that matches any resource." .
patch:writable
- a rdf:Property ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
rdfs:label "writable" ;
rdfs:range rdf:Property ;
rdfs:comment "A property that can be set with a patch:Set or patch:Patch message." .