Tore Christiansen

Added owl:Class ClassOfActivity to represent Activity Objective and its members

...@@ -204,12 +204,23 @@ ...@@ -204,12 +204,23 @@
204 owl:onProperty :hasMaterialOrderStatus ; 204 owl:onProperty :hasMaterialOrderStatus ;
205 ] ; 205 ] ;
206 . 206 .
207 +:ActivityObjective
208 + rdf:type rdfs:Class ;
209 + rdfs:label "Activity objective"^^xsd:string ;
210 + rdfs:subClassOf :ClassOfActivity ;
211 +.
207 :ActivityStatus 212 :ActivityStatus
208 rdf:type owl:Class ; 213 rdf:type owl:Class ;
209 rdfs:comment "A Status of an Activity (which can have predefined enumeration values)."^^xsd:string ; 214 rdfs:comment "A Status of an Activity (which can have predefined enumeration values)."^^xsd:string ;
210 rdfs:label "Activity status"^^xsd:string ; 215 rdfs:label "Activity status"^^xsd:string ;
211 rdfs:subClassOf :Status ; 216 rdfs:subClassOf :Status ;
212 . 217 .
218 +:ActivityToMaintainBusinessAsUsual
219 + rdf:type :ActivityObjective ;
220 + rdf:type owl:Class ;
221 + rdfs:label "Activity to Maintain Business as Usual"^^xsd:string ;
222 + rdfs:subClassOf :Activity ;
223 +.
213 :AfterShutdown 224 :AfterShutdown
214 rdf:type :ShutdownPhase ; 225 rdf:type :ShutdownPhase ;
215 rdfs:label "After shutdown"^^xsd:string ; 226 rdfs:label "After shutdown"^^xsd:string ;
...@@ -503,6 +514,11 @@ ...@@ -503,6 +514,11 @@
503 rdf:type :SystemDescriptor ; 514 rdf:type :SystemDescriptor ;
504 rdfs:label "Change over"^^xsd:string ; 515 rdfs:label "Change over"^^xsd:string ;
505 . 516 .
517 +:ClassOfActivity
518 + rdf:type rdfs:Class ;
519 + rdfs:label "Class of activity"^^xsd:string ;
520 + rdfs:subClassOf owl:Class ;
521 +.
506 :ClosingDown 522 :ClosingDown
507 rdf:type :ShutdownPhase ; 523 rdf:type :ShutdownPhase ;
508 rdfs:label "Closing down"^^xsd:string ; 524 rdfs:label "Closing down"^^xsd:string ;
......