Tore Christiansen

Correction to logical subclasses for plans

......@@ -1482,15 +1482,15 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
rdf:type owl:Restriction ;
:shouldUseAnyUri "true"^^xsd:boolean ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Phase ;
owl:onProperty :hasPhaseType ;
owl:onClass :ActivityObjective ;
owl:onProperty :hasPlanObjective ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
:shouldUseAnyUri "true"^^xsd:boolean ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :PlanObjectiveType ;
owl:onProperty :hasObjectiveType ;
owl:onClass :Phase ;
owl:onProperty :hasPhaseType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
......@@ -1516,12 +1516,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :PlanLevel ;
owl:onProperty :hasLevelType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime ;
owl:onProperty :now ;
] ;
......@@ -3004,11 +2998,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
rdfs:label "has Name"^^xsd:string ;
rdfs:range xsd:string ;
.
:hasObjectiveType
rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship between a planning object and a type of Objective."^^xsd:string ;
rdfs:label "has Objective Type"^^xsd:string ;
.
:hasOperation
rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship between a planning object and an Operation in a Work Order."^^xsd:string ;
......@@ -3067,6 +3056,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
rdfs:label "has plan level"^^xsd:string ;
rdfs:range :PlanLevel ;
.
:hasPlanObjective
rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship between a planning object and a type of Objective."^^xsd:string ;
rdfs:label "has Objective Type"^^xsd:string ;
.
:hasPlanType
rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship between a planning object and a time period."^^xsd:string ;
......