Tore Christiansen

One more push after pulling latest updates from GIT

Showing 51 changed files with 13 additions and 13 deletions
...@@ -351,7 +351,12 @@ ...@@ -351,7 +351,12 @@
351 owl:onDataRange xsd:decimal ; 351 owl:onDataRange xsd:decimal ;
352 owl:onProperty :hasWorkVolume ; 352 owl:onProperty :hasWorkVolume ;
353 ] ; 353 ] ;
354 - 354 + rdfs:subClassOf [
355 + rdf:type owl:Restriction ;
356 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
357 + owl:onDataRange xsd:integer ;
358 + owl:onProperty :hasPercentageComplete ;
359 + ] ;
355 rdfs:subClassOf [ 360 rdfs:subClassOf [
356 rdf:type owl:Restriction ; 361 rdf:type owl:Restriction ;
357 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 362 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
...@@ -456,6 +461,13 @@ ...@@ -456,6 +461,13 @@
456 rdfs:label "Activity that involves shallow gas operation"^^xsd:string ; 461 rdfs:label "Activity that involves shallow gas operation"^^xsd:string ;
457 rdfs:subClassOf :ActivityWithRisk ; 462 rdfs:subClassOf :ActivityWithRisk ;
458 . 463 .
464 +:ActivityThatInvolvesUtilityConstraints
465 + rdf:type :ActivityRiskFactor ;
466 + rdf:type owl:Class ;
467 + rdfs:comment "An ActivityWithRisk that involves utility constraints."^^xsd:string ;
468 + rdfs:label "Activity that involves utility constraints"^^xsd:string ;
469 + rdfs:subClassOf :ActivityWithRisk ;
470 +.
459 :ActivityThatInvolvesVesselOperation 471 :ActivityThatInvolvesVesselOperation
460 rdf:type :ActivityRiskFactor ; 472 rdf:type :ActivityRiskFactor ;
461 rdf:type owl:Class ; 473 rdf:type owl:Class ;
...@@ -550,12 +562,6 @@ ...@@ -550,12 +562,6 @@
550 rdfs:label "Activity with Risk"^^xsd:string ; 562 rdfs:label "Activity with Risk"^^xsd:string ;
551 rdfs:subClassOf :Activity ; 563 rdfs:subClassOf :Activity ;
552 . 564 .
553 -:ActivityWithUtilityConstraints
554 - rdf:type :ActivityRiskFactor ;
555 - rdf:type owl:Class ;
556 - rdfs:label "An ActivityWithRisk with utility constraints."^^xsd:string ;
557 - rdfs:subClassOf :ActivityWithRisk ;
558 -.
559 :ActorInPlan 565 :ActorInPlan
560 rdf:type owl:Class ; 566 rdf:type owl:Class ;
561 rdfs:comment "A ClassOfPerson and ClassOfOrganization that takes part in carrying out the Plan."^^xsd:string ; 567 rdfs:comment "A ClassOfPerson and ClassOfOrganization that takes part in carrying out the Plan."^^xsd:string ;
...@@ -2872,12 +2878,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2872,12 +2878,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2872 owl:onProperty :partOfSchedule ; 2878 owl:onProperty :partOfSchedule ;
2873 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2879 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
2874 ] ; 2880 ] ;
2875 - rdfs:subClassOf [
2876 - rdf:type owl:Restriction ;
2877 - owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
2878 - owl:onDataRange xsd:decimal ;
2879 - owl:onProperty :hasPercentageComplete ;
2880 - ] ;
2881 rdfs:subClassOf [ 2881 rdfs:subClassOf [
2882 rdf:type owl:Restriction ; 2882 rdf:type owl:Restriction ;
2883 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2883 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
......