Tore Christiansen

Updated datatype properties

...@@ -150,6 +150,24 @@ ...@@ -150,6 +150,24 @@
150 ] ; 150 ] ;
151 rdfs:subClassOf [ 151 rdfs:subClassOf [
152 rdf:type owl:Restriction ; 152 rdf:type owl:Restriction ;
153 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
154 + owl:onDataRange xsd:decimal ;
155 + owl:onProperty :hasActivityActualWeight ;
156 + ] ;
157 + rdfs:subClassOf [
158 + rdf:type owl:Restriction ;
159 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
160 + owl:onDataRange xsd:decimal ;
161 + owl:onProperty :hasActivityEstimatedWeight ;
162 + ] ;
163 + rdfs:subClassOf [
164 + rdf:type owl:Restriction ;
165 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
166 + owl:onDataRange xsd:decimal ;
167 + owl:onProperty :hasActivityWorkVolume ;
168 + ] ;
169 + rdfs:subClassOf [
170 + rdf:type owl:Restriction ;
153 owl:onDataRange xsd:string ; 171 owl:onDataRange xsd:string ;
154 owl:onProperty :hasDescription ; 172 owl:onProperty :hasDescription ;
155 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; 173 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
...@@ -1843,7 +1861,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1843,7 +1861,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1843 rdf:type owl:Restriction ; 1861 rdf:type owl:Restriction ;
1844 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 1862 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1845 owl:onDataRange xsd:decimal ; 1863 owl:onDataRange xsd:decimal ;
1846 - owl:onProperty :hasPercentageComplete ; 1864 + owl:onProperty :hasActualPercentComplete ;
1865 + ] ;
1866 + rdfs:subClassOf [
1867 + rdf:type owl:Restriction ;
1868 + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1869 + owl:onDataRange xsd:decimal ;
1870 + owl:onProperty :hasPhysicalPercentComplete ;
1847 ] ; 1871 ] ;
1848 rdfs:subClassOf [ 1872 rdfs:subClassOf [
1849 rdf:type owl:Restriction ; 1873 rdf:type owl:Restriction ;
...@@ -2531,14 +2555,37 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2531,14 +2555,37 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2531 rdf:type owl:ObjectProperty ; 2555 rdf:type owl:ObjectProperty ;
2532 rdfs:label "has activity"^^xsd:string ; 2556 rdfs:label "has activity"^^xsd:string ;
2533 . 2557 .
2558 +:hasActivityActualWeight
2559 + rdf:type owl:DatatypeProperty ;
2560 + rdfs:label "has actual activity weight"^^xsd:string ;
2561 + rdfs:subPropertyOf :hasActivityWeight ;
2562 +.
2563 +:hasActivityEstimatedWeight
2564 + rdf:type owl:DatatypeProperty ;
2565 + rdfs:label "has activity estimated weight"^^xsd:string ;
2566 + rdfs:subPropertyOf :hasActivityWeight ;
2567 +.
2534 :hasActivityMaterialOrderStatus 2568 :hasActivityMaterialOrderStatus
2535 rdf:type owl:ObjectProperty ; 2569 rdf:type owl:ObjectProperty ;
2536 rdfs:label "has activity material order status"^^xsd:string ; 2570 rdfs:label "has activity material order status"^^xsd:string ;
2537 . 2571 .
2572 +:hasActivityWeight
2573 + rdf:type owl:DatatypeProperty ;
2574 + rdfs:label "has activity weight"^^xsd:string ;
2575 +.
2576 +:hasActivityWorkVolume
2577 + rdf:type owl:DatatypeProperty ;
2578 + rdfs:label "has activity work volume"^^xsd:string ;
2579 +.
2538 :hasActualFinish 2580 :hasActualFinish
2539 rdf:type owl:DatatypeProperty ; 2581 rdf:type owl:DatatypeProperty ;
2540 rdfs:label "has actual finish"^^xsd:string ; 2582 rdfs:label "has actual finish"^^xsd:string ;
2541 . 2583 .
2584 +:hasActualPercentComplete
2585 + rdf:type owl:DatatypeProperty ;
2586 + rdfs:label "has actual percent complete"^^xsd:string ;
2587 + rdfs:subPropertyOf :hasPercentageComplete ;
2588 +.
2542 :hasActualStart 2589 :hasActualStart
2543 rdf:type owl:DatatypeProperty ; 2590 rdf:type owl:DatatypeProperty ;
2544 rdfs:label "has actual start"^^xsd:string ; 2591 rdfs:label "has actual start"^^xsd:string ;
...@@ -2736,6 +2783,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2736,6 +2783,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2736 rdf:type owl:ObjectProperty ; 2783 rdf:type owl:ObjectProperty ;
2737 rdfs:label "has phase type"^^xsd:string ; 2784 rdfs:label "has phase type"^^xsd:string ;
2738 . 2785 .
2786 +:hasPhysicalPercentComplete
2787 + rdf:type owl:DatatypeProperty ;
2788 + rdfs:label "has physical percent complete"^^xsd:string ;
2789 + rdfs:subPropertyOf :hasPercentageComplete ;
2790 +.
2739 :hasPlan 2791 :hasPlan
2740 rdf:type owl:ObjectProperty ; 2792 rdf:type owl:ObjectProperty ;
2741 rdfs:label "has plan"^^xsd:string ; 2793 rdfs:label "has plan"^^xsd:string ;
......