Tore Christiansen

fixed use ref again because topbraid put it it the wrong file and didnt bother to tell us :(

...@@ -1599,6 +1599,3 @@ ilap:shouldUseAnyUri ...@@ -1599,6 +1599,3 @@ ilap:shouldUseAnyUri
1599 rdfs:comment "A relationship between an instance of Specified User Field and the instance of Free Field that holds the user defined name and value this application-specific requires work order type variable, through instances of the hasFieldName property and hasValue relationship."^^xsd:string ; 1599 rdfs:comment "A relationship between an instance of Specified User Field and the instance of Free Field that holds the user defined name and value this application-specific requires work order type variable, through instances of the hasFieldName property and hasValue relationship."^^xsd:string ;
1600 rdfs:label "requires Work Order Type"^^xsd:string ; 1600 rdfs:label "requires Work Order Type"^^xsd:string ;
1601 . 1601 .
1602 -[
1603 - ilap:shouldUseRef "true"^^xsd:boolean ;
1604 -].
......
...@@ -163,6 +163,13 @@ ...@@ -163,6 +163,13 @@
163 rdf:type owl:Restriction ; 163 rdf:type owl:Restriction ;
164 :shouldUseRef "true"^^xsd:boolean ; 164 :shouldUseRef "true"^^xsd:boolean ;
165 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 165 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
166 + owl:onClass :FreeFieldValue ;
167 + owl:onProperty :hasFreeField ;
168 + ] ;
169 + rdfs:subClassOf [
170 + rdf:type owl:Restriction ;
171 + :shouldUseRef "true"^^xsd:boolean ;
172 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
166 owl:onClass :WorkOrderPlan ; 173 owl:onClass :WorkOrderPlan ;
167 owl:onProperty :correspondsToPlan ; 174 owl:onProperty :correspondsToPlan ;
168 ] ; 175 ] ;
...@@ -211,12 +218,6 @@ ...@@ -211,12 +218,6 @@
211 rdfs:subClassOf [ 218 rdfs:subClassOf [
212 rdf:type owl:Restriction ; 219 rdf:type owl:Restriction ;
213 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 220 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
214 - owl:onClass :FreeFieldValue ;
215 - owl:onProperty :hasFreeField ;
216 - ] ;
217 - rdfs:subClassOf [
218 - rdf:type owl:Restriction ;
219 - owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
220 owl:onClass :MaterialOrderStatus ; 221 owl:onClass :MaterialOrderStatus ;
221 owl:onProperty :hasMaterialOrderStatus ; 222 owl:onProperty :hasMaterialOrderStatus ;
222 ] ; 223 ] ;
......