Håvard M. Ottestad

bug fix for scheduels

...@@ -3121,18 +3121,20 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3121,18 +3121,20 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3121 . 3121 .
3122 :ScheduleForILAP 3122 :ScheduleForILAP
3123 rdf:type owl:Class ; 3123 rdf:type owl:Class ;
3124 + :shouldHaveID "true"^^xsd:boolean ;
3124 rdfs:comment "A Schedule for Plan that holds information about the scheduled dates for a PlanForILAP."^^xsd:string ; 3125 rdfs:comment "A Schedule for Plan that holds information about the scheduled dates for a PlanForILAP."^^xsd:string ;
3125 rdfs:label "Schedule for ILAP"^^xsd:string ; 3126 rdfs:label "Schedule for ILAP"^^xsd:string ;
3126 rdfs:subClassOf :ScheduleForPlan ; 3127 rdfs:subClassOf :ScheduleForPlan ;
3127 rdfs:subClassOf [ 3128 rdfs:subClassOf [
3128 rdf:type owl:Restriction ; 3129 rdf:type owl:Restriction ;
3129 :shouldUseRef "true"^^xsd:boolean ; 3130 :shouldUseRef "true"^^xsd:boolean ;
3130 - owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 3131 + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
3131 owl:onClass :ScheduleForILAP ; 3132 owl:onClass :ScheduleForILAP ;
3132 owl:onProperty :hasPreviousScheduleForPlan ; 3133 owl:onProperty :hasPreviousScheduleForPlan ;
3133 ] ; 3134 ] ;
3134 rdfs:subClassOf [ 3135 rdfs:subClassOf [
3135 rdf:type owl:Restriction ; 3136 rdf:type owl:Restriction ;
3137 + :shouldUseRef "true"^^xsd:boolean ;
3136 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 3138 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
3137 owl:onClass :ScheduleForActivityInPlan ; 3139 owl:onClass :ScheduleForActivityInPlan ;
3138 owl:onProperty :hasActivity ; 3140 owl:onProperty :hasActivity ;
......