Tore Christiansen

Fixed Criticality

...@@ -203,6 +203,12 @@ ...@@ -203,6 +203,12 @@
203 rdfs:subClassOf [ 203 rdfs:subClassOf [
204 rdf:type owl:Restriction ; 204 rdf:type owl:Restriction ;
205 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 205 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
206 + owl:onClass :Criticality ;
207 + owl:onProperty :hasPlanCriticality ;
208 + ] ;
209 + rdfs:subClassOf [
210 + rdf:type owl:Restriction ;
211 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
206 owl:onClass :ExternalReference ; 212 owl:onClass :ExternalReference ;
207 owl:onProperty :hasExternalReference ; 213 owl:onProperty :hasExternalReference ;
208 ] ; 214 ] ;
...@@ -851,9 +857,9 @@ ...@@ -851,9 +857,9 @@
851 . 857 .
852 :Criticality 858 :Criticality
853 rdf:type owl:Class ; 859 rdf:type owl:Class ;
854 - rdfs:comment "A System descriptor that is a measure of the consequence of failure of (one or more) activities."^^xsd:string ; 860 + rdfs:comment "A Class of Activity that is a measure of the consequence of failure of (one or more) activities."^^xsd:string ;
855 rdfs:label "Criticality"^^xsd:string ; 861 rdfs:label "Criticality"^^xsd:string ;
856 - rdfs:subClassOf :SystemDescriptor ; 862 + rdfs:subClassOf :ClassOfActivity ;
857 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7947106> ; 863 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7947106> ;
858 . 864 .
859 :D 865 :D
...@@ -1220,9 +1226,10 @@ ...@@ -1220,9 +1226,10 @@
1220 rdf:type :SystemDescriptor ; 1226 rdf:type :SystemDescriptor ;
1221 rdfs:label "High activity period"^^xsd:string ; 1227 rdfs:label "High activity period"^^xsd:string ;
1222 . 1228 .
1223 -:HighCriticality 1229 +:HighCriticalityActivity
1224 rdf:type :Criticality ; 1230 rdf:type :Criticality ;
1225 - rdfs:label "High criticality"^^xsd:string ; 1231 + rdfs:label "High criticality activity"^^xsd:string ;
1232 + rdfs:subClassOf :Activity ;
1226 . 1233 .
1227 :HighPriority 1234 :HighPriority
1228 rdf:type :Priority ; 1235 rdf:type :Priority ;
...@@ -1298,9 +1305,10 @@ ...@@ -1298,9 +1305,10 @@
1298 ] ; 1305 ] ;
1299 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS436813841> ; 1306 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS436813841> ;
1300 . 1307 .
1301 -:LowCriticality 1308 +:LowCriticalityActivity
1302 rdf:type :Criticality ; 1309 rdf:type :Criticality ;
1303 - rdfs:label "Low criticality"^^xsd:string ; 1310 + rdfs:label "Low criticality activity"^^xsd:string ;
1311 + rdfs:subClassOf :Activity ;
1304 . 1312 .
1305 :LowPriority 1313 :LowPriority
1306 rdf:type :Priority ; 1314 rdf:type :Priority ;
...@@ -1374,9 +1382,10 @@ ...@@ -1374,9 +1382,10 @@
1374 rdfs:label "Material order status"^^xsd:string ; 1382 rdfs:label "Material order status"^^xsd:string ;
1375 rdfs:subClassOf :Status ; 1383 rdfs:subClassOf :Status ;
1376 . 1384 .
1377 -:MediumCriticality 1385 +:MediumCriticalityActivity
1378 rdf:type :Criticality ; 1386 rdf:type :Criticality ;
1379 - rdfs:label "Medium criticality"^^xsd:string ; 1387 + rdfs:label "Medium criticality activity"^^xsd:string ;
1388 + rdfs:subClassOf :Activity ;
1380 . 1389 .
1381 :MediumPriority 1390 :MediumPriority
1382 rdf:type :Priority ; 1391 rdf:type :Priority ;
...@@ -3231,6 +3240,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3231,6 +3240,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3231 rdfs:comment "A relationship between a planning object and a plan."^^xsd:string ; 3240 rdfs:comment "A relationship between a planning object and a plan."^^xsd:string ;
3232 rdfs:label "has Plan"^^xsd:string ; 3241 rdfs:label "has Plan"^^xsd:string ;
3233 . 3242 .
3243 +:hasPlanCriticality
3244 + rdf:type owl:ObjectProperty ;
3245 + rdfs:domain :PlanForActivity ;
3246 + rdfs:label "has plan criticality"^^xsd:string ;
3247 + rdfs:range :Criticality ;
3248 +.
3234 :hasPlanLevel 3249 :hasPlanLevel
3235 rdf:type owl:ObjectProperty ; 3250 rdf:type owl:ObjectProperty ;
3236 rdfs:domain :PlanForActivity ; 3251 rdfs:domain :PlanForActivity ;
......