Tore Christiansen

Added most of the rest of the 15926 conversions

...@@ -71,8 +71,8 @@ ilap:shouldUseAnyUri ...@@ -71,8 +71,8 @@ ilap:shouldUseAnyUri
71 rdf:type owl:Restriction ; 71 rdf:type owl:Restriction ;
72 ilap:shouldUseAnyUri "true"^^xsd:boolean ; 72 ilap:shouldUseAnyUri "true"^^xsd:boolean ;
73 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 73 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
74 - owl:onClass ilap:Category ; 74 + owl:onClass ilap:ClassOfActivity ;
75 - owl:onProperty :hasCategory ; 75 + owl:onProperty :hasPhase ;
76 ] ; 76 ] ;
77 rdfs:subClassOf [ 77 rdfs:subClassOf [
78 rdf:type owl:Restriction ; 78 rdf:type owl:Restriction ;
...@@ -100,6 +100,13 @@ ilap:shouldUseAnyUri ...@@ -100,6 +100,13 @@ ilap:shouldUseAnyUri
100 ilap:shouldUseAnyUri "true"^^xsd:boolean ; 100 ilap:shouldUseAnyUri "true"^^xsd:boolean ;
101 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 101 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
102 owl:onClass ilap:Discipline ; 102 owl:onClass ilap:Discipline ;
103 + owl:onProperty :hasCategory ;
104 + ] ;
105 + rdfs:subClassOf [
106 + rdf:type owl:Restriction ;
107 + ilap:shouldUseAnyUri "true"^^xsd:boolean ;
108 + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
109 + owl:onClass ilap:Discipline ;
103 owl:onProperty :hasDiscipline ; 110 owl:onProperty :hasDiscipline ;
104 ] ; 111 ] ;
105 rdfs:subClassOf [ 112 rdfs:subClassOf [
...@@ -162,13 +169,6 @@ ilap:shouldUseAnyUri ...@@ -162,13 +169,6 @@ ilap:shouldUseAnyUri
162 rdf:type owl:Restriction ; 169 rdf:type owl:Restriction ;
163 ilap:shouldUseAnyUri "true"^^xsd:boolean ; 170 ilap:shouldUseAnyUri "true"^^xsd:boolean ;
164 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 171 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
165 - owl:onClass ilap:Phase ;
166 - owl:onProperty :hasPhase ;
167 - ] ;
168 - rdfs:subClassOf [
169 - rdf:type owl:Restriction ;
170 - ilap:shouldUseAnyUri "true"^^xsd:boolean ;
171 - owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
172 owl:onClass ilap:ProjectPhase ; 172 owl:onClass ilap:ProjectPhase ;
173 owl:onProperty :hasProjectPhase ; 173 owl:onProperty :hasProjectPhase ;
174 ] ; 174 ] ;
......
...@@ -24,6 +24,11 @@ ...@@ -24,6 +24,11 @@
24 owl:imports userfield: ; 24 owl:imports userfield: ;
25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string ; 25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
26 . 26 .
27 +:AbstractObject
28 + rdf:type owl:Class ;
29 + rdfs:label "Abstract object"^^xsd:string ;
30 + rdfs:subClassOf owl:Thing ;
31 +.
27 :Active 32 :Active
28 rdf:type :ActivityStatus ; 33 rdf:type :ActivityStatus ;
29 rdfs:label "Active"^^xsd:string ; 34 rdfs:label "Active"^^xsd:string ;
...@@ -256,6 +261,19 @@ ...@@ -256,6 +261,19 @@
256 rdfs:subClassOf [ 261 rdfs:subClassOf [
257 rdf:type owl:Restriction ; 262 rdf:type owl:Restriction ;
258 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 263 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
264 + owl:onClass [
265 + rdf:type owl:Class ;
266 + owl:unionOf (
267 + :RegionInSpace
268 + :PointInSpace
269 + :PhysicalObject
270 + ) ;
271 + ] ;
272 + owl:onProperty :hasLocation ;
273 + ] ;
274 + rdfs:subClassOf [
275 + rdf:type owl:Restriction ;
276 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
259 owl:onDataRange xsd:date ; 277 owl:onDataRange xsd:date ;
260 owl:onProperty :hasOperatorsRequiredEndDate ; 278 owl:onProperty :hasOperatorsRequiredEndDate ;
261 ] ; 279 ] ;
...@@ -369,6 +387,11 @@ ...@@ -369,6 +387,11 @@
369 rdfs:label "Activity to make radical change"^^xsd:string ; 387 rdfs:label "Activity to make radical change"^^xsd:string ;
370 rdfs:subClassOf :Activity ; 388 rdfs:subClassOf :Activity ;
371 . 389 .
390 +:ActivityToManageClosedown
391 + rdf:type owl:Class ;
392 + rdfs:label "Activity to manage closedown"^^xsd:string ;
393 + rdfs:subClassOf :Activity ;
394 +.
372 :ActivityWithPotentialImpactOnHabitat 395 :ActivityWithPotentialImpactOnHabitat
373 rdf:type :ActivityRiskFactor ; 396 rdf:type :ActivityRiskFactor ;
374 rdf:type owl:Class ; 397 rdf:type owl:Class ;
...@@ -381,6 +404,11 @@ ...@@ -381,6 +404,11 @@
381 rdfs:label "Activity with utility constraints"^^xsd:string ; 404 rdfs:label "Activity with utility constraints"^^xsd:string ;
382 rdfs:subClassOf :Activity ; 405 rdfs:subClassOf :Activity ;
383 . 406 .
407 +:ActivitytoManageDisasterRecovery
408 + rdf:type owl:Class ;
409 + rdfs:label "Activityto manage disaster recovery"^^xsd:string ;
410 + rdfs:subClassOf :Activity ;
411 +.
384 :AfterShutdown 412 :AfterShutdown
385 rdf:type :ShutdownPhase ; 413 rdf:type :ShutdownPhase ;
386 rdfs:label "After shutdown"^^xsd:string ; 414 rdfs:label "After shutdown"^^xsd:string ;
...@@ -391,20 +419,18 @@ ...@@ -391,20 +419,18 @@
391 rdfs:label "Agent"^^xsd:string ; 419 rdfs:label "Agent"^^xsd:string ;
392 rdfs:subClassOf :PhysicalObject ; 420 rdfs:subClassOf :PhysicalObject ;
393 . 421 .
394 -:Application
395 - rdf:type owl:Class ;
396 - rdfs:comment "Encoded Artificial Data that creates, manipulates, stores and retrieves Data (adapted from eHow.com)."^^xsd:string ;
397 - rdfs:label "Application"^^xsd:string ;
398 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS4316455455> ;
399 - rdfs:subClassOf owl:Thing ;
400 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS43165907246> ;
401 -.
402 :Area 422 :Area
403 rdf:type owl:Class ; 423 rdf:type owl:Class ;
404 rdfs:comment "A Property that specifies the geographical location of a Facility of Asset in terms of (dx.dy) where x and y are cartesian coordinates"^^xsd:string ; 424 rdfs:comment "A Property that specifies the geographical location of a Facility of Asset in terms of (dx.dy) where x and y are cartesian coordinates"^^xsd:string ;
405 rdfs:label "Area"^^xsd:string ; 425 rdfs:label "Area"^^xsd:string ;
426 + rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ;
406 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7275639> ; 427 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7275639> ;
407 - rdfs:subClassOf owl:Thing ; 428 + rdfs:subClassOf [
429 + rdf:type owl:Restriction ;
430 + owl:onClass :GeographicLocation ;
431 + owl:onProperty :hasLocation ;
432 + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
433 + ] ;
408 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS349874> ; 434 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS349874> ;
409 . 435 .
410 :Asset 436 :Asset
...@@ -425,12 +451,11 @@ ...@@ -425,12 +451,11 @@
425 rdfs:label "Authorize for expenditure"^^xsd:string ; 451 rdfs:label "Authorize for expenditure"^^xsd:string ;
426 rdfs:subClassOf :Activity ; 452 rdfs:subClassOf :Activity ;
427 . 453 .
428 -:Availability 454 +:AvailableResource
429 rdf:type owl:Class ; 455 rdf:type owl:Class ;
430 - rdfs:comment "A Property that is the ability of an item (under combined aspects of its reliability, maintainability and maintenance support) to perform its required function at a stated instant of time over a stated period of time (BS 4778)."^^xsd:string ; 456 + rdfs:comment "A Resource that is the ability of an item (under combined aspects of its reliability, maintainability and maintenance support) to perform its required function at a stated instant of time over a stated period of time (BS 4778)."^^xsd:string ;
431 - rdfs:label "Availability"^^xsd:string ; 457 + rdfs:label "Available Resource"^^xsd:string ;
432 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7275639> ; 458 + rdfs:subClassOf :Resource ;
433 - rdfs:subClassOf owl:Thing ;
434 rdfs:subClassOf [ 459 rdfs:subClassOf [
435 rdf:type owl:Class ; 460 rdf:type owl:Class ;
436 :shouldUseRef "true"^^xsd:boolean ; 461 :shouldUseRef "true"^^xsd:boolean ;
...@@ -544,12 +569,9 @@ ...@@ -544,12 +569,9 @@
544 rdfs:subClassOf :Activity ; 569 rdfs:subClassOf :Activity ;
545 . 570 .
546 :BusinessArea 571 :BusinessArea
547 - rdf:type :PlanGeoArea ; 572 + rdf:type owl:Class ;
548 rdfs:label "Business area"^^xsd:string ; 573 rdfs:label "Business area"^^xsd:string ;
549 -. 574 + rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ;
550 -:BusinessAsUsual
551 - rdf:type :PlanObjectiveType ;
552 - rdfs:label "Business As Usual"^^xsd:string ;
553 . 575 .
554 :Calendar 576 :Calendar
555 rdf:type owl:Class ; 577 rdf:type owl:Class ;
...@@ -616,6 +638,7 @@ ...@@ -616,6 +638,7 @@
616 :CalendarOp 638 :CalendarOp
617 rdf:type owl:Class ; 639 rdf:type owl:Class ;
618 rdfs:label "Calendar op"^^xsd:string ; 640 rdfs:label "Calendar op"^^xsd:string ;
641 + rdfs:subClassOf :AbstractObject ;
619 rdfs:subClassOf [ 642 rdfs:subClassOf [
620 rdf:type owl:Class ; 643 rdf:type owl:Class ;
621 owl:unionOf ( 644 owl:unionOf (
...@@ -633,8 +656,7 @@ ...@@ -633,8 +656,7 @@
633 :CalendarOpList 656 :CalendarOpList
634 rdf:type owl:Class ; 657 rdf:type owl:Class ;
635 rdfs:label "Calendar op list"^^xsd:string ; 658 rdfs:label "Calendar op list"^^xsd:string ;
636 - rdfs:subClassOf rdf:List ; 659 + rdfs:subClassOf :AbstractObject ;
637 - rdfs:subClassOf owl:Thing ;
638 rdfs:subClassOf [ 660 rdfs:subClassOf [
639 rdf:type owl:Restriction ; 661 rdf:type owl:Restriction ;
640 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 662 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
...@@ -707,14 +729,6 @@ ...@@ -707,14 +729,6 @@
707 rdfs:label "Cancelled"^^xsd:string ; 729 rdfs:label "Cancelled"^^xsd:string ;
708 rdfs:subClassOf :PossibleIndividual ; 730 rdfs:subClassOf :PossibleIndividual ;
709 . 731 .
710 -:Category
711 - rdf:type owl:Class ;
712 - rdfs:comment "An Organization that is a group of related competencies used to classify Disciplines according to Discipline Code Manuals (typically based on standards such as NORSOK COR codes)."^^xsd:string ;
713 - rdfs:label "Category"^^xsd:string ;
714 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS282149> ;
715 - rdfs:subClassOf owl:Thing ;
716 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS6811233> ;
717 -.
718 :ChangeOver 732 :ChangeOver
719 rdf:type :SystemDescriptor ; 733 rdf:type :SystemDescriptor ;
720 rdfs:label "Change over"^^xsd:string ; 734 rdfs:label "Change over"^^xsd:string ;
...@@ -749,6 +763,11 @@ ...@@ -749,6 +763,11 @@
749 rdfs:label "Class of physical object"^^xsd:string ; 763 rdfs:label "Class of physical object"^^xsd:string ;
750 rdfs:subClassOf :ClassOfIndividual ; 764 rdfs:subClassOf :ClassOfIndividual ;
751 . 765 .
766 +:ClassOfPlanForActivity
767 + rdf:type rdfs:Class ;
768 + rdfs:label "Class of plan for activity"^^xsd:string ;
769 + rdfs:subClassOf :ClassOfClassOfActivity ;
770 +.
752 :ClassOfResource 771 :ClassOfResource
753 rdf:type rdfs:Class ; 772 rdf:type rdfs:Class ;
754 rdfs:label "Class of resource"^^xsd:string ; 773 rdfs:label "Class of resource"^^xsd:string ;
...@@ -769,17 +788,13 @@ ...@@ -769,17 +788,13 @@
769 rdfs:label "Closing down"^^xsd:string ; 788 rdfs:label "Closing down"^^xsd:string ;
770 rdfs:subClassOf :Activity ; 789 rdfs:subClassOf :Activity ;
771 . 790 .
772 -:CoilTubing 791 +:CoilTubingActivity
773 rdf:type owl:Class ; 792 rdf:type owl:Class ;
774 rdfs:comment "An Activity that is related to preparation and rigging up/down snubbing and coil tubing equipment, including pressure testing."^^xsd:string ; 793 rdfs:comment "An Activity that is related to preparation and rigging up/down snubbing and coil tubing equipment, including pressure testing."^^xsd:string ;
775 - rdfs:label "Coil tubing"^^xsd:string ; 794 + rdfs:label "Coil tubing activity"^^xsd:string ;
776 - rdfs:subClassOf owl:Thing ; 795 + rdfs:subClassOf :DrillingActivity ;
777 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS17729327> ; 796 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS17729327> ;
778 . 797 .
779 -:CommissioningMilestone
780 - rdf:type :MilestoneType ;
781 - rdfs:label "Commissioning Milestone"^^xsd:string ;
782 -.
783 :Completed 798 :Completed
784 rdf:type :ActivityStatus ; 799 rdf:type :ActivityStatus ;
785 rdfs:label "Completed"^^xsd:string ; 800 rdfs:label "Completed"^^xsd:string ;
...@@ -821,8 +836,7 @@ ...@@ -821,8 +836,7 @@
821 :shouldHaveID "true" ; 836 :shouldHaveID "true" ;
822 rdfs:comment "A Regulation that defines limitation or restrictions on relationships between Possible Individuals (adapted from ISO 15926 and Dictionary.com)."^^xsd:string ; 837 rdfs:comment "A Regulation that defines limitation or restrictions on relationships between Possible Individuals (adapted from ISO 15926 and Dictionary.com)."^^xsd:string ;
823 rdfs:label "Constraint"^^xsd:string ; 838 rdfs:label "Constraint"^^xsd:string ;
824 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7953078> ; 839 + rdfs:subClassOf :ClassOfPeriodInTime ;
825 - rdfs:subClassOf owl:Thing ;
826 rdfs:subClassOf [ 840 rdfs:subClassOf [
827 rdf:type owl:Class ; 841 rdf:type owl:Class ;
828 owl:unionOf ( 842 owl:unionOf (
...@@ -864,19 +878,14 @@ ...@@ -864,19 +878,14 @@
864 rdfs:label "Construction milestone"^^xsd:string ; 878 rdfs:label "Construction milestone"^^xsd:string ;
865 . 879 .
866 :Continent 880 :Continent
867 - rdf:type :PlanGeoArea ; 881 + rdf:type owl:Class ;
868 rdfs:label "Continent"^^xsd:string ; 882 rdfs:label "Continent"^^xsd:string ;
883 + rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ;
869 . 884 .
870 :ContractMilestone 885 :ContractMilestone
871 rdf:type :MilestoneType ; 886 rdf:type :MilestoneType ;
872 rdfs:label "Contract milestone"^^xsd:string ; 887 rdfs:label "Contract milestone"^^xsd:string ;
873 . 888 .
874 -:ContractType
875 - rdf:type owl:Class ;
876 - rdfs:comment "A System Descriptor that describes the Type of Contract."^^xsd:string ;
877 - rdfs:label "Contract Type"^^xsd:string ;
878 - rdfs:subClassOf :SystemDescriptor ;
879 -.
880 :Contractor 889 :Contractor
881 rdf:type owl:Class ; 890 rdf:type owl:Class ;
882 rdfs:comment "A Responsible that is an organization that has a contract related to one or more Activities in a Plan"^^xsd:string ; 891 rdfs:comment "A Responsible that is an organization that has a contract related to one or more Activities in a Plan"^^xsd:string ;
...@@ -888,8 +897,7 @@ ...@@ -888,8 +897,7 @@
888 rdf:type owl:Class ; 897 rdf:type owl:Class ;
889 rdfs:comment "A Metric Space Point that specifies location."^^xsd:string ; 898 rdfs:comment "A Metric Space Point that specifies location."^^xsd:string ;
890 rdfs:label "Coordinate"^^xsd:string ; 899 rdfs:label "Coordinate"^^xsd:string ;
891 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS4746617448> ; 900 + rdfs:subClassOf :AbstractObject ;
892 - rdfs:subClassOf owl:Thing ;
893 rdfs:subClassOf [ 901 rdfs:subClassOf [
894 rdf:type owl:Restriction ; 902 rdf:type owl:Restriction ;
895 owl:onDataRange xsd:decimal ; 903 owl:onDataRange xsd:decimal ;
...@@ -902,16 +910,14 @@ ...@@ -902,16 +910,14 @@
902 owl:onProperty :hasY ; 910 owl:onProperty :hasY ;
903 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; 911 owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
904 ] ; 912 ] ;
913 + rdfs:subClassOf [
914 + rdf:type owl:Restriction ;
915 + owl:onDataRange xsd:decimal ;
916 + owl:onProperty :hasZ ;
917 + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
918 + ] ;
905 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS2213258891> ; 919 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS2213258891> ;
906 . 920 .
907 -:Cost
908 - rdf:type owl:Class ;
909 - rdfs:comment "A Property denoting an expense of something that is a monetary valuation of (1) effort, (2) material, (3) resources, (4) time and utilities consumed, (5) risks incurred, and (6) opportunity forgone in executing an activity. Costs can be both direct and indirect. All expenses are costs, but not all costs (such as those incurred in acquisition of an income-generating asset) are expenses."^^xsd:string ;
910 - rdfs:label "Cost"^^xsd:string ;
911 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7275639> ;
912 - rdfs:subClassOf owl:Thing ;
913 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7945027> ;
914 -.
915 :CostBasedResource 921 :CostBasedResource
916 rdf:type owl:Class ; 922 rdf:type owl:Class ;
917 rdfs:comment "A Resource that is limited by its cost."^^xsd:string ; 923 rdfs:comment "A Resource that is limited by its cost."^^xsd:string ;
...@@ -925,8 +931,9 @@ ...@@ -925,8 +931,9 @@
925 rdfs:subClassOf :ResourceInPlan ; 931 rdfs:subClassOf :ResourceInPlan ;
926 . 932 .
927 :Country 933 :Country
928 - rdf:type :PlanGeoArea ; 934 + rdf:type owl:Class ;
929 rdfs:label "Country"^^xsd:string ; 935 rdfs:label "Country"^^xsd:string ;
936 + rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ;
930 . 937 .
931 :Crew 938 :Crew
932 rdf:type owl:Class ; 939 rdf:type owl:Class ;
...@@ -940,11 +947,6 @@ ...@@ -940,11 +947,6 @@
940 rdfs:subClassOf :ClassOfActivity ; 947 rdfs:subClassOf :ClassOfActivity ;
941 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7947106> ; 948 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7947106> ;
942 . 949 .
943 -:D
944 - rdf:type :WellServicesWorkType ;
945 - rdfs:comment "A Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
946 - rdfs:label "D"^^xsd:string ;
947 -.
948 :DailyRepeatPeriod 950 :DailyRepeatPeriod
949 rdf:type owl:Class ; 951 rdf:type owl:Class ;
950 rdfs:comment "A Period that is repeated every day."^^xsd:string ; 952 rdfs:comment "A Period that is repeated every day."^^xsd:string ;
...@@ -1023,10 +1025,6 @@ ...@@ -1023,10 +1025,6 @@
1023 rdf:type :MilestoneType ; 1025 rdf:type :MilestoneType ;
1024 rdfs:label "Design Milestone"^^xsd:string ; 1026 rdfs:label "Design Milestone"^^xsd:string ;
1025 . 1027 .
1026 -:DisasterRecovery
1027 - rdf:type :PlanObjectiveType ;
1028 - rdfs:label "Disaster recovery"^^xsd:string ;
1029 -.
1030 :DisasterRecoveryActivity 1028 :DisasterRecoveryActivity
1031 rdf:type :ActivityObjective ; 1029 rdf:type :ActivityObjective ;
1032 rdf:type owl:Class ; 1030 rdf:type owl:Class ;
...@@ -1040,6 +1038,12 @@ ...@@ -1040,6 +1038,12 @@
1040 rdfs:subClassOf :ClassOfStaffTime ; 1038 rdfs:subClassOf :ClassOfStaffTime ;
1041 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS6811233> ; 1039 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS6811233> ;
1042 . 1040 .
1041 +:DiscoveryDrilling
1042 + rdf:type :WellServicesWorkType ;
1043 + rdfs:comment "A Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
1044 + rdfs:label "Discovery Drilling"^^xsd:string ;
1045 + rdfs:subClassOf :DrillingActivity ;
1046 +.
1043 :DrillCrew 1047 :DrillCrew
1044 rdf:type owl:Class ; 1048 rdf:type owl:Class ;
1045 rdfs:comment "A Responsible group of people working together on a DrillingRig."^^xsd:string ; 1049 rdfs:comment "A Responsible group of people working together on a DrillingRig."^^xsd:string ;
...@@ -1047,20 +1051,30 @@ ...@@ -1047,20 +1051,30 @@
1047 rdfs:subClassOf :Crew ; 1051 rdfs:subClassOf :Crew ;
1048 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS16701510> ; 1052 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS16701510> ;
1049 . 1053 .
1054 +:DrillingActivity
1055 + rdf:type owl:Class ;
1056 + rdfs:label "Drilling activity"^^xsd:string ;
1057 + rdfs:subClassOf :Activity ;
1058 +.
1050 :DrillingAndWellProject 1059 :DrillingAndWellProject
1051 rdf:type :ProjectType ; 1060 rdf:type :ProjectType ;
1052 rdfs:label "Drilling and well project"^^xsd:string ; 1061 rdfs:label "Drilling and well project"^^xsd:string ;
1053 - rdfs:subClassOf :Activity ; 1062 + rdfs:subClassOf :DrillingActivity ;
1054 . 1063 .
1055 :DrillingMilestone 1064 :DrillingMilestone
1056 rdf:type :MilestoneType ; 1065 rdf:type :MilestoneType ;
1057 rdfs:label "Drilling milestone"^^xsd:string ; 1066 rdfs:label "Drilling milestone"^^xsd:string ;
1058 . 1067 .
1068 +:DrillingPlan
1069 + rdf:type owl:Class ;
1070 + rdfs:label "Drilling plan"^^xsd:string ;
1071 + rdfs:subClassOf :PlanForActivity ;
1072 +.
1059 :DrillingProjectType 1073 :DrillingProjectType
1060 rdf:type owl:Class ; 1074 rdf:type owl:Class ;
1061 rdfs:comment "A System Descriptor that describes the Type of Drilling Project."^^xsd:string ; 1075 rdfs:comment "A System Descriptor that describes the Type of Drilling Project."^^xsd:string ;
1062 rdfs:label "Drilling Project Type"^^xsd:string ; 1076 rdfs:label "Drilling Project Type"^^xsd:string ;
1063 - rdfs:subClassOf :SystemDescriptor ; 1077 + rdfs:subClassOf :ClassOfActivity ;
1064 . 1078 .
1065 :DrillingRig 1079 :DrillingRig
1066 rdf:type owl:Class ; 1080 rdf:type owl:Class ;
...@@ -1109,12 +1123,6 @@ ...@@ -1109,12 +1123,6 @@
1109 rdf:type :SystemDescriptor ; 1123 rdf:type :SystemDescriptor ;
1110 rdfs:label "Execution"^^xsd:string ; 1124 rdfs:label "Execution"^^xsd:string ;
1111 . 1125 .
1112 -:ExpenseType
1113 - rdf:type owl:Class ;
1114 - rdfs:comment "A System Descriptor that describes the Type of Expense."^^xsd:string ;
1115 - rdfs:label "Expense Type"^^xsd:string ;
1116 - rdfs:subClassOf :SystemDescriptor ;
1117 -.
1118 :ExternalReference 1126 :ExternalReference
1119 rdf:type owl:Class ; 1127 rdf:type owl:Class ;
1120 rdfs:comment "A Reference Data Item that identifies a specific information object according to an identification scheme of an external application (i.e., other than the ILAP exchange representation itself). An External Reference can be assigned to any ILAP object, such as Activities, Activity Networks, Projects, Successors, Calendars, Calendar Periods, Resources, etc."^^xsd:string ; 1128 rdfs:comment "A Reference Data Item that identifies a specific information object according to an identification scheme of an external application (i.e., other than the ILAP exchange representation itself). An External Reference can be assigned to any ILAP object, such as Activities, Activity Networks, Projects, Successors, Calendars, Calendar Periods, Resources, etc."^^xsd:string ;
...@@ -1272,18 +1280,11 @@ ...@@ -1272,18 +1280,11 @@
1272 rdf:type :DayOfWeek ; 1280 rdf:type :DayOfWeek ;
1273 rdfs:subClassOf :PeriodInTime ; 1281 rdfs:subClassOf :PeriodInTime ;
1274 . 1282 .
1275 -:FunctionalLocation 1283 +:GEAproject
1276 - rdf:type owl:Class ;
1277 - rdfs:comment "A Location that is a logical position, typically used to specify where an Activity takes place, and normally described relative a functional breakdown of areas used for given types of Activities (e.g., the Drilling Are of an oil platform)."^^xsd:string ;
1278 - rdfs:label "Functional location"^^xsd:string ;
1279 - rdfs:subClassOf :Location ;
1280 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS1021182910> ;
1281 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS17211212812> ;
1282 -.
1283 -:GEA
1284 rdf:type :DrillingProjectType ; 1284 rdf:type :DrillingProjectType ;
1285 rdfs:comment "A Drilling Project Type (part of Use Case 2.5.1)"^^xsd:string ; 1285 rdfs:comment "A Drilling Project Type (part of Use Case 2.5.1)"^^xsd:string ;
1286 - rdfs:label "GEA"^^xsd:string ; 1286 + rdfs:label "GEA Project"^^xsd:string ;
1287 + rdfs:subClassOf :Project ;
1287 . 1288 .
1288 :GasExportShutdown 1289 :GasExportShutdown
1289 rdf:type :ShutdownType ; 1290 rdf:type :ShutdownType ;
...@@ -1297,7 +1298,19 @@ ...@@ -1297,7 +1298,19 @@
1297 rdf:type owl:Class ; 1298 rdf:type owl:Class ;
1298 rdfs:comment "A Location that is a geographical position, used to specify the location a Facility or Site, normally specified according to NPD for offshore facilities and BRREG for onshore sites."^^xsd:string ; 1299 rdfs:comment "A Location that is a geographical position, used to specify the location a Facility or Site, normally specified according to NPD for offshore facilities and BRREG for onshore sites."^^xsd:string ;
1299 rdfs:label "Geographic location"^^xsd:string ; 1300 rdfs:label "Geographic location"^^xsd:string ;
1300 - rdfs:subClassOf :Location ; 1301 + rdfs:subClassOf :PointInSpace ;
1302 + rdfs:subClassOf [
1303 + rdf:type owl:Restriction ;
1304 + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1305 + owl:onDataRange xsd:string ;
1306 + owl:onProperty :hasLocationLatitude ;
1307 + ] ;
1308 + rdfs:subClassOf [
1309 + rdf:type owl:Restriction ;
1310 + owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1311 + owl:onDataRange xsd:string ;
1312 + owl:onProperty :hasLocationLongitude ;
1313 + ] ;
1301 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS2225253101> ; 1314 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS2225253101> ;
1302 . 1315 .
1303 :GreenFieldProject 1316 :GreenFieldProject
...@@ -1339,6 +1352,12 @@ ...@@ -1339,6 +1352,12 @@
1339 rdfs:label "Hot work"^^xsd:string ; 1352 rdfs:label "Hot work"^^xsd:string ;
1340 rdfs:subClassOf :Activity ; 1353 rdfs:subClassOf :Activity ;
1341 . 1354 .
1355 +:ILAPtopStructure
1356 + rdf:type owl:Class ;
1357 + rdfs:comment "A Sysem Descriptor that is a (set of) Classifier(s) used to categorize a Plan. The various Classifiers are assigned a value from a set of possible values that are representative for how “things are organized and executed” on the Norwegian Continental Shelf, (other sets of values may be appropriate for other areas of the world)."^^xsd:string ;
1358 + rdfs:label "ILAP Top Structure"^^xsd:string ;
1359 + rdfs:subClassOf owl:Thing ;
1360 +.
1342 :IlapPeriod 1361 :IlapPeriod
1343 rdf:type owl:Class ; 1362 rdf:type owl:Class ;
1344 rdfs:comment "A Period in Time that specifies a given amount of time."^^xsd:string ; 1363 rdfs:comment "A Period in Time that specifies a given amount of time."^^xsd:string ;
...@@ -1383,36 +1402,21 @@ ...@@ -1383,36 +1402,21 @@
1383 rdf:type :SystemDescriptor ; 1402 rdf:type :SystemDescriptor ;
1384 rdfs:label "In operation"^^xsd:string ; 1403 rdfs:label "In operation"^^xsd:string ;
1385 . 1404 .
1386 -:IncreasedRecovery
1387 - rdf:type :PlanObjectiveType ;
1388 - rdfs:label "Increased recovery"^^xsd:string ;
1389 -.
1390 -:IncrementalImprovement
1391 - rdf:type :PlanObjectiveType ;
1392 - rdfs:label "Incremental improvement"^^xsd:string ;
1393 -.
1394 :IndpendentOfOperation 1405 :IndpendentOfOperation
1395 rdf:type :SystemDescriptor ; 1406 rdf:type :SystemDescriptor ;
1396 rdfs:label "Indpendent of operation"^^xsd:string ; 1407 rdfs:label "Indpendent of operation"^^xsd:string ;
1397 . 1408 .
1398 -:InformationInDrillingPlan 1409 +:InjectionProject
1399 - rdf:type :WellInformationInPlan ;
1400 - rdfs:label "Information In Drilling Plan"^^xsd:string ;
1401 -.
1402 -:InformationInWellServicesPlan
1403 - rdf:type :WellInformationInPlan ;
1404 - rdfs:label "Information In Well Services Plan"^^xsd:string ;
1405 -.
1406 -:Injection
1407 rdf:type :DrillingProjectType ; 1410 rdf:type :DrillingProjectType ;
1408 rdfs:comment "A Drilling Project Type (part of Use Case 2.5.1)"^^xsd:string ; 1411 rdfs:comment "A Drilling Project Type (part of Use Case 2.5.1)"^^xsd:string ;
1409 rdfs:label "Injection"^^xsd:string ; 1412 rdfs:label "Injection"^^xsd:string ;
1413 + rdfs:subClassOf :Project ;
1410 . 1414 .
1411 :LicenseBlock 1415 :LicenseBlock
1412 rdf:type owl:Class ; 1416 rdf:type owl:Class ;
1413 rdfs:comment "An Area for a Period of Time that is defined in a License."^^xsd:string ; 1417 rdfs:comment "An Area for a Period of Time that is defined in a License."^^xsd:string ;
1414 rdfs:label "License"^^xsd:string ; 1418 rdfs:label "License"^^xsd:string ;
1415 - rdfs:subClassOf :PhysicalObject ; 1419 + rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ;
1416 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS43166345139> ; 1420 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS43166345139> ;
1417 . 1421 .
1418 :LiftingOperation 1422 :LiftingOperation
...@@ -1424,26 +1428,6 @@ ...@@ -1424,26 +1428,6 @@
1424 rdf:type :ShutdownType ; 1428 rdf:type :ShutdownType ;
1425 rdfs:label "Living quarter shutdown"^^xsd:string ; 1429 rdfs:label "Living quarter shutdown"^^xsd:string ;
1426 . 1430 .
1427 -:Location
1428 - rdf:type owl:Class ;
1429 - rdfs:comment "An Individual that is the location (position) of an Asset."^^xsd:string ;
1430 - rdfs:label "Location"^^xsd:string ;
1431 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS8645837> ;
1432 - rdfs:subClassOf owl:Thing ;
1433 - rdfs:subClassOf [
1434 - rdf:type owl:Restriction ;
1435 - owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1436 - owl:onDataRange xsd:string ;
1437 - owl:onProperty :hasLocationLatitude ;
1438 - ] ;
1439 - rdfs:subClassOf [
1440 - rdf:type owl:Restriction ;
1441 - owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1442 - owl:onDataRange xsd:string ;
1443 - owl:onProperty :hasLocationLongitude ;
1444 - ] ;
1445 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS436813841> ;
1446 -.
1447 :LowCriticalityActivity 1431 :LowCriticalityActivity
1448 rdf:type :Criticality ; 1432 rdf:type :Criticality ;
1449 rdfs:label "Low criticality activity"^^xsd:string ; 1433 rdfs:label "Low criticality activity"^^xsd:string ;
...@@ -1454,20 +1438,17 @@ ...@@ -1454,20 +1438,17 @@
1454 rdfs:label "Low priority"^^xsd:string ; 1438 rdfs:label "Low priority"^^xsd:string ;
1455 rdfs:subClassOf :Activity ; 1439 rdfs:subClassOf :Activity ;
1456 . 1440 .
1457 -:M
1458 - rdf:type :WellServicesWorkType ;
1459 - rdfs:comment "A Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
1460 - rdfs:label "M"^^xsd:string ;
1461 -.
1462 :MainWorkCenter 1441 :MainWorkCenter
1463 rdf:type owl:Class ; 1442 rdf:type owl:Class ;
1464 rdfs:comment "A Work Center where the main part of the activity takes place."^^xsd:string ; 1443 rdfs:comment "A Work Center where the main part of the activity takes place."^^xsd:string ;
1465 rdfs:label "Main work center"^^xsd:string ; 1444 rdfs:label "Main work center"^^xsd:string ;
1466 rdfs:subClassOf :WorkCenter ; 1445 rdfs:subClassOf :WorkCenter ;
1467 . 1446 .
1468 -:ManagedClosedown 1447 +:MaintenanceDrilling
1469 - rdf:type :PlanObjectiveType ; 1448 + rdf:type :WellServicesWorkType ;
1470 - rdfs:label "Managed closedown"^^xsd:string ; 1449 + rdfs:comment "A Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
1450 + rdfs:label "Maintenance Drilling"^^xsd:string ;
1451 + rdfs:subClassOf :DrillingActivity ;
1471 . 1452 .
1472 :ManagedClosedownActivity 1453 :ManagedClosedownActivity
1473 rdf:type :ActivityObjective ; 1454 rdf:type :ActivityObjective ;
...@@ -1536,7 +1517,7 @@ ...@@ -1536,7 +1517,7 @@
1536 rdf:type owl:Class ; 1517 rdf:type owl:Class ;
1537 rdfs:comment "A System Descriptor that describes the Type of Milestone."^^xsd:string ; 1518 rdfs:comment "A System Descriptor that describes the Type of Milestone."^^xsd:string ;
1538 rdfs:label "Milestone type"^^xsd:string ; 1519 rdfs:label "Milestone type"^^xsd:string ;
1539 - rdfs:subClassOf :SystemDescriptor ; 1520 + rdfs:subClassOf owl:Thing ;
1540 . 1521 .
1541 :MiniShutdown 1522 :MiniShutdown
1542 rdf:type :ShutdownType ; 1523 rdf:type :ShutdownType ;
...@@ -1551,6 +1532,13 @@ ...@@ -1551,6 +1532,13 @@
1551 rdf:type :DayOfWeek ; 1532 rdf:type :DayOfWeek ;
1552 rdfs:subClassOf :PeriodInTime ; 1533 rdfs:subClassOf :PeriodInTime ;
1553 . 1534 .
1535 +:MonetaryAmount
1536 + rdf:type owl:Class ;
1537 + rdfs:comment "A Property denoting an expense of something that is a monetary valuation of (1) effort, (2) material, (3) resources, (4) time and utilities consumed, (5) risks incurred, and (6) opportunity forgone in executing an activity. Costs can be both direct and indirect. All expenses are costs, but not all costs (such as those incurred in acquisition of an income-generating asset) are expenses."^^xsd:string ;
1538 + rdfs:label "Monetary Amount"^^xsd:string ;
1539 + rdfs:subClassOf :ClassOfIndividual ;
1540 + owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7945027> ;
1541 +.
1554 :NoMaterialComponents 1542 :NoMaterialComponents
1555 rdf:type :MaterialOrderStatus ; 1543 rdf:type :MaterialOrderStatus ;
1556 rdfs:label "No material components"^^xsd:string ; 1544 rdfs:label "No material components"^^xsd:string ;
...@@ -1601,16 +1589,10 @@ ...@@ -1601,16 +1589,10 @@
1601 rdfs:label "Organization"^^xsd:string ; 1589 rdfs:label "Organization"^^xsd:string ;
1602 rdfs:subClassOf :PersonOrOrganization ; 1590 rdfs:subClassOf :PersonOrOrganization ;
1603 . 1591 .
1604 -:P 1592 +:PartOfTheSurfaceOfTheEarth
1605 - rdf:type :WellServicesWorkType ; 1593 + rdf:type owl:Class ;
1606 - rdfs:comment "A Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ; 1594 + rdfs:label "Part of the surface of the earth"^^xsd:string ;
1607 - rdfs:label "P"^^xsd:string ; 1595 + rdfs:subClassOf :RegionInSpace ;
1608 -.
1609 -:PandA
1610 - rdf:type :DrillingProjectType ;
1611 - rdf:type :WellServicesWorkType ;
1612 - rdfs:comment "A Drilling Project Type and a Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
1613 - rdfs:label "P & A"^^xsd:string ;
1614 . 1596 .
1615 :Pending 1597 :Pending
1616 rdf:type :ActivityStatus ; 1598 rdf:type :ActivityStatus ;
...@@ -1640,50 +1622,17 @@ ...@@ -1640,50 +1622,17 @@
1640 rdfs:subClassOf :PhysicalObject ; 1622 rdfs:subClassOf :PhysicalObject ;
1641 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS4316634537> ; 1623 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS4316634537> ;
1642 . 1624 .
1643 -:Phase
1644 - rdf:type owl:Class ;
1645 - rdfs:comment "A Period that divides the asset lifecycle into parts according to achievement of defined progress or results as basis for making decisions at Decision Gates."^^xsd:string ;
1646 - rdfs:label "Phase"^^xsd:string ;
1647 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS358019> ;
1648 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS380969> ;
1649 - rdfs:subClassOf owl:Thing ;
1650 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS54808339156> ;
1651 -.
1652 :PhysicalLocation 1625 :PhysicalLocation
1653 rdf:type owl:Class ; 1626 rdf:type owl:Class ;
1654 rdfs:comment "A Location that is a physical position within a Geographical Location, typically use to specify the positon of an Asset and specified by coordinates relative to NPD for offshore facilities and BRREG for onshore activities."^^xsd:string ; 1627 rdfs:comment "A Location that is a physical position within a Geographical Location, typically use to specify the positon of an Asset and specified by coordinates relative to NPD for offshore facilities and BRREG for onshore activities."^^xsd:string ;
1655 rdfs:label "Physical location"^^xsd:string ; 1628 rdfs:label "Physical location"^^xsd:string ;
1656 - rdfs:subClassOf :Location ; 1629 + rdfs:subClassOf :PointInSpace ;
1657 . 1630 .
1658 :PhysicalObject 1631 :PhysicalObject
1659 rdf:type owl:Class ; 1632 rdf:type owl:Class ;
1660 rdfs:label "Physical object"^^xsd:string ; 1633 rdfs:label "Physical object"^^xsd:string ;
1661 rdfs:subClassOf :PossibleIndividual ; 1634 rdfs:subClassOf :PossibleIndividual ;
1662 . 1635 .
1663 -:PlanClassifier
1664 - rdf:type owl:Class ;
1665 - rdfs:comment "A Sysem Descriptor that is a (set of) Classifier(s) used to categorize a Plan. The various Classifiers are assigned a value from a set of possible values that are representative for how “things are organized and executed” on the Norwegian Continental Shelf, (other sets of values may be appropriate for other areas of the world)."^^xsd:string ;
1666 - rdfs:label "Plan classifier"^^xsd:string ;
1667 - rdfs:subClassOf :SystemDescriptor ;
1668 -.
1669 -:PlanContentType
1670 - rdf:type owl:Class ;
1671 - rdfs:comment "A Plan Classifier according to content type (typically classified by NORSOK Z-014 PBS codes)."^^xsd:string ;
1672 - rdfs:label "Plan content type"^^xsd:string ;
1673 - rdfs:subClassOf :PlanClassifier ;
1674 -.
1675 -:PlanContractType
1676 - rdf:type owl:Class ;
1677 - rdfs:comment "A Plan Classifier according to type of contract of the Plan."^^xsd:string ;
1678 - rdfs:label "Plan contract type"^^xsd:string ;
1679 - rdfs:subClassOf :PlanClassifier ;
1680 -.
1681 -:PlanExpenseType
1682 - rdf:type owl:Class ;
1683 - rdfs:comment "A Plan Classifier according to type of expense of the Plan."^^xsd:string ;
1684 - rdfs:label "Plan expense type"^^xsd:string ;
1685 - rdfs:subClassOf :PlanClassifier ;
1686 -.
1687 :PlanForActivity 1636 :PlanForActivity
1688 rdf:type owl:Class ; 1637 rdf:type owl:Class ;
1689 rdfs:comment """A Plan that is represented as a network diagram or list of Activities. 1638 rdfs:comment """A Plan that is represented as a network diagram or list of Activities.
...@@ -1742,13 +1691,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1742,13 +1691,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1742 ] ; 1691 ] ;
1743 rdfs:subClassOf [ 1692 rdfs:subClassOf [
1744 rdf:type owl:Restriction ; 1693 rdf:type owl:Restriction ;
1745 - :shouldUseAnyUri "true"^^xsd:boolean ;
1746 - owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1747 - owl:onClass :Phase ;
1748 - owl:onProperty :hasPhaseType ;
1749 - ] ;
1750 - rdfs:subClassOf [
1751 - rdf:type owl:Restriction ;
1752 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 1694 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
1753 owl:onDataRange xsd:dateTime ; 1695 owl:onDataRange xsd:dateTime ;
1754 owl:onProperty :now ; 1696 owl:onProperty :now ;
...@@ -1819,32 +1761,20 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1819,32 +1761,20 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1819 owl:onClass :ScheduleForILAP ; 1761 owl:onClass :ScheduleForILAP ;
1820 owl:onProperty :hasRevisedSchedule ; 1762 owl:onProperty :hasRevisedSchedule ;
1821 ] ; 1763 ] ;
1764 + rdfs:subClassOf [
1765 + rdf:type owl:Restriction ;
1766 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
1767 + owl:onClass :WellInformationPlanType ;
1768 + owl:onProperty :locationOfWelInformation ;
1769 + ] ;
1822 owl:disjointWith :ActivityInPlan ; 1770 owl:disjointWith :ActivityInPlan ;
1823 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7952931> ; 1771 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7952931> ;
1824 . 1772 .
1825 -:PlanGeoArea
1826 - rdf:type owl:Class ;
1827 - rdfs:comment "A Plan Classifier according to geographic area of the Plan"^^xsd:string ;
1828 - rdfs:label "Plan geo area"^^xsd:string ;
1829 - rdfs:subClassOf :PlanClassifier ;
1830 -.
1831 :PlanLevel 1773 :PlanLevel
1832 rdf:type owl:Class ; 1774 rdf:type owl:Class ;
1833 rdfs:comment "A Plan Classifier that classifies Plans according to their level in the planning hierarchy."^^xsd:string ; 1775 rdfs:comment "A Plan Classifier that classifies Plans according to their level in the planning hierarchy."^^xsd:string ;
1834 rdfs:label "Plan Level"^^xsd:string ; 1776 rdfs:label "Plan Level"^^xsd:string ;
1835 - rdfs:subClassOf :ClassOfClassOfActivity ; 1777 + rdfs:subClassOf :ClassOfPlanForActivity ;
1836 -.
1837 -:PlanLifecycleStage
1838 - rdf:type owl:Class ;
1839 - rdfs:comment "A Plan Classifier according to the part(s) of the Asset Lifecycle relevant for the Plan (typically classified by NORSOK Z-014 SAB codes)."^^xsd:string ;
1840 - rdfs:label "Plan lifecycle stage"^^xsd:string ;
1841 - rdfs:subClassOf :PlanClassifier ;
1842 -.
1843 -:PlanObjectiveType
1844 - rdf:type owl:Class ;
1845 - rdfs:comment "A Plan Classifier according to the type of objective of the Plan."^^xsd:string ;
1846 - rdfs:label "Plan objective type"^^xsd:string ;
1847 - rdfs:subClassOf :PlanClassifier ;
1848 . 1778 .
1849 :PlanVersion2forProjectP 1779 :PlanVersion2forProjectP
1850 rdf:type :PlanForILAP ; 1780 rdf:type :PlanForILAP ;
...@@ -1868,7 +1798,20 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1868,7 +1798,20 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1868 rdf:type owl:Class ; 1798 rdf:type owl:Class ;
1869 rdfs:comment "An Application used for generating, analyzing or communicating Data related to Activities, Constraints and Networks."^^xsd:string ; 1799 rdfs:comment "An Application used for generating, analyzing or communicating Data related to Activities, Constraints and Networks."^^xsd:string ;
1870 rdfs:label "Planning application"^^xsd:string ; 1800 rdfs:label "Planning application"^^xsd:string ;
1871 - rdfs:subClassOf :Application ; 1801 + rdfs:subClassOf :SoftwareApplication ;
1802 +.
1803 +:PlugAndAbandon
1804 + rdf:type :DrillingProjectType ;
1805 + rdf:type :WellServicesWorkType ;
1806 + rdfs:comment "A Drilling Project Type and a Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
1807 + rdfs:label "Plug and abandon"^^xsd:string ;
1808 + rdfs:subClassOf :DrillingActivity ;
1809 + rdfs:subClassOf :Project ;
1810 +.
1811 +:PointInSpace
1812 + rdf:type owl:Class ;
1813 + rdfs:label "Point in space"^^xsd:string ;
1814 + rdfs:subClassOf :PossibleIndividual ;
1872 . 1815 .
1873 :PossibleIndividual 1816 :PossibleIndividual
1874 rdf:type owl:Class ; 1817 rdf:type owl:Class ;
...@@ -1888,15 +1831,22 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1888,15 +1831,22 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1888 rdf:type :MilestoneType ; 1831 rdf:type :MilestoneType ;
1889 rdfs:label "Procurement milestone"^^xsd:string ; 1832 rdfs:label "Procurement milestone"^^xsd:string ;
1890 . 1833 .
1891 -:Production 1834 +:ProductionDrilling
1892 - rdf:type :DrillingProjectType ; 1835 + rdf:type :WellServicesWorkType ;
1893 - rdfs:comment "A Drilling Project Type (part of Use Case 2.5.1)"^^xsd:string ; 1836 + rdfs:comment "A Well Services Work Type (part of Use Case 2.5.1)"^^xsd:string ;
1894 - rdfs:label "Production"^^xsd:string ; 1837 + rdfs:label "Production Drilling"^^xsd:string ;
1838 + rdfs:subClassOf :DrillingActivity ;
1895 . 1839 .
1896 :ProductionMilestone 1840 :ProductionMilestone
1897 rdf:type :MilestoneType ; 1841 rdf:type :MilestoneType ;
1898 rdfs:label "Production milestone"^^xsd:string ; 1842 rdfs:label "Production milestone"^^xsd:string ;
1899 . 1843 .
1844 +:ProductionProject
1845 + rdf:type :DrillingProjectType ;
1846 + rdfs:comment "A Drilling Project Type (part of Use Case 2.5.1)"^^xsd:string ;
1847 + rdfs:label "Production"^^xsd:string ;
1848 + rdfs:subClassOf :Project ;
1849 +.
1900 :ProductionShutdown 1850 :ProductionShutdown
1901 rdf:type :ShutdownType ; 1851 rdf:type :ShutdownType ;
1902 rdfs:label "Production shutdown"^^xsd:string ; 1852 rdfs:label "Production shutdown"^^xsd:string ;
...@@ -2103,15 +2053,16 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2103,15 +2053,16 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2103 rdfs:label "Plan project type"^^xsd:string ; 2053 rdfs:label "Plan project type"^^xsd:string ;
2104 rdfs:subClassOf :ClassOfActivity ; 2054 rdfs:subClassOf :ClassOfActivity ;
2105 . 2055 .
2106 -:RadicalChange
2107 - rdf:type :PlanObjectiveType ;
2108 - rdfs:label "Radical change"^^xsd:string ;
2109 -.
2110 :ReadyForExecution 2056 :ReadyForExecution
2111 rdf:type :ActivityStatus ; 2057 rdf:type :ActivityStatus ;
2112 rdfs:label "Ready for execution"^^xsd:string ; 2058 rdfs:label "Ready for execution"^^xsd:string ;
2113 rdfs:subClassOf :PossibleIndividual ; 2059 rdfs:subClassOf :PossibleIndividual ;
2114 . 2060 .
2061 +:RegionInSpace
2062 + rdf:type owl:Class ;
2063 + rdfs:label "Region in space"^^xsd:string ;
2064 + rdfs:subClassOf :PossibleIndividual ;
2065 +.
2115 :Released 2066 :Released
2116 rdf:type :ActivityStatus ; 2067 rdf:type :ActivityStatus ;
2117 rdfs:label "Released"^^xsd:string ; 2068 rdfs:label "Released"^^xsd:string ;
...@@ -2522,7 +2473,14 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2522,7 +2473,14 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2522 rdf:type owl:Class ; 2473 rdf:type owl:Class ;
2523 rdfs:comment "A System Descriptor that describes a Shutdown."^^xsd:string ; 2474 rdfs:comment "A System Descriptor that describes a Shutdown."^^xsd:string ;
2524 rdfs:label "Shutdown Type"^^xsd:string ; 2475 rdfs:label "Shutdown Type"^^xsd:string ;
2525 - rdfs:subClassOf :SystemDescriptor ; 2476 + rdfs:subClassOf :ClassOfActivity ;
2477 +.
2478 +:SoftwareApplication
2479 + rdf:type owl:Class ;
2480 + rdfs:comment "Encoded Artificial Data that creates, manipulates, stores and retrieves Data (adapted from eHow.com)."^^xsd:string ;
2481 + rdfs:label "Software Application"^^xsd:string ;
2482 + rdfs:subClassOf :ClassOfPhysicalObject ;
2483 + owl:equivalentClass <http://data.posccaesar.org/rdl/RDS43165907246> ;
2526 . 2484 .
2527 :StaffTime 2485 :StaffTime
2528 rdf:type owl:Class ; 2486 rdf:type owl:Class ;
...@@ -2596,7 +2554,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2596,7 +2554,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2596 rdfs:subClassOf [ 2554 rdfs:subClassOf [
2597 rdf:type owl:Restriction ; 2555 rdf:type owl:Restriction ;
2598 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 2556 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
2599 - owl:onClass :Availability ; 2557 + owl:onClass :AvailableResource ;
2600 owl:onProperty :hasAvailability ; 2558 owl:onProperty :hasAvailability ;
2601 ] ; 2559 ] ;
2602 rdfs:subClassOf [ 2560 rdfs:subClassOf [
...@@ -2670,31 +2628,31 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2670,31 +2628,31 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2670 rdf:type owl:Restriction ; 2628 rdf:type owl:Restriction ;
2671 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2629 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
2672 owl:onDataRange xsd:decimal ; 2630 owl:onDataRange xsd:decimal ;
2673 - owl:onProperty :hasCost ; 2631 + owl:onProperty :hasCurrentProgress ;
2674 ] ; 2632 ] ;
2675 rdfs:subClassOf [ 2633 rdfs:subClassOf [
2676 rdf:type owl:Restriction ; 2634 rdf:type owl:Restriction ;
2677 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2635 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
2678 owl:onDataRange xsd:decimal ; 2636 owl:onDataRange xsd:decimal ;
2679 - owl:onProperty :hasCurrentProgress ; 2637 + owl:onProperty :hasExpendedCost ;
2680 ] ; 2638 ] ;
2681 rdfs:subClassOf [ 2639 rdfs:subClassOf [
2682 rdf:type owl:Restriction ; 2640 rdf:type owl:Restriction ;
2683 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2641 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
2684 owl:onDataRange xsd:decimal ; 2642 owl:onDataRange xsd:decimal ;
2685 - owl:onProperty :hasExpendedCost ; 2643 + owl:onProperty :hasExpendedQuantity ;
2686 ] ; 2644 ] ;
2687 rdfs:subClassOf [ 2645 rdfs:subClassOf [
2688 rdf:type owl:Restriction ; 2646 rdf:type owl:Restriction ;
2689 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2647 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
2690 owl:onDataRange xsd:decimal ; 2648 owl:onDataRange xsd:decimal ;
2691 - owl:onProperty :hasExpendedQuantity ; 2649 + owl:onProperty :hasManHours ;
2692 ] ; 2650 ] ;
2693 rdfs:subClassOf [ 2651 rdfs:subClassOf [
2694 rdf:type owl:Restriction ; 2652 rdf:type owl:Restriction ;
2695 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 2653 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
2696 owl:onDataRange xsd:decimal ; 2654 owl:onDataRange xsd:decimal ;
2697 - owl:onProperty :hasManHours ; 2655 + owl:onProperty :hasPlannedCost ;
2698 ] ; 2656 ] ;
2699 rdfs:subClassOf [ 2657 rdfs:subClassOf [
2700 rdf:type owl:Restriction ; 2658 rdf:type owl:Restriction ;
...@@ -2741,7 +2699,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2741,7 +2699,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2741 rdfs:subClassOf [ 2699 rdfs:subClassOf [
2742 rdf:type owl:Restriction ; 2700 rdf:type owl:Restriction ;
2743 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 2701 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
2744 - owl:onClass :Availability ; 2702 + owl:onClass :AvailableResource ;
2745 owl:onProperty :hasAvailability ; 2703 owl:onProperty :hasAvailability ;
2746 ] ; 2704 ] ;
2747 rdfs:subClassOf [ 2705 rdfs:subClassOf [
...@@ -2835,14 +2793,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2835,14 +2793,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2835 rdf:type owl:Class ; 2793 rdf:type owl:Class ;
2836 rdfs:comment "A System Descriptor that describes the type of completion of drilling."^^xsd:string ; 2794 rdfs:comment "A System Descriptor that describes the type of completion of drilling."^^xsd:string ;
2837 rdfs:label "Well Completion Type"^^xsd:string ; 2795 rdfs:label "Well Completion Type"^^xsd:string ;
2838 - rdfs:subClassOf :SystemDescriptor ; 2796 + rdfs:subClassOf :ClassOfPhysicalObject ;
2839 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS1713402431> ; 2797 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS1713402431> ;
2840 . 2798 .
2841 -:WellInformationInPlan 2799 +:WellInformationPlanType
2842 - rdf:type owl:Class ; 2800 + rdf:type rdfs:Class ;
2843 - rdfs:comment "A System Descriptor that describes which plan has information about drilling activities."^^xsd:string ; 2801 + rdfs:label "Well information plan type"^^xsd:string ;
2844 - rdfs:label "Well Information In Plan"^^xsd:string ; 2802 + rdfs:subClassOf :ClassOfPlanForActivity ;
2845 - rdfs:subClassOf :SystemDescriptor ;
2846 . 2803 .
2847 :WellIsolationPlan 2804 :WellIsolationPlan
2848 rdf:type owl:Class ; 2805 rdf:type owl:Class ;
...@@ -2854,13 +2811,18 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2854,13 +2811,18 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2854 rdf:type owl:Class ; 2811 rdf:type owl:Class ;
2855 rdfs:comment "A System Descriptor that describes if an isolation plan is required."^^xsd:string ; 2812 rdfs:comment "A System Descriptor that describes if an isolation plan is required."^^xsd:string ;
2856 rdfs:label "Well Isolation Plan Required"^^xsd:string ; 2813 rdfs:label "Well Isolation Plan Required"^^xsd:string ;
2857 - rdfs:subClassOf :SystemDescriptor ; 2814 + rdfs:subClassOf :Activity ;
2815 +.
2816 +:WellServicesPlan
2817 + rdf:type owl:Class ;
2818 + rdfs:label "Well services plan"^^xsd:string ;
2819 + rdfs:subClassOf :PlanForActivity ;
2858 . 2820 .
2859 :WellServicesWorkType 2821 :WellServicesWorkType
2860 rdf:type owl:Class ; 2822 rdf:type owl:Class ;
2861 rdfs:comment "A System Descriptor that describes the type of well services work."^^xsd:string ; 2823 rdfs:comment "A System Descriptor that describes the type of well services work."^^xsd:string ;
2862 rdfs:label "Well Services Work Type"^^xsd:string ; 2824 rdfs:label "Well Services Work Type"^^xsd:string ;
2863 - rdfs:subClassOf :SystemDescriptor ; 2825 + rdfs:subClassOf :ClassOfActivity ;
2864 . 2826 .
2865 :WellTransfer 2827 :WellTransfer
2866 rdf:type :SystemDescriptor ; 2828 rdf:type :SystemDescriptor ;
...@@ -2870,7 +2832,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2870,7 +2832,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2870 rdf:type owl:Class ; 2832 rdf:type owl:Class ;
2871 rdfs:comment "A System Descriptor that describes a Well."^^xsd:string ; 2833 rdfs:comment "A System Descriptor that describes a Well."^^xsd:string ;
2872 rdfs:label "Well Type"^^xsd:string ; 2834 rdfs:label "Well Type"^^xsd:string ;
2873 - rdfs:subClassOf :SystemDescriptor ; 2835 + rdfs:subClassOf :ClassOfPhysicalObject ;
2874 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS16633002> ; 2836 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS16633002> ;
2875 . 2837 .
2876 :Wellbore 2838 :Wellbore
...@@ -2880,11 +2842,16 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2880,11 +2842,16 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2880 rdfs:subClassOf :PhysicalObject ; 2842 rdfs:subClassOf :PhysicalObject ;
2881 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS1714464911> ; 2843 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS1714464911> ;
2882 . 2844 .
2845 +:WirelineActivity
2846 + rdf:type owl:Class ;
2847 + rdfs:label "Wireline activity"^^xsd:string ;
2848 + rdfs:subClassOf :DrillingActivity ;
2849 +.
2883 :WorkCenter 2850 :WorkCenter
2884 rdf:type owl:Class ; 2851 rdf:type owl:Class ;
2885 rdfs:comment "A Location where work is accomplished."^^xsd:string ; 2852 rdfs:comment "A Location where work is accomplished."^^xsd:string ;
2886 rdfs:label "Work center"^^xsd:string ; 2853 rdfs:label "Work center"^^xsd:string ;
2887 - rdfs:subClassOf :Location ; 2854 + rdfs:subClassOf :PersonOrOrganization ;
2888 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS10418236677> ; 2855 owl:equivalentClass <http://data.posccaesar.org/rdl/RDS10418236677> ;
2889 . 2856 .
2890 :WorkOrderPlan 2857 :WorkOrderPlan
...@@ -2925,6 +2892,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2925,6 +2892,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2925 rdfs:comment "A property that gives the availability of a planning object."^^xsd:string ; 2892 rdfs:comment "A property that gives the availability of a planning object."^^xsd:string ;
2926 rdfs:label "available To"^^xsd:string ; 2893 rdfs:label "available To"^^xsd:string ;
2927 . 2894 .
2895 +:carriedOutBy
2896 + rdf:type owl:ObjectProperty ;
2897 + rdfs:domain :WorkOrderPlan ;
2898 + rdfs:label "carried Out By"^^xsd:string ;
2899 + rdfs:range :WorkCenter ;
2900 +.
2928 :correspondsToPlan 2901 :correspondsToPlan
2929 rdf:type owl:ObjectProperty ; 2902 rdf:type owl:ObjectProperty ;
2930 rdfs:comment "A Relationship for tying Plans to the Activity they correspond to (e.g., a Work order on Level 5 is a Plan that corresponds to an Activity on Level 4)."^^xsd:string ; 2903 rdfs:comment "A Relationship for tying Plans to the Activity they correspond to (e.g., a Work order on Level 5 is a Plan that corresponds to an Activity on Level 4)."^^xsd:string ;
...@@ -3055,6 +3028,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3055,6 +3028,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3055 rdfs:comment "A relationship between a planning object and a set of calendars."^^xsd:string ; 3028 rdfs:comment "A relationship between a planning object and a set of calendars."^^xsd:string ;
3056 rdfs:label "has Calendar Set"^^xsd:string ; 3029 rdfs:label "has Calendar Set"^^xsd:string ;
3057 . 3030 .
3031 +:hasCommissioningMilestone
3032 + rdf:type owl:ObjectProperty ;
3033 + rdfs:domain :PlanForActivity ;
3034 + rdfs:label "has commissioning milestone"^^xsd:string ;
3035 + rdfs:range :MilestoneInPlan ;
3036 + rdfs:subPropertyOf :hasMilestone ;
3037 +.
3058 :hasCompletelyFreeFieldDefinition 3038 :hasCompletelyFreeFieldDefinition
3059 rdf:type owl:ObjectProperty ; 3039 rdf:type owl:ObjectProperty ;
3060 rdfs:comment "A relationship between a set fo free fields and the names of the completely freelyfields defined."^^xsd:string ; 3040 rdfs:comment "A relationship between a set fo free fields and the names of the completely freelyfields defined."^^xsd:string ;
...@@ -3070,11 +3050,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3070,11 +3050,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3070 rdfs:comment "A relationship between a planning object and a spatial coordinate."^^xsd:string ; 3050 rdfs:comment "A relationship between a planning object and a spatial coordinate."^^xsd:string ;
3071 rdfs:label "has Coordinate"^^xsd:string ; 3051 rdfs:label "has Coordinate"^^xsd:string ;
3072 . 3052 .
3073 -:hasCost
3074 - rdf:type owl:DatatypeProperty ;
3075 - rdfs:comment "A property that gives the cost of a planning object."^^xsd:string ;
3076 - rdfs:label "has Cost"^^xsd:string ;
3077 -.
3078 :hasCurrentProgress 3053 :hasCurrentProgress
3079 rdf:type owl:DatatypeProperty ; 3054 rdf:type owl:DatatypeProperty ;
3080 rdfs:comment "A property that gives the current progress of a planning object. "^^xsd:string ; 3055 rdfs:comment "A property that gives the current progress of a planning object. "^^xsd:string ;
...@@ -3242,6 +3217,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3242,6 +3217,13 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3242 rdfs:label "has Schedule"^^xsd:string ; 3217 rdfs:label "has Schedule"^^xsd:string ;
3243 rdfs:subPropertyOf :hasSchedule ; 3218 rdfs:subPropertyOf :hasSchedule ;
3244 . 3219 .
3220 +:hasLocation
3221 + rdf:type owl:ObjectProperty ;
3222 + rdfs:comment "A Location that is a logical position, typically used to specify where an Activity takes place, and normally described relative a functional breakdown of areas used for given types of Activities (e.g., the Drilling Are of an oil platform)."^^xsd:string ;
3223 + rdfs:domain :Activity ;
3224 + rdfs:label "has location"^^xsd:string ;
3225 + rdfs:range :PossibleIndividual ;
3226 +.
3245 :hasLocationLatitude 3227 :hasLocationLatitude
3246 rdf:type owl:DatatypeProperty ; 3228 rdf:type owl:DatatypeProperty ;
3247 rdfs:comment "A Property that holds the Latitude of a Location."^^xsd:string ; 3229 rdfs:comment "A Property that holds the Latitude of a Location."^^xsd:string ;
...@@ -3275,6 +3257,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3275,6 +3257,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3275 rdfs:comment "The Activity Must Finish On this date. This corresponds to Fixed Finish in Safran. "^^xsd:string ; 3257 rdfs:comment "The Activity Must Finish On this date. This corresponds to Fixed Finish in Safran. "^^xsd:string ;
3276 rdfs:label "has MFO Date"^^xsd:string ; 3258 rdfs:label "has MFO Date"^^xsd:string ;
3277 . 3259 .
3260 +:hasMilestone
3261 + rdf:type owl:ObjectProperty ;
3262 + rdfs:domain :PlanForActivity ;
3263 + rdfs:label "has milestone"^^xsd:string ;
3264 + rdfs:range :MilestoneInPlan ;
3265 +.
3278 :hasMsoDate 3266 :hasMsoDate
3279 rdf:type owl:DatatypeProperty ; 3267 rdf:type owl:DatatypeProperty ;
3280 rdfs:comment "The Activity Must Start On this date. This corresponds to Fixed Start in Safran."^^xsd:string ; 3268 rdfs:comment "The Activity Must Start On this date. This corresponds to Fixed Start in Safran."^^xsd:string ;
...@@ -3328,11 +3316,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3328,11 +3316,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3328 rdfs:comment "A relationship between a planning object and a time period."^^xsd:string ; 3316 rdfs:comment "A relationship between a planning object and a time period."^^xsd:string ;
3329 rdfs:label "has Period"^^xsd:string ; 3317 rdfs:label "has Period"^^xsd:string ;
3330 . 3318 .
3331 -:hasPhaseType
3332 - rdf:type owl:ObjectProperty ;
3333 - rdfs:comment "A relationship between a planning object and a type of Phase."^^xsd:string ;
3334 - rdfs:label "has Phase Type"^^xsd:string ;
3335 -.
3336 :hasPhysicalPercentComplete 3319 :hasPhysicalPercentComplete
3337 rdf:type owl:DatatypeProperty ; 3320 rdf:type owl:DatatypeProperty ;
3338 rdfs:label "has Physical Percent Complete"^^xsd:string ; 3321 rdfs:label "has Physical Percent Complete"^^xsd:string ;
...@@ -3382,6 +3365,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3382,6 +3365,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3382 rdfs:comment "A relationship between a planning object and a time period."^^xsd:string ; 3365 rdfs:comment "A relationship between a planning object and a time period."^^xsd:string ;
3383 rdfs:label "has Plan Type"^^xsd:string ; 3366 rdfs:label "has Plan Type"^^xsd:string ;
3384 . 3367 .
3368 +:hasPlannedCost
3369 + rdf:type owl:ObjectProperty ;
3370 + rdfs:comment "A property that gives the cost of a planning object."^^xsd:string ;
3371 + rdfs:label "has Planned Cost"^^xsd:string ;
3372 +.
3385 :hasPlannedDiscipline 3373 :hasPlannedDiscipline
3386 rdf:type owl:ObjectProperty ; 3374 rdf:type owl:ObjectProperty ;
3387 rdfs:domain :ResourceInPlan ; 3375 rdfs:domain :ResourceInPlan ;
...@@ -3686,6 +3674,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3686,6 +3674,11 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3686 rdfs:comment "A property that gives the Y coordinate of a planning object."^^xsd:string ; 3674 rdfs:comment "A property that gives the Y coordinate of a planning object."^^xsd:string ;
3687 rdfs:label "has Y"^^xsd:string ; 3675 rdfs:label "has Y"^^xsd:string ;
3688 . 3676 .
3677 +:hasZ
3678 + rdf:type owl:DatatypeProperty ;
3679 + rdfs:comment "A property that gives the Z coordinate of a planning object."^^xsd:string ;
3680 + rdfs:label "has z"^^xsd:string ;
3681 +.
3689 :identifiedByLiteral 3682 :identifiedByLiteral
3690 rdf:type owl:DatatypeProperty ; 3683 rdf:type owl:DatatypeProperty ;
3691 rdfs:domain owl:Thing ; 3684 rdfs:domain owl:Thing ;
...@@ -3738,6 +3731,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -3738,6 +3731,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
3738 rdfs:label "Level 6 - Contractor Operations Schedule"^^xsd:string ; 3731 rdfs:label "Level 6 - Contractor Operations Schedule"^^xsd:string ;
3739 rdfs:subClassOf :PlanForActivity ; 3732 rdfs:subClassOf :PlanForActivity ;
3740 . 3733 .
3734 +:locationOfWelInformation
3735 + rdf:type owl:ObjectProperty ;
3736 + rdfs:domain :PlanForActivity ;
3737 + rdfs:label "location of wel information"^^xsd:string ;
3738 + rdfs:range :WellInformationPlanType ;
3739 +.
3741 :mustStartAlap 3740 :mustStartAlap
3742 rdf:type owl:DatatypeProperty ; 3741 rdf:type owl:DatatypeProperty ;
3743 rdfs:comment "The Activity should start as late as possible. This is ignored in Safran. "^^xsd:string ; 3742 rdfs:comment "The Activity should start as late as possible. This is ignored in Safran. "^^xsd:string ;
......