diff options
author | David Robillard <d@drobilla.net> | 2021-03-12 22:42:58 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-15 14:36:21 -0400 |
commit | fe222f853820810bc1203aa8507600c1d6e44a68 (patch) | |
tree | 0f565642ce7034ede75570d8077b209682d7f028 | |
parent | a5fe57d4c563601fc993d164dff3d4b0cffc5420 (diff) | |
download | lv2-fe222f853820810bc1203aa8507600c1d6e44a68.tar.xz |
Simplify dcs.ttl
I am not sure if anonymous classes like this are "officially" invalid for OWL,
but they cause problems with some tools. So, just replace them with the class
we actually use. With this, tools have no problem loading dcs.ttl as an OWL
Full ontology.
-rw-r--r-- | schemas.lv2/dcs.ttl | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/schemas.lv2/dcs.ttl b/schemas.lv2/dcs.ttl index 44bf294..b961190 100644 --- a/schemas.lv2/dcs.ttl +++ b/schemas.lv2/dcs.ttl @@ -50,14 +50,14 @@ dcs:ToDoList rdfs:isDefinedBy dcs: ; rdfs:label "To-Do List"@en ; rdfs:comment "A collection of planned changes."@en ; - rdfs:subClassOf _:FutureChangeSet . + rdfs:subClassOf dcs:ChangeSet . dcs:WishList a owl:Class ; rdfs:isDefinedBy dcs: ; rdfs:label "Wish List"@en ; rdfs:comment "A collection of desired changes."@en ; - rdfs:subClassOf _:FutureChangeSet . + rdfs:subClassOf dcs:ChangeSet . dcs:Change a owl:Class ; @@ -140,20 +140,12 @@ dcs:BackCompat rdfs:comment "A change that breaks backwards compatibility, changing documented or tested behaviour."@en ; rdfs:subClassOf dcs:Change. -_:FutureChangeSet - a owl:Class ; - rdfs:subClassOf rdf:Bag , dcs:ChangeSet . - -_:VersionOrEvent - a owl:Class ; - owl:unionOf (doap:Version event:Event) . - dcs:changeset a owl:ObjectProperty ; rdfs:isDefinedBy dcs: ; rdfs:label "change set"@en ; rdfs:comment "A change set may be associated with a particular software version in which those changes were released; or with an event which caused those changes."@en ; - rdfs:domain _:VersionOrEvent ; + rdfs:domain doap:Version ; rdfs:range dcs:ChangeSet . dcs:versus @@ -162,7 +154,7 @@ dcs:versus rdfs:label "versus"@en ; rdfs:comment "The previous version or event which a changeset has changed from."@en ; rdfs:domain dcs:ChangeSet ; - rdfs:range _:VersionOrEvent . + rdfs:range doap:Version . dcs:item a owl:ObjectProperty ; @@ -233,8 +225,8 @@ dcs:milestone a owl:ObjectProperty ; rdfs:isDefinedBy dcs: ; rdfs:label "milestone"@en ; - rdfs:domain _:FutureChangeSet ; - rdfs:range _:VersionOrEvent . + rdfs:domain dcs:ChangeSet ; + rdfs:range doap:Version . dcs:tasks a owl:ObjectProperty ; |