SCHEMA_EP-ACTIVITY-v1.0.ttl
60.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
# baseURI: http://www.reportinghub.no/ep/schema/1.0/activity
# imports: http://www.reportinghub.no/ep/schema/1.0/core
# imports: http://www.reportinghub.no/ep/schema/1.0/equipment
# imports: http://www.reportinghub.no/ep/schema/1.0/facility
# imports: http://www.reportinghub.no/ep/schema/1.0/material
# imports: http://www.reportinghub.no/ep/schema/1.0/organization
# imports: http://www.reportinghub.no/ep/schema/1.0/report
# imports: http://www.reportinghub.no/ep/schema/1.0/well
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ep-activity: <http://www.reportinghub.no/ep/schema/activity#> .
@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/1.0/activity>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/core> ;
owl:versionInfo "0.1.0"^^xsd:string .
ep-activity:Activity
rdf:type owl:Class ;
rdfs:comment "An [activity] is a [possible_individual] that brings about change by causing the [event] that marks the [beginning], or the [event] that marks the [ending] of a [possible_individual]. An activity consists of the temporal parts of those members of [possible_individual] that participate in the activity. The participating temporal parts will be classified by the [participating_role_and_domain] that indicates the role of the temporal part in the [activity]."^^xsd:string ;
rdfs:label "Activity"^^xsd:string ;
rdfs:subClassOf ep-core:PhysicalThing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:startedAt
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:finishedAt
] .
ep-activity:ActivitySuccessType
rdf:type rdfs:Class ;
rdfs:comment "class of activity on the basis of its success or failure"^^xsd:string ;
rdfs:label "activity success type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:DailyDrillingActivity
rdf:type owl:Class ;
rdfs:comment "drilling activity that consists of all that is done in order to drill a well during one day"^^xsd:string ;
rdfs:label "daily drilling activity"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:Activity ;
owl:onProperty ep-core:hasPart
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ;
owl:onProperty ep-activity:onWellBore
] .
ep-activity:DailyDrillingActivityToStatus
rdf:type owl:Class ;
rdfs:comment "drilling activity that consists of all that is done in order to drill a well during one day up to the time that a status report is issued"^^xsd:string ;
rdfs:label "daily drilling activity to status"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:Activity ;
owl:onProperty ep-core:hasPart
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ;
owl:onProperty ep-activity:onWellBore
] .
ep-activity:DailyProductionActivity
rdf:type owl:Class ;
rdfs:label "daily production activity"^^xsd:string ;
rdfs:subClassOf ep-activity:ProductionActivity .
ep-activity:Drill-bypass
rdf:type ep-activity:WellBoreDrillingType ;
rdfs:label "drill - bypass"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:Drill-initial
rdf:type ep-activity:WellBoreDrillingType ;
rdfs:label "drill - initial"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:Drill-redrill
rdf:type ep-activity:WellBoreDrillingType ;
rdfs:label "drill - redrill"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:Drill-reentry
rdf:type ep-activity:WellBoreDrillingType ;
rdfs:label "drill - reentry"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:Drill-respud
rdf:type ep-activity:WellBoreDrillingType ;
rdfs:label "drill - respud"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:Drill-sidetrack
rdf:type ep-activity:WellBoreDrillingType ;
rdfs:label "drill - sidetrack"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillStemTest
rdf:type owl:Class , ep-activity:WellTestType ;
rdfs:comment "a well test that is intended to determine the productive capacity, pressure, permeability or extent (or a combination of these) of a hydrocarbon reservoir, with the drillstring still in the hole"^^xsd:string ;
rdfs:label "drill stem test"^^xsd:string ;
rdfs:subClassOf ep-activity:WellTest ;
owl:disjointWith ep-activity:ProductionTest .
ep-activity:DrillingActivity
rdf:type owl:Class ;
rdfs:comment "activity that is carried out in order to drill a well"^^xsd:string ;
rdfs:label "Drilling activity"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:DrillingActivity-bop_test
rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ;
rdfs:comment "drilling activity that is a test of a BOP (Blow-Out Preventer) and related well control equipment and systems"^^xsd:string ;
rdfs:label "drilling activity - BOP test"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-circulation_loss
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because of the loss of circulation fluid to the surrounding rock formation"^^xsd:string ;
rdfs:label "drilling activity - circulation loss"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-coiled_tubing
rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ;
rdfs:comment "drilling activity that is performed using a coiled tubing string and associated equipment. The drilling activity can be a well intervention, drilling or workover."^^xsd:string ;
rdfs:label "drilling activity - coiled tubing"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-equipment_failure
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because of an equipment failure"^^xsd:string ;
rdfs:label "drilling activity - equipment failure"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-equipment_hang
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because of an equipment hang"^^xsd:string ;
rdfs:label "drilling activity - equipment hang"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-fixed_equipment
rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ;
rdfs:comment "drilling activity that is performed using traditional types of drilling equipment and techniques, such a permanently installed and fixed rig and equipment. The drilling activity can be drilling, completion, well-intervention or workover."^^xsd:string ;
rdfs:label "drilling activity - fixed equipment"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-injury
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because of an injury"^^xsd:string ;
rdfs:label "drilling activity- injury"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-kick
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because of fluid within the surrounding rock formation invading the wellbore"^^xsd:string ;
rdfs:label "drilling activity - operation kick"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-mud_loss
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because circulation is prevented by plugging or a failure of equipment"^^xsd:string ;
rdfs:label "drilling activity - mud loss"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-operation_failed
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails"^^xsd:string ;
rdfs:label "drilling activity - operation failed"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-snubbing
rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ;
rdfs:comment "drilling activity that is snubbing and that is performed by equipment not permanently installed on the platform"^^xsd:string ;
rdfs:label "drilling activity - snubbing"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-stuck_equipment
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that fails because of equipment stuck in a wellbore"^^xsd:string ;
rdfs:label "drilling activity - stuck equipment"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-success
rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ;
rdfs:comment "drilling activity that succeeds"^^xsd:string ;
rdfs:label "drilling activity - success"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivity-wire_line
rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ;
rdfs:comment "drilling activity that is carried out using a single- or mult-strand wire or cable. The activity can be logging or intervention."^^xsd:string ;
rdfs:label "drilling activity - wireline"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:DrillingActivityOutcomeType
rdf:type rdfs:Class ;
rdfs:comment "class of drilling activity on the basis of its success or reason for failure"^^xsd:string ;
rdfs:label "drilling activity outcome type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:DrillingActivityTypeAccordingToEquipmentType
rdf:type rdfs:Class ;
rdfs:comment "class of drilling activity on the basis of the equipment type used"^^xsd:string ;
rdfs:label "drilling activity type according to equipment type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:EquipmentFailureAndRepair
rdf:type owl:Class ;
rdfs:comment "activity that is the failure and subsequent repair of an equipment item"^^xsd:string ;
rdfs:label "equipment failure and repair"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:ExtractAWellCore
rdf:type owl:Class ;
rdfs:comment "activity that is intended to extract a well core"^^xsd:string ;
rdfs:label "extract a well core"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:FailedActivity
rdf:type owl:Class , ep-activity:ActivitySuccessType ;
rdfs:comment "activity that fails"^^xsd:string ;
rdfs:label "failed activity"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity ;
owl:disjointWith ep-activity:SuccessfulActivity .
ep-activity:FluidReading
rdf:type owl:Class ;
rdfs:comment "activity that is intended to measure properties of a drilling fluid"^^xsd:string ;
rdfs:label "fluid reading"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:FormationIntegrityTest
rdf:type owl:Class , ep-activity:PressureTestType ;
rdfs:label "formation integrity test"^^xsd:string ;
rdfs:subClassOf ep-activity:WellBorePressureTest ;
owl:disjointWith ep-activity:LeakOffTest .
ep-activity:GasReading
rdf:type owl:Class ;
rdfs:comment "activity that is intended to measure properties of a drilling gas"^^xsd:string ;
rdfs:label "gas reading"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:GasReading-circulating_background_gas
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that is of the circulating background gas"^^xsd:string ;
rdfs:label "gas reading circulating background gas"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-trip_gas , ep-activity:GasReading-shut_down_gas , ep-activity:GasReading-other , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-connection_gas , ep-activity:GasReading-no_readings .
ep-activity:GasReading-connection_gas
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that is of the connection gas"^^xsd:string ;
rdfs:label "gas reading connection gas"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-shut_down_gas , ep-activity:GasReading-trip_gas , ep-activity:GasReading-other , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-no_readings .
ep-activity:GasReading-drilling_background_gas
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that is of the drilling background gas"^^xsd:string ;
rdfs:label "gas reading drilling background gas"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-other , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-trip_gas , ep-activity:GasReading-connection_gas , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-shut_down_gas , ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-no_readings .
ep-activity:GasReading-drilling_gas_peak
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that is of the drilling gas peak"^^xsd:string ;
rdfs:label "gas reading drilling gas peak"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-other , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-connection_gas , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-no_readings , ep-activity:GasReading-trip_gas , ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-shut_down_gas .
ep-activity:GasReading-flow_check_gas
rdf:type owl:Class , ep-activity:GasReadingType ;
rdfs:comment "gas reading that is of the flow check gas"^^xsd:string ;
rdfs:label "gas reading flow check gas"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-no_readings , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-trip_gas , ep-activity:GasReading-shut_down_gas , ep-activity:GasReading-connection_gas , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-other , ep-activity:GasReading-circulating_background_gas .
ep-activity:GasReading-no_readings
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that fails to obtain any data"^^xsd:string ;
rdfs:label "gas reading no readings"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-shut_down_gas , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-other , ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-trip_gas , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-connection_gas , ep-activity:GasReading-drilling_gas_peak .
ep-activity:GasReading-other
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that is of a type not enumerated within the DDR XML schema"^^xsd:string ;
rdfs:label "gas reading other"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-connection_gas , ep-activity:GasReading-no_readings , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-trip_gas , ep-activity:GasReading-shut_down_gas .
ep-activity:GasReading-shut_down_gas
rdf:type ep-activity:GasReadingType , owl:Class ;
rdfs:comment "gas reading that is of shut down gas"^^xsd:string ;
rdfs:label "gas reading shut down gas"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-trip_gas , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-flow_check_gas , ep-activity:GasReading-no_readings , ep-activity:GasReading-other , ep-activity:GasReading-connection_gas .
ep-activity:GasReading-trip_gas
rdf:type owl:Class , ep-activity:GasReadingType ;
rdfs:comment "gas reading that is of trip gas"^^xsd:string ;
rdfs:label "gas reading trip gas"^^xsd:string ;
rdfs:subClassOf ep-activity:GasReading ;
owl:disjointWith ep-activity:GasReading-other , ep-activity:GasReading-drilling_gas_peak , ep-activity:GasReading-connection_gas , ep-activity:GasReading-shut_down_gas , ep-activity:GasReading-circulating_background_gas , ep-activity:GasReading-drilling_background_gas , ep-activity:GasReading-no_readings , ep-activity:GasReading-flow_check_gas .
ep-activity:GasReadingType
rdf:type rdfs:Class ;
rdfs:comment "class of gas reading"^^xsd:string ;
rdfs:label "gas reading type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:LeakOffTest
rdf:type owl:Class , ep-activity:PressureTestType ;
rdfs:label "leak-off test"^^xsd:string ;
rdfs:subClassOf ep-activity:WellBorePressureTest ;
owl:disjointWith ep-activity:FormationIntegrityTest .
ep-activity:LithologyAndShowsObservation
rdf:type owl:Class ;
rdfs:comment "activity that is intended to observe lithology and shows"^^xsd:string ;
rdfs:label "lithology and shows observation"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:MonthlyDrillingActivity
rdf:type owl:Class ;
rdfs:comment "drilling activity that consists of all that is done in order to drill a well during one month"^^xsd:string ;
rdfs:label "monthly drilling activity"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:WeeklyDrillingActivity ;
owl:onProperty ep-activity:hasSubActivity
] .
ep-activity:OffshoreActivity
rdf:type owl:Class ;
rdfs:label "Offshore activity"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:OffshoreWellActivity
rdf:type owl:Class ;
rdfs:label "Offshore well activity"^^xsd:string ;
rdfs:subClassOf ep-activity:OffshoreActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#Well> ;
owl:onProperty ep-activity:onWell
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:onWell
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty ep-activity:onRig
] .
ep-activity:OpenPerforationInterval
rdf:type owl:Class ;
rdfs:comment "activity that is intended to open a perforation interval"^^xsd:string ;
rdfs:label "open perforation interval"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:PorePressureDetermination
rdf:type owl:Class ;
rdfs:comment "activity that is intended to determine pore pressure"^^xsd:string ;
rdfs:label "pore pressure determination"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:PorePressureDeterminationType
rdf:type rdfs:Class ;
rdfs:comment "class of pore pressure determination on the basis of whether it is an estimation or a measurement"^^xsd:string ;
rdfs:label "pore pressure determination type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:PorePressureEstimation
rdf:type owl:Class , ep-activity:PorePressureDeterminationType ;
rdfs:comment "pore pressure determination that is an estimation"^^xsd:string ;
rdfs:label "pore pressure estimation"^^xsd:string ;
rdfs:subClassOf ep-activity:PorePressureDetermination ;
owl:disjointWith ep-activity:PorePressureMeasurement .
ep-activity:PorePressureMeasurement
rdf:type owl:Class , ep-activity:PorePressureDeterminationType ;
rdfs:comment "pore pressure determination that is a measurement"^^xsd:string ;
rdfs:label "pore pressure measurement"^^xsd:string ;
rdfs:subClassOf ep-activity:PorePressureDetermination ;
owl:disjointWith ep-activity:PorePressureEstimation .
ep-activity:PreliminaryZonation
rdf:type owl:Class ;
rdfs:comment "activity that is intended to establish a preliminary zonation"^^xsd:string ;
rdfs:label "preliminary zonation"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:PressureTestType
rdf:type rdfs:Class ;
rdfs:comment "class of pressure test on the basis of what is tested"^^xsd:string ;
rdfs:label "pressure test type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:ProductionActivity
rdf:type owl:Class ;
rdfs:comment "activity that is all or part of what is done to produce oil or gas"^^xsd:string ;
rdfs:label "Production activity"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:ProductionActivityToDate
rdf:type owl:Class ;
rdfs:label "production activity to date"^^xsd:string ;
rdfs:subClassOf ep-activity:ProductionActivity .
ep-activity:ProductionTest
rdf:type owl:Class , ep-activity:WellTestType ;
rdfs:comment "a well test that is intended to determine the daily rate of oil, gas, and water production from a (potential) reservoir"^^xsd:string ;
rdfs:label "production test"^^xsd:string ;
rdfs:subClassOf ep-activity:WellTest ;
owl:disjointWith ep-activity:DrillStemTest .
ep-activity:SuccessfulActivity
rdf:type owl:Class , ep-activity:ActivitySuccessType ;
rdfs:comment "activity that succeeds"^^xsd:string ;
rdfs:label "successful activity"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity ;
owl:disjointWith ep-activity:FailedActivity .
ep-activity:WeeklyDrillingActivity
rdf:type owl:Class ;
rdfs:comment "drilling activity that consists of all that is done in order to drill a well during one week"^^xsd:string ;
rdfs:label "weekly drilling activity"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:DailyDrillingActivity ;
owl:onProperty ep-activity:hasSubActivity
] .
ep-activity:WeeklyProductionActivity
rdf:type owl:Class ;
rdfs:label "weekly production activity"^^xsd:string ;
rdfs:subClassOf ep-activity:ProductionActivity .
ep-activity:WellBoreBitOperation-withinReportingPeriod
rdf:type owl:Class ;
rdfs:comment "the parts of the runs for a single drill bit that are within a reporting period"^^xsd:string ;
rdfs:label "wellbore bit operation (within reporting period)"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:WellBoreBitRunDrilling
rdf:type owl:Class ;
rdfs:comment "all or part of a drill bit run - possibly within more than one reporting period"^^xsd:string ;
rdfs:label "wellbore bit run drilling"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:WellBoreBitRunDrilling-withinReportingPeriod
rdf:type owl:Class ;
rdfs:comment "all or part of a drill bit run - within one reporting period"^^xsd:string ;
rdfs:label "wellbore bit run drilling (within reporting period)"^^xsd:string ;
rdfs:subClassOf ep-activity:WellBoreBitRunDrilling .
ep-activity:WellBoreDirectionalSurvey
rdf:type owl:Class ;
rdfs:comment "activity that is a wellbore directional survey"^^xsd:string ;
rdfs:label "well bore directional survey"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellBoreDrillingType
rdf:type rdfs:Class ;
rdfs:comment "class of wellbore drilling on the basis of the role of the wellbore"^^xsd:string ;
rdfs:label "well bore drilling type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellBoreLogRun
rdf:type owl:Class ;
rdfs:comment "activity that is a welbore log run"^^xsd:string ;
rdfs:label "well bore logging"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellBorePressureTest
rdf:type owl:Class ;
rdfs:comment "activity that is a wellbore pressure test"^^xsd:string ;
rdfs:label "well bore pressure test"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellBoreReportingPeriodDrilling
rdf:type owl:Class ;
rdfs:comment "the parts of the runs for all bits that are within a reporting period"^^xsd:string ;
rdfs:label "wellbore reporting period drilling"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:WellCementJob
rdf:type owl:Class ;
rdfs:comment "activity that is a well cement job"^^xsd:string ;
rdfs:label "well cement job"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellCementJob-other
rdf:type owl:Class , ep-activity:WellCementJobPurposeType ;
rdfs:comment "well cement job that is of a type not enumerated within the DDR XML schema"^^xsd:string ;
rdfs:label "well cement job other"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJob-squeeze , ep-activity:WellCementJob-primary , ep-activity:WellCementJob-plug .
ep-activity:WellCementJob-plug
rdf:type owl:Class , ep-activity:WellCementJobPurposeType ;
rdfs:comment "well cement job that is intended to plug"^^xsd:string ;
rdfs:label "well cement job plug"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob .
ep-activity:WellCementJob-primary
rdf:type owl:Class , ep-activity:WellCementJobPurposeType ;
rdfs:comment "well cement job that is primary"^^xsd:string ;
rdfs:label "well cement job primary"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob .
ep-activity:WellCementJob-squeeze
rdf:type owl:Class , ep-activity:WellCementJobPurposeType ;
rdfs:comment "well cement job that is intended to squeeze"^^xsd:string ;
rdfs:label "well cement job squeeze"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob .
ep-activity:WellCementJobBottomPlugType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of whether or not it has a bottom plug"^^xsd:string ;
rdfs:label "well cement job bottom plug type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobCasingReciprocationType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of whether or not it has casing reciprocation"^^xsd:string ;
rdfs:label "well cement job casing reciprocation type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobCasingRotationType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of whether or not it has casing rotation"^^xsd:string ;
rdfs:label "well cement job casing rotation type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobFloatHoldingType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of whether or not it has float holding"^^xsd:string ;
rdfs:label "well cement job float holding type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobPlugBumpingType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of whether or not it has plug bumping"^^xsd:string ;
rdfs:label "well cement job plug bumping type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobPressureRelease
rdf:type owl:Class ;
rdfs:comment "activity that is a release of pressure within a well cement job"^^xsd:string ;
rdfs:label "well cement job pressure release"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellCementJobPurposeType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of the purpose of the job"^^xsd:string ;
rdfs:label "well cement job purpose type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobTopPlugType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement job on the basis of whether or not it has a top plug"^^xsd:string ;
rdfs:label "well cement job top plug type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementJobWithBottomPlug
rdf:type owl:Class , ep-activity:WellCementJobBottomPlugType ;
rdfs:comment "well cement job that has a bottom plug"^^xsd:string ;
rdfs:label "well cement job with bottom plug"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithoutBottomPlug .
ep-activity:WellCementJobWithCasingReciprocation
rdf:type owl:Class , ep-activity:WellCementJobCasingReciprocationType ;
rdfs:comment "well cement job that has casing reciprocation"^^xsd:string ;
rdfs:label "well cement job with casing reciprocation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithoutCasingReciprocation .
ep-activity:WellCementJobWithCasingRotation
rdf:type owl:Class , ep-activity:WellCementJobCasingRotationType ;
rdfs:comment "well cement job that has casing rotation"^^xsd:string ;
rdfs:label "well cement job with casing rotation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithoutTopPlug .
ep-activity:WellCementJobWithFloatHolding
rdf:type owl:Class , ep-activity:WellCementJobFloatHoldingType ;
rdfs:comment "well cement job that has float holding"^^xsd:string ;
rdfs:label "well cement job with float holding"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithoutFloatHolding .
ep-activity:WellCementJobWithPlugBumping
rdf:type owl:Class , ep-activity:WellCementJobPlugBumpingType ;
rdfs:comment "well cement job that has plug bumping"^^xsd:string ;
rdfs:label "well cement job with plug bumping"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithoutBottomPlug .
ep-activity:WellCementJobWithTopPlug
rdf:type owl:Class , ep-activity:WellCementJobTopPlugType ;
rdfs:comment "well cement job that has a top plug"^^xsd:string ;
rdfs:label "well cement job with top plug"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithoutTopPlug .
ep-activity:WellCementJobWithoutBottomPlug
rdf:type owl:Class , ep-activity:WellCementJobBottomPlugType ;
rdfs:comment "well cement job that does not have a bottom plug"^^xsd:string ;
rdfs:label "well cement job without bottom plug"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithBottomPlug .
ep-activity:WellCementJobWithoutCasingReciprocation
rdf:type owl:Class , ep-activity:WellCementJobCasingReciprocationType ;
rdfs:comment "well cement job that does not have casing reciprocation"^^xsd:string ;
rdfs:label "well cement job without casing reciprocation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithCasingRotation .
ep-activity:WellCementJobWithoutCasingRotation
rdf:type owl:Class , ep-activity:WellCementJobCasingRotationType ;
rdfs:comment "well cement job that does not have casing rotation"^^xsd:string ;
rdfs:label "well cement job without casing rotation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithCasingRotation .
ep-activity:WellCementJobWithoutFloatHolding
rdf:type owl:Class , ep-activity:WellCementJobFloatHoldingType ;
rdfs:comment "well cement job that does not have float holding"^^xsd:string ;
rdfs:label "well cement job without float holding"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithFloatHolding .
ep-activity:WellCementJobWithoutPlugBumping
rdf:type owl:Class , ep-activity:WellCementJobPlugBumpingType ;
rdfs:comment "well cement job that does not have plug bumping"^^xsd:string ;
rdfs:label "well cement job without plug bumping"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithBottomPlug .
ep-activity:WellCementJobWithoutTopPlug
rdf:type owl:Class , ep-activity:WellCementJobTopPlugType ;
rdfs:comment "well cement job that does not have a top plug"^^xsd:string ;
rdfs:label "well cement job without top plug"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementJob ;
owl:disjointWith ep-activity:WellCementJobWithTopPlug .
ep-activity:WellCementPumping
rdf:type owl:Class ;
rdfs:comment "activity that is the pumping of well cement"^^xsd:string ;
rdfs:label "well cement pumping"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellCementPumpingFluidReturnType
rdf:type rdfs:Class ;
rdfs:comment "class of well cement pumping on the basis of whether or not it has fluid return"^^xsd:string ;
rdfs:label "well cement pumping fluid return type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellCementPumpingWithFluidReturn
rdf:type owl:Class , ep-activity:WellCementPumpingFluidReturnType ;
rdfs:comment "well cement pumping that has fluid return"^^xsd:string ;
rdfs:label "well cement pumping with fluid return"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementPumping ;
owl:disjointWith ep-activity:WellCementPumpingWithoutFluidReturn .
ep-activity:WellCementPumpingWithoutFluidReturn
rdf:type owl:Class , ep-activity:WellCementPumpingFluidReturnType ;
rdfs:comment "well cement pumping that does not have fluid return"^^xsd:string ;
rdfs:label "well cement pumping without fluid return"^^xsd:string ;
rdfs:subClassOf ep-activity:WellCementPumping ;
owl:disjointWith ep-activity:WellCementPumpingWithFluidReturn .
ep-activity:WellCompletion
rdf:type owl:Class ;
rdfs:comment "The activity associated with a casing-liner-tubing_run is described in the DDR schema as \"Job stage for a well stimulation treatment, where one or more stages are part of a flow path, one or more flow paths are part of a treatment, and one or more treatments are part of a job.\" Therefore the class should be called \"WellStimulationTreatmentJobStage\" rather than \"WellCompletion\"."^^xsd:string ;
rdfs:label "well completion"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellControlIncident
rdf:type owl:Class ;
rdfs:comment "activity that is a well control incident"^^xsd:string ;
rdfs:label "well control incident"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellControlIncident-gas_kick
rdf:type owl:Class , ep-activity:WellControlIncidentType ;
rdfs:comment "well control incident that is a gas kick"^^xsd:string ;
rdfs:label "well control incident gas kick"^^xsd:string ;
rdfs:subClassOf ep-activity:WellControlIncident ;
owl:disjointWith ep-activity:WellControlIncident-water_kick , ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-oil_kick .
ep-activity:WellControlIncident-oil_kick
rdf:type owl:Class , ep-activity:WellControlIncidentType ;
rdfs:comment "well control incident that is an oil kick"^^xsd:string ;
rdfs:label "well control incident oil kick"^^xsd:string ;
rdfs:subClassOf ep-activity:WellControlIncident ;
owl:disjointWith ep-activity:WellControlIncident-water_kick , ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-gas_kick .
ep-activity:WellControlIncident-shallow_gas_kick
rdf:type owl:Class , ep-activity:WellControlIncidentType ;
rdfs:comment "well control incident that is a shallow gas kick"^^xsd:string ;
rdfs:label "well control incident shallow gas kick"^^xsd:string ;
rdfs:subClassOf ep-activity:WellControlIncident ;
owl:disjointWith ep-activity:WellControlIncident-water_kick , ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-gas_kick .
ep-activity:WellControlIncident-water_kick
rdf:type owl:Class , ep-activity:WellControlIncidentType ;
rdfs:comment "well control incident that is a water kick"^^xsd:string ;
rdfs:label "well control incident water kick"^^xsd:string ;
rdfs:subClassOf ep-activity:WellControlIncident ;
owl:disjointWith ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-gas_kick .
ep-activity:WellControlIncidentType
rdf:type rdfs:Class ;
rdfs:comment "class of well control incident on the basis of the cause of the incident"^^xsd:string ;
rdfs:label "well control incident type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellKilling
rdf:type owl:Class ;
rdfs:comment "activity that is intended to kill a well"^^xsd:string ;
rdfs:label "well killing"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellKilling-bullheading
rdf:type owl:Class , ep-activity:WellKillingType ;
rdfs:comment "well killing that is by bull heading"^^xsd:string ;
rdfs:label "well killing bullheading"^^xsd:string ;
rdfs:subClassOf ep-activity:WellKilling ;
owl:disjointWith ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-forward_circulation .
ep-activity:WellKilling-drillers_method
rdf:type owl:Class , ep-activity:WellKillingType ;
rdfs:comment "well killing that is by the drillers method"^^xsd:string ;
rdfs:label "well killing drillers method"^^xsd:string ;
rdfs:subClassOf ep-activity:WellKilling ;
owl:disjointWith ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-bullheading , ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-forward_circulation .
ep-activity:WellKilling-forward_circulation
rdf:type ep-activity:WellKillingType , owl:Class ;
rdfs:comment "well killing that is by forward circulation"^^xsd:string ;
rdfs:label "well killing forward circulation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellKilling ;
owl:disjointWith ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-bullheading .
ep-activity:WellKilling-lubricate_and_bleed
rdf:type ep-activity:WellKillingType , owl:Class ;
rdfs:comment "well killing that is by lubricate and bleed"^^xsd:string ;
rdfs:label "well killing lubricate and bleed"^^xsd:string ;
rdfs:subClassOf ep-activity:WellKilling ;
owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-wait_and_weight .
ep-activity:WellKilling-reverse_circulation
rdf:type owl:Class , ep-activity:WellKillingType ;
rdfs:comment "well killing that is by reverse circulation"^^xsd:string ;
rdfs:label "well killing reverse circulation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellKilling ;
owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-lubricate_and_bleed .
ep-activity:WellKilling-wait_and_weight
rdf:type ep-activity:WellKillingType , owl:Class ;
rdfs:comment "well killing that is by wait and weight"^^xsd:string ;
rdfs:label "well killing wait and weight"^^xsd:string ;
rdfs:subClassOf ep-activity:WellKilling ;
owl:disjointWith ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-bullheading .
ep-activity:WellKillingType
rdf:type rdfs:Class ;
rdfs:comment "class of well killing on the basis of the method of killing"^^xsd:string ;
rdfs:label "well killing type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WellOperation
rdf:type owl:Class ;
rdfs:comment "Added to support WellOperations in Daily Production Reports"^^xsd:string ;
rdfs:label "Well Operation"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:WellStimulation
rdf:type owl:Class ;
rdfs:comment "activity that is intended to stimulate a well"^^xsd:string ;
rdfs:label "well stimulation"^^xsd:string ;
rdfs:subClassOf ep-activity:WellOperation .
ep-activity:WellTest
rdf:type owl:Class ;
rdfs:label "well test"^^xsd:string ;
rdfs:subClassOf ep-activity:DrillingActivity .
ep-activity:WellTestType
rdf:type rdfs:Class ;
rdfs:comment "class of well test on the basis of what information is sought by the test"^^xsd:string ;
rdfs:label "well test type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WirelineFormationTest
rdf:type owl:Class ;
rdfs:comment "activity that test surrounding rock formation by inserting a probe into a well on the end of a wire"^^xsd:string ;
rdfs:label "wireline formation test"^^xsd:string ;
rdfs:subClassOf ep-activity:Activity .
ep-activity:WirelineFormationTestType
rdf:type rdfs:Class ;
rdfs:comment "class of wireline formation test on the basis of whether or not it has a good seal"^^xsd:string ;
rdfs:label "wireline formation test type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-activity:WirelineFormationTestWithGoodSeal
rdf:type owl:Class , ep-activity:WirelineFormationTestType ;
rdfs:comment "wireline formation test that has a good seal"^^xsd:string ;
rdfs:label "wireline formation test with a good seal"^^xsd:string ;
rdfs:subClassOf ep-activity:WirelineFormationTest ;
owl:disjointWith ep-activity:WirelineFormationTestWithoutGoodSeal .
ep-activity:WirelineFormationTestWithoutGoodSeal
rdf:type owl:Class , ep-activity:WirelineFormationTestType ;
rdfs:comment "wireline formation test that does not have a good seal"^^xsd:string ;
rdfs:label "wireline formation test without a good seal"^^xsd:string ;
rdfs:subClassOf ep-activity:WirelineFormationTest ;
owl:disjointWith ep-activity:WirelineFormationTestWithGoodSeal .
ep-activity:averageRateOfDrilling
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:comment "class_of_indirect_property that is the average rate of drilling for a drilling activity"^^xsd:string ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "average rate of drilling"^^xsd:string ;
rdfs:range ep-core:Speed .
ep-activity:descriptionOfActivitiesFollowingTheDailyReportingPeriod
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:DailyDrillingActivity ;
rdfs:label "description of activities following the daily reporting period"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/report#Report> .
ep-activity:descriptionOfActivitiesForecastForTheNextDailyReportingPeriod
rdf:type owl:DatatypeProperty ;
rdfs:comment "description of the drilling activities that are forecast for the next daily reporting period"^^xsd:string ;
rdfs:domain ep-activity:DailyDrillingActivity ;
rdfs:label "description of activities forecast for the next daily reporting period"^^xsd:string .
ep-activity:descriptionOfActivitiesWithinTheDailyReportingPeriod
rdf:type owl:DatatypeProperty ;
rdfs:comment "description of the drilling activity that take place within a daily reporting period"^^xsd:string ;
rdfs:domain ep-activity:DailyDrillingActivity ;
rdfs:label "description of activities within the daily reporting period"^^xsd:string .
ep-activity:distanceDrilled
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:comment "class_of_indirect_property that is the distance drilled by a drilling activity"^^xsd:string ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "distance drilled"^^xsd:string ;
rdfs:range ep-core:Length .
ep-activity:drillingContractor
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "organization that is contracted to perform a drilling activity"^^xsd:string ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "drilling contractor"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
ep-activity:drillingOperator
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "organization that operates the facility that performs a drilling activity"^^xsd:string , "Corresponds to Drilling Operator field in WellBore tables"^^xsd:string ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "drilling operator"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
ep-activity:durationOfDrilling
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "duration of drilling"^^xsd:string ;
rdfs:range ep-core:TimeDuration .
ep-activity:existsThroughout
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "exists throughout"^^xsd:string .
ep-activity:existsWithin
rdf:type owl:DatatypeProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "exists within"^^xsd:string .
ep-activity:failedEquipment
rdf:type owl:ObjectProperty ;
rdfs:comment "equipment that fails and is repaired during an equipment failure and repair activity"^^xsd:string ;
rdfs:domain ep-activity:EquipmentFailureAndRepair ;
rdfs:label "failed equipment"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
ep-activity:finalRateOfDrilling
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:comment "class_of_indirect_property that is the rate of drilling at the end of a drilling activity"^^xsd:string ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "final rate of drilling"^^xsd:string ;
rdfs:range ep-core:Speed .
ep-activity:finishedAt
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:comment "UTC representation of the finishing time for an activity"^^xsd:string ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "finished at"^^xsd:string ;
rdfs:range xsd:dateTime .
ep-activity:fluidProducedByWellTest
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "quantity of material that is produced by a well test"^^xsd:string ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "fluid produced by well test"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/material#Fluid> .
ep-activity:hasCasingLinerTubing
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WellStimulation ;
rdfs:label "has Casing/Liner/Tubing"^^xsd:string .
ep-activity:hasCasingString
rdf:type owl:ObjectProperty ;
rdfs:label "has casing string"^^xsd:string .
ep-activity:hasChokeValve
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "has choke valve"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> .
ep-activity:hasDrillBit
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "has drill bit"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/equipment#DrillBit> .
ep-activity:hasDrillingFluid
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "has drilling fluid"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/material#Fluid> .
ep-activity:hasInflowLocation
rdf:type owl:ObjectProperty ;
rdfs:domain ep-activity:WellControlIncident ;
rdfs:label "has inflow location"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#PositionWithinWellBore> .
ep-activity:hasSubActivity
rdf:type owl:ObjectProperty ;
rdfs:label "has sub activity"^^xsd:string .
ep-activity:hasWellTestChoke
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "has well test choke"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/equipment#WellTestChoke> .
ep-activity:identificationNumberOfCore
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:comment "identification number of the core extracted by an extract a well core activity"^^xsd:string ;
rdfs:domain ep-activity:ExtractAWellCore ;
rdfs:label "identification number of core"^^xsd:string .
ep-activity:issuedFrom
rdf:type owl:ObjectProperty ;
rdfs:domain ep-activity:IssueAReport ;
rdfs:label "issued from"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility> .
ep-activity:logRunNumber
rdf:type owl:DatatypeProperty ;
rdfs:comment "identification number of a well bore log run activity"^^xsd:string ;
rdfs:domain ep-activity:WellBoreLogRun ;
rdfs:label "log run number"^^xsd:string .
ep-activity:loggedWellBoreInterval
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "wellbore section that is logged by a wellbore log run activity"^^xsd:string ;
rdfs:domain ep-activity:WellBoreLogRun ;
rdfs:label "logged wellbore interval"^^xsd:string ;
rdfs:range ep-core:PhysicalObject .
ep-activity:measuredDepthOfFluidSampling
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "class_of_indirect_property that is the measured depth with respect to the RKB of the location of fluid sampling by a wireline formation test activity"^^xsd:string ;
rdfs:domain ep-activity:WirelineFormationTest ;
rdfs:label "measured depth of fluid sampling"^^xsd:string ;
rdfs:range ep-core:Length .
ep-activity:missedProductionTime
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:EquipmentFailureAndRepair ;
rdfs:label "missed production time"^^xsd:string ;
rdfs:range ep-core:TimeDuration .
ep-activity:nominallyAt
rdf:type owl:DatatypeProperty ;
rdfs:comment "UTC representation of the nominal time of an activity"^^xsd:string ;
rdfs:domain ep-activity:Activity ;
rdfs:label "nominal time"^^xsd:string ;
rdfs:range xsd:dateTime .
ep-activity:onDrillBit
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WellBoreBitRunDrilling ;
rdfs:label "on drill bit"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/equipment#DrillBit> .
ep-activity:onFluid
rdf:type owl:ObjectProperty ;
rdfs:label "on WellBore"^^xsd:string .
ep-activity:onRig
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "on rig"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfARig> .
ep-activity:onWell
rdf:type owl:ObjectProperty ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "on well"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWell> .
ep-activity:onWellBore
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "on wellbore"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> .
ep-activity:operatingTimeOfDrillBit
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:comment "class_of_indirect_property that is the operating time of the drill bit for a drilling activity"^^xsd:string ;
rdfs:domain ep-activity:DrillingActivity ;
rdfs:label "operating time of drill bit"^^xsd:string ;
rdfs:range ep-core:TimeDuration .
ep-activity:pressureAtWhichPlugBumped
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "class_of_indirect_property that is the pressure at which the plub bumped for a well cement pumping activity"^^xsd:string ;
rdfs:domain ep-activity:WellCementPumping ;
rdfs:label "pressure at which plug bumped"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-activity:pumpedFluid
rdf:type owl:ObjectProperty ;
rdfs:label "pumped fluid"^^xsd:string .
ep-activity:recoveredCore
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "core that is recovered by an ExtractAWellCore activity"^^xsd:string ;
rdfs:domain ep-activity:ExtractAWellCore ;
rdfs:label "recovered core"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#RecoveredCore> .
ep-activity:returnedCementingFluid
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "cementing fluid that is returned during a well cement pumping activity"^^xsd:string ;
rdfs:domain ep-activity:WellCementPumping ;
rdfs:label "returned cementing fluid"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#CementingFluid> .
ep-activity:sampledFluid
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WirelineFormationTest ;
rdfs:label "sampled fluid"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/material#Fluid> .
ep-activity:serviceCompany
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:Activity ;
rdfs:label "service company"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
ep-activity:startedAt
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "started at"^^xsd:string ;
rdfs:range xsd:dateTime .
ep-activity:timeLost
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WellControlIncident ;
rdfs:label "time lost"^^xsd:string ;
rdfs:range ep-core:TimeDuration .
ep-activity:timeOfFailure
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:domain ep-activity:EquipmentFailureAndRepair ;
rdfs:label "time of failure"^^xsd:string ;
rdfs:range xsd:dateTime .
ep-activity:timeOfRepair
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:domain ep-activity:EquipmentFailureAndRepair ;
rdfs:label "time of repair"^^xsd:string ;
rdfs:range xsd:dateTime .
ep-activity:volumeOfMudGained
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:domain ep-activity:WellControlIncident ;
rdfs:label "volume of mud gained"^^xsd:string ;
rdfs:range ep-core:Volume .
ep-activity:wellBoreLoggingTool
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WellBoreLogRun ;
rdfs:label "well bore logging tool"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
ep-activity:wellTestBottomHolePressure
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "well test bottom hole pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-activity:wellTestFlowingPressure
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "well test flowing pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-activity:wellTestNumber
rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "well test number"^^xsd:string .
ep-activity:wellTestShutInPressure
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "well test shut-in pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-activity:wellTestStoredOil
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-activity:WellTest ;
rdfs:label "well test stored oil"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/material#Oil> .