Håvard M. Ottestad

Changed PlanForActivity to be called Plan and created PlanForActivity as a subclass.

...@@ -341,7 +341,7 @@ userfield:hasFreeFieldForSpecifiedUserField ...@@ -341,7 +341,7 @@ userfield:hasFreeFieldForSpecifiedUserField
341 rdfs:subClassOf [ 341 rdfs:subClassOf [
342 rdf:type owl:Restriction ; 342 rdf:type owl:Restriction ;
343 :shouldUseRef "true"^^xsd:boolean ; 343 :shouldUseRef "true"^^xsd:boolean ;
344 - owl:onClass :PlanForActivity ; 344 + owl:onClass :Plan ;
345 owl:onProperty :forPlan ; 345 owl:onProperty :forPlan ;
346 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; 346 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
347 ] ; 347 ] ;
...@@ -847,7 +847,7 @@ userfield:hasFreeFieldForSpecifiedUserField ...@@ -847,7 +847,7 @@ userfield:hasFreeFieldForSpecifiedUserField
847 rdfs:subClassOf :Period ; 847 rdfs:subClassOf :Period ;
848 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS380969> ; 848 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS380969> ;
849 . 849 .
850 -:PlanForActivity 850 +:Plan
851 rdf:type owl:Class ; 851 rdf:type owl:Class ;
852 :shouldHaveID "true"^^xsd:boolean ; 852 :shouldHaveID "true"^^xsd:boolean ;
853 rdfs:comment """A ClassOfActivity that is a specification of what is to be done. A Plan consists of Activities, usually represented as a diagram or list of steps used to achieve an Objective 853 rdfs:comment """A ClassOfActivity that is a specification of what is to be done. A Plan consists of Activities, usually represented as a diagram or list of steps used to achieve an Objective
...@@ -858,6 +858,13 @@ NOTE 2 An activity plan can define a number of part activities which are relate ...@@ -858,6 +858,13 @@ NOTE 2 An activity plan can define a number of part activities which are relate
858 rdfs:label " Plan for Activity"^^xsd:string ; 858 rdfs:label " Plan for Activity"^^xsd:string ;
859 rdfs:subClassOf owl:Thing ; 859 rdfs:subClassOf owl:Thing ;
860 rdfs:subClassOf [ 860 rdfs:subClassOf [
861 + rdf:type owl:Class ;
862 + owl:unionOf (
863 + :WorkOrder
864 + :PlanForActivity
865 + ) ;
866 + ] ;
867 + rdfs:subClassOf [
861 rdf:type owl:Restriction ; 868 rdf:type owl:Restriction ;
862 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 869 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
863 owl:onClass :PlanLevel ; 870 owl:onClass :PlanLevel ;
...@@ -942,6 +949,11 @@ NOTE 2 An activity plan can define a number of part activities which are relate ...@@ -942,6 +949,11 @@ NOTE 2 An activity plan can define a number of part activities which are relate
942 owl:onProperty :hasActivity ; 949 owl:onProperty :hasActivity ;
943 ] ; 950 ] ;
944 . 951 .
952 +:PlanForActivity
953 + rdf:type owl:Class ;
954 + rdfs:label "Regular plan for activity"^^xsd:string ;
955 + rdfs:subClassOf :Plan ;
956 +.
945 :PlanLevel 957 :PlanLevel
946 rdf:type owl:Class ; 958 rdf:type owl:Class ;
947 rdfs:comment "A Thing that classifies Activity Plans according to their level in the planning hierarchy."^^xsd:string ; 959 rdfs:comment "A Thing that classifies Activity Plans according to their level in the planning hierarchy."^^xsd:string ;
...@@ -1076,7 +1088,7 @@ NOTE 2 An activity plan can define a number of part activities which are relate ...@@ -1076,7 +1088,7 @@ NOTE 2 An activity plan can define a number of part activities which are relate
1076 rdfs:subClassOf [ 1088 rdfs:subClassOf [
1077 rdf:type owl:Restriction ; 1089 rdf:type owl:Restriction ;
1078 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 1090 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
1079 - owl:onClass :PlanForActivity ; 1091 + owl:onClass :Plan ;
1080 owl:onProperty :hasPlan ; 1092 owl:onProperty :hasPlan ;
1081 ] ; 1093 ] ;
1082 rdfs:subClassOf [ 1094 rdfs:subClassOf [
...@@ -1661,7 +1673,7 @@ NOTE 2 An activity plan can define a number of part activities which are relate ...@@ -1661,7 +1673,7 @@ NOTE 2 An activity plan can define a number of part activities which are relate
1661 :WorkOrder 1673 :WorkOrder
1662 rdf:type owl:Class ; 1674 rdf:type owl:Class ;
1663 rdfs:comment "An Plan for Activity that corresponds to a set of Operations with a description of the work content of the Operations."^^xsd:string ; 1675 rdfs:comment "An Plan for Activity that corresponds to a set of Operations with a description of the work content of the Operations."^^xsd:string ;
1664 - rdfs:subClassOf :PlanForActivity ; 1676 + rdfs:subClassOf :Plan ;
1665 rdfs:subClassOf [ 1677 rdfs:subClassOf [
1666 rdf:type owl:Restriction ; 1678 rdf:type owl:Restriction ;
1667 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 1679 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
......