@@ -56,7 +56,7 @@ xsd:date rdf:type rdfs:Datatype ;
56
56
# ## https://g-node.org/projects/odml-rdf#hasValue
57
57
:hasValue rdf:type owl:ObjectProperty ;
58
58
rdfs:domain :Property ;
59
- rdfs:range rdf:Bag ;
59
+ rdfs:range rdf:Seq ;
60
60
rdfs:label " hasValue" ^^xsd:string .
61
61
62
62
@@ -94,7 +94,7 @@ xsd:date rdf:type rdfs:Datatype ;
94
94
95
95
# ## https://g-node.org/projects/odml-rdf#isValueOf
96
96
:isValueOf rdf:type owl:ObjectProperty ;
97
- rdfs:domain rdf:Bag ;
97
+ rdfs:domain rdf:Seq ;
98
98
rdfs:range :Property ;
99
99
rdfs:label " isValueOf" ^^xsd:string .
100
100
@@ -211,15 +211,15 @@ xsd:date rdf:type rdfs:Datatype ;
211
211
# Classes
212
212
# ################################################################
213
213
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 ;
216
216
rdfs:subClassOf [ rdf:type owl:Restriction ;
217
217
owl:onProperty :isValueOf ;
218
218
owl:someValuesFrom :Property
219
219
] ;
220
- rdfs:comment " The class of unordered containers." ;
220
+ rdfs:comment " The class of ordered containers." ;
221
221
rdfs:isDefinedBy rdf: ;
222
- rdfs:label " Bag " .
222
+ rdfs:label " Seq " .
223
223
224
224
225
225
# ## https://g-node.org/projects/odml-rdf#Cell
@@ -346,7 +346,7 @@ rdf:Bag rdf:type owl:Class ;
346
346
rdfs:subClassOf owl:Thing ,
347
347
[ rdf:type owl:Restriction ;
348
348
owl:onProperty :hasValue ;
349
- owl:someValuesFrom rdf:Bag
349
+ owl:someValuesFrom rdf:Seq
350
350
] ,
351
351
[ rdf:type owl:Restriction ;
352
352
owl:onProperty :isPropertyOf ;
0 commit comments