@@ -56,7 +56,7 @@ xsd:date rdf:type rdfs:Datatype ;
5656# ## https://g-node.org/projects/odml-rdf#hasValue
5757:hasValue rdf:type owl:ObjectProperty ;
5858 rdfs:domain :Property ;
59- rdfs:range rdf:Bag ;
59+ rdfs:range rdf:Seq ;
6060 rdfs:label " hasValue" ^^xsd:string .
6161
6262
@@ -94,7 +94,7 @@ xsd:date rdf:type rdfs:Datatype ;
9494
9595# ## https://g-node.org/projects/odml-rdf#isValueOf
9696:isValueOf rdf:type owl:ObjectProperty ;
97- rdfs:domain rdf:Bag ;
97+ rdfs:domain rdf:Seq ;
9898 rdfs:range :Property ;
9999 rdfs:label " isValueOf" ^^xsd:string .
100100
@@ -211,15 +211,15 @@ xsd:date rdf:type rdfs:Datatype ;
211211# Classes
212212# ################################################################
213213
214- # ## http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag
215- rdf:Bag rdf:type owl:Class ;
214+ # ## http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq
215+ rdf:Seq rdf:type owl:Class ;
216216 rdfs:subClassOf [ rdf:type owl:Restriction ;
217217 owl:onProperty :isValueOf ;
218218 owl:someValuesFrom :Property
219219 ] ;
220- rdfs:comment " The class of unordered containers." ;
220+ rdfs:comment " The class of ordered containers." ;
221221 rdfs:isDefinedBy rdf: ;
222- rdfs:label " Bag " .
222+ rdfs:label " Seq " .
223223
224224
225225# ## https://g-node.org/projects/odml-rdf#Cell
@@ -346,7 +346,7 @@ rdf:Bag rdf:type owl:Class ;
346346 rdfs:subClassOf owl:Thing ,
347347 [ rdf:type owl:Restriction ;
348348 owl:onProperty :hasValue ;
349- owl:someValuesFrom rdf:Bag
349+ owl:someValuesFrom rdf:Seq
350350 ] ,
351351 [ rdf:type owl:Restriction ;
352352 owl:onProperty :isPropertyOf ;
0 commit comments