Tore Christiansen

Updated datatype properties

......@@ -150,6 +150,24 @@
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal ;
owl:onProperty :hasActivityActualWeight ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal ;
owl:onProperty :hasActivityEstimatedWeight ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal ;
owl:onProperty :hasActivityWorkVolume ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty :hasDescription ;
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
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal ;
owl:onProperty :hasPercentageComplete ;
owl:onProperty :hasActualPercentComplete ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal ;
owl:onProperty :hasPhysicalPercentComplete ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
......@@ -2531,14 +2555,37 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
rdf:type owl:ObjectProperty ;
rdfs:label "has activity"^^xsd:string ;
.
:hasActivityActualWeight
rdf:type owl:DatatypeProperty ;
rdfs:label "has actual activity weight"^^xsd:string ;
rdfs:subPropertyOf :hasActivityWeight ;
.
:hasActivityEstimatedWeight
rdf:type owl:DatatypeProperty ;
rdfs:label "has activity estimated weight"^^xsd:string ;
rdfs:subPropertyOf :hasActivityWeight ;
.
:hasActivityMaterialOrderStatus
rdf:type owl:ObjectProperty ;
rdfs:label "has activity material order status"^^xsd:string ;
.
:hasActivityWeight
rdf:type owl:DatatypeProperty ;
rdfs:label "has activity weight"^^xsd:string ;
.
:hasActivityWorkVolume
rdf:type owl:DatatypeProperty ;
rdfs:label "has activity work volume"^^xsd:string ;
.
:hasActualFinish
rdf:type owl:DatatypeProperty ;
rdfs:label "has actual finish"^^xsd:string ;
.
:hasActualPercentComplete
rdf:type owl:DatatypeProperty ;
rdfs:label "has actual percent complete"^^xsd:string ;
rdfs:subPropertyOf :hasPercentageComplete ;
.
:hasActualStart
rdf:type owl:DatatypeProperty ;
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
rdf:type owl:ObjectProperty ;
rdfs:label "has phase type"^^xsd:string ;
.
:hasPhysicalPercentComplete
rdf:type owl:DatatypeProperty ;
rdfs:label "has physical percent complete"^^xsd:string ;
rdfs:subPropertyOf :hasPercentageComplete ;
.
:hasPlan
rdf:type owl:ObjectProperty ;
rdfs:label "has plan"^^xsd:string ;
......