Tore Christiansen

Added ShouldUseAnyURI to hasLocation on ActivityInPlan

...@@ -151,6 +151,20 @@ ...@@ -151,6 +151,20 @@
151 ] ; 151 ] ;
152 rdfs:subClassOf [ 152 rdfs:subClassOf [
153 rdf:type owl:Restriction ; 153 rdf:type owl:Restriction ;
154 + :shouldUseAnyUri "true"^^xsd:boolean ;
155 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
156 + owl:onClass [
157 + rdf:type owl:Class ;
158 + owl:unionOf (
159 + :RegionInSpace
160 + :PointInSpace
161 + :PhysicalObject
162 + ) ;
163 + ] ;
164 + owl:onProperty :hasLocation ;
165 + ] ;
166 + rdfs:subClassOf [
167 + rdf:type owl:Restriction ;
154 :shouldUseRef "true"^^xsd:boolean ; 168 :shouldUseRef "true"^^xsd:boolean ;
155 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 169 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
156 owl:onClass :Calendar ; 170 owl:onClass :Calendar ;
...@@ -305,19 +319,6 @@ ...@@ -305,19 +319,6 @@
305 rdfs:subClassOf [ 319 rdfs:subClassOf [
306 rdf:type owl:Restriction ; 320 rdf:type owl:Restriction ;
307 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 321 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
308 - owl:onClass [
309 - rdf:type owl:Class ;
310 - owl:unionOf (
311 - :RegionInSpace
312 - :PointInSpace
313 - :PhysicalObject
314 - ) ;
315 - ] ;
316 - owl:onProperty :hasLocation ;
317 - ] ;
318 - rdfs:subClassOf [
319 - rdf:type owl:Restriction ;
320 - owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
321 owl:onDataRange xsd:date ; 322 owl:onDataRange xsd:date ;
322 owl:onProperty :hasOperatorsRequiredEndDate ; 323 owl:onProperty :hasOperatorsRequiredEndDate ;
323 ] ; 324 ] ;
......