diff options
| author | David Robillard <d@drobilla.net> | 2020-03-19 16:38:55 +0100 | 
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2020-03-28 17:10:05 +0100 | 
| commit | b86c039bb32a28525df9afe26154d0e90698cb31 (patch) | |
| tree | 780e2ad265735a52d28d7633bdc84df6ae075fdb /lv2/patch | |
| parent | 329637e5b3d74ddf2f3f37414158aa83d6f0e873 (diff) | |
| download | lv2-b86c039bb32a28525df9afe26154d0e90698cb31.tar.xz | |
Add missing labels and a test to prevent this in the future
Diffstat (limited to 'lv2/patch')
| -rw-r--r-- | lv2/patch/patch.ttl | 13 | 
1 files changed, 10 insertions, 3 deletions
diff --git a/lv2/patch/patch.ttl b/lv2/patch/patch.ttl index 9f2ef69..3ccd840 100644 --- a/lv2/patch/patch.ttl +++ b/lv2/patch/patch.ttl @@ -284,13 +284,16 @@ patch:add  	a rdf:Property ,  		owl:ObjectProperty ,  		owl:FunctionalProperty ; -	rdfs:domain patch:Message . +	rdfs:domain patch:Message ; +	rdfs:label "add" ; +	rdfs:comment "The properties to add to the subject." .  patch:body  	a rdf:Property ,  		owl:ObjectProperty ,  		owl:FunctionalProperty ;  	rdfs:domain patch:Message ; +	rdfs:label "body" ;  	rdfs:comment """The body of a message.  The details of this property's value depend on the type of message it is a @@ -300,6 +303,7 @@ patch:context  	a rdf:Property ,  		owl:ObjectProperty ;  	rdfs:domain patch:Message ; +	rdfs:label "context" ;  	rdfs:comment """The context of properties in this message.  For example, a plugin may have a special context for ephemeral properties which @@ -317,7 +321,8 @@ patch:destination  	a rdf:Property ,  		owl:ObjectProperty ,  		owl:FunctionalProperty ; -	rdfs:domain patch:Message . +	rdfs:domain patch:Message ; +	rdfs:label "destination" .  patch:property  	a rdf:Property ; @@ -338,7 +343,8 @@ patch:remove  		owl:ObjectProperty ,  		owl:FunctionalProperty ;  	rdfs:label "remove" ; -	rdfs:domain patch:Message . +	rdfs:domain patch:Message ; +	rdfs:comment "The properties to remove from the subject." .  patch:request  	a rdf:Property , @@ -365,6 +371,7 @@ patch:subject  		owl:ObjectProperty ,  		owl:FunctionalProperty ;  	rdfs:domain patch:Message ; +	rdfs:label "subject" ;  	rdfs:comment "The subject this message applies to." .  patch:value  |