TEMP_seeRD.ttl
44.9 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
# baseURI: http://www.reportinghub.no/refdata/TEMP_seeRD
@prefix TEMP_seeRD: <http://www.reportinghub.no/refdata/TEMP_seeRD#> .
@prefix copySeeRDFromSS: <http://www.reportinghub.no/refdata/transform/copySeeRDFromSS#> .
@prefix drilling: <http://www.reportinghub.no/ep/schema/1.0/drilling#> .
@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 sp: <http://spinrdf.org/sp#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/activity#Activity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c63b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DailyDrillingActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c639-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DailyDrillingActivityToStatus>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c535-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillStemTest>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c657-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c52f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-bop_test>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c541-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-circulation_loss>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c419-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-coiled_tubing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c415-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-equipment_failure>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c529-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-equipment_hang>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c57f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-fixed_equipment>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c413-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-injury>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c647-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-kick>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c549-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-mud_loss>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c64b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-operation_failed>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c62d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-snubbing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c637-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-stuck_equipment>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c53f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-success>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c635-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#DrillingActivity-wire_line>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c57b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#EquipmentFailureAndRepair>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c659-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#ExtractAWellCore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c421-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#FailedActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c64d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#FluidReading>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c41d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c63f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-circulating_background_gas>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c533-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-connection_gas>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c587-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-drilling_background_gas>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c633-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-drilling_gas_peak>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c573-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-flow_check_gas>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c425-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-no_readings>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c42b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-other>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c655-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-shut_down_gas>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c64f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#GasReading-trip_gas>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c589-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#LithologyAndShowsObservation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c579-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#MakeAnObservation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c66f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#MonthlyDrillingActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c569-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#OpenPerforationInterval>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c547-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#PorePressureDetermination>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c531-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#PorePressureEstimation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c653-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#PorePressureMeasurement>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c559-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#PreliminaryZonation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c62f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#ProductionActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c411-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#ProductionTest>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c567-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#SuccessfulActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c53d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WeeklyDrillingActivity>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c52d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBoreBitOperation-withinReportingPeriod>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c543-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBoreBitRunDrilling>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c641-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBoreBitRunDrilling-withinReportingPeriod>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c577-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBoreDirectionalSurvey>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c53b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBoreLogRun>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c54b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBorePressureTest>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c429-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellBoreReportingPeriodDrilling>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c63d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJob>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c427-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJob-other>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c585-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJob-plug>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c539-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJob-primary>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c41b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJob-squeeze>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c55f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobPressureRelease>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c56d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithBottomPlug>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c54f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingReciprocation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c571-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingRotation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c52b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithFloatHolding>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c565-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithPlugBumping>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c57d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithTopPlug>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c423-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutBottomPlug>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c56f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingReciprocation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c583-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingRotation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c563-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutFloatHolding>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c65b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutPlugBumping>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c55d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutTopPlug>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c561-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementPumping>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c537-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementPumpingWithFluidReturn>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c553-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCementPumpingWithoutFluidReturn>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c545-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellCompletion>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c645-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellControlIncident>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c55b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellControlIncident-gas_kick>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c54d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellControlIncident-oil_kick>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c643-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellControlIncident-shallow_gas_kick>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c631-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellControlIncident-water_kick>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c41f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c649-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling-bullheading>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c417-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling-drillers_method>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c527-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling-forward_circulation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c65d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling-lubricate_and_bleed>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c575-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling-reverse_circulation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c651-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellKilling-wait_and_weight>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c551-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellOperation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c557-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WellStimulation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c62b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WirelineFormationTest>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c581-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithGoodSeal>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c56b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithoutGoodSeal>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c555-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#averageRateOfDrilling>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a39-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#descriptionOfActivitiesForecastForTheNextDailyReportingPeriod>
ep-core:seeReferenceData
"pca-rdl:ERH4d362695-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#descriptionOfActivitiesWithinTheDailyReportingPeriod>
ep-core:seeReferenceData
"pca-rdl:ERH4d362696-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#distanceDrilled>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a3b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#drillingContractor>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2a-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#drillingOperator>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a28-2a3b-11b2-80f6-ac4319491de1"^^xsd:string , "pca-rdl:ERH4d361a29-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#failedEquipment>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2c-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#finalRateOfDrilling>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a3a-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#finishedAt>
ep-core:seeReferenceData
"pca-rdl:ERH4d362694-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#fluidProducedByWellTest>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2e-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#identificationNumberOfCore>
ep-core:seeReferenceData
"pca-rdl:ERH4d362691-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#logRunNumber>
ep-core:seeReferenceData
"pca-rdl:ERH4d362692-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#loggedWellBoreInterval>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a25-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#measuredDepthOfFluidSampling>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a26-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#nominallyAt>
ep-core:seeReferenceData
"pca-rdl:ERH4d362693-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#operatingTimeOfDrillBit>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a3c-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#pressureAtWhichPlugBumped>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#recoveredCore>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#returnedCementingFluid>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a27-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#wellBoreLoggingTool>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c025-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:StrengthOfRockFormation
ep-core:seeReferenceData
"pca-rdl:ERH4d362649-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:VolumePerUnitVolumeConcentration
ep-core:seeReferenceData
"pca-rdl:RDS17234022"^^xsd:string .
ep-core:apiName
ep-core:seeReferenceData
"pca-rdl:ERH4d36267b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:description
ep-core:seeReferenceData
"pca-rdl:ERH4d362677-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:dtiName
ep-core:seeReferenceData
"pca-rdl:ERH4d362679-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:localFieldName
ep-core:seeReferenceData
"pca-rdl:ERH4d362678-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:name
ep-core:seeReferenceData
"pca-rdl:ERH4d36267a-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:npdName
ep-core:seeReferenceData
"pca-rdl:ERH4d36268c-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:shortName
ep-core:seeReferenceData
"pca-rdl:ERH4d36267d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
ep-core:unitSymbol
ep-core:seeReferenceData
"pca-rdl:ERH4d36267c-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#BlowOutPreventer>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c027-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Casing>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c021-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfbb-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#ChokeValve>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfc1-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Compressor>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c01f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#DrillBit>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfc9-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#DrillBitForWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfbd-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Equipment>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfb9-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#InnerBarrel>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfc7-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#InnerBarrel-aluminum>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfc5-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#InnerBarrel-fiberglass>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c02b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#InnerBarrel-gel>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfbf-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#IntermediateCasing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfcb-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#KellyBushing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfd3-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Liner>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfd5-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#ProductionCasing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfc3-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Separator>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c02d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Tank>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfcf-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#TopCasing>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfcd-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#Tubing>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c029-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#WellBoreLoggingTool>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c025-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#WellTestChoke>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c023-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#chokeOrificeSize>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a36-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#codeAssignedByAManufacturer>
ep-core:seeReferenceData
"pca-rdl:ERH4d362676-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#elevationOfKellyBushing>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a34-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#insideDiameterOfATubular>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a31-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#lengthOfInnerBarrel>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a37-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#manufacturedBy>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a07-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#maximumPressureForBlowOutPreventer>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a32-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#maximumPressureForChokeValve>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a33-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/equipment#stringLengthOfATubular>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a35-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#Facility>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c405-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#FixedFacility>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c931-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#FixedRig>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c403-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#MoveableRig>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c401-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#ProductionFacility>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3f9-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#ProductionFacilityToDate>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c013-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#Rig>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3fd-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAField>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c407-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3f7-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#TemporalPartOfARig>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3fb-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#Zone>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c40d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/facility#depthOfSurroundingWater>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a38-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/flow#allocatedTo>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a05-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/flow#flowMeasuredBy>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a06-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/geography#AreaCoveredByBusinessArrangement>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c01b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/geography#LicenceBlock>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c019-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/geography#Terminal>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c01d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/material#Chloride>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfd9-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/material#Filtrate>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfdb-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#CateringCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3eb-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#Company>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3f3-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#DayVisitorCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3ef-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#NonOperatorOvernightVisitorCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3ed-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#OperatorNormalCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3f5-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#OperatorOvernightVisitorCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3e9-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#TotalCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c3f1-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/organization#numberInCrew>
ep-core:seeReferenceData
"pca-rdl:ERH4d362690-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-activity#AnnualProductionOperationToDate>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c66b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-activity#ProductionOperation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c665-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-activity#ProductionOperationInjection>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c663-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-activity#ProductionOperationProduction>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c65f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#BlockValve>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c003-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#DownHoleControlValve>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bffb-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#FlowMeter>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c001-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#GasLiftChoke>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bff9-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#PressureMeter>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bffd-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#RegulatingValve>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bfff-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#SleeveValve>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c007-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#TemperatureMeter>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bff5-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#Valve>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c009-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-facility#Field-group>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c015-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-facility#Field-part>
ep-core:seeReferenceData
"pca-rdl:ERH4d32c017-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-facility#Pipeline>
ep-core:seeReferenceData
"pca-rdl:ERH4d35bff7-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#CementingFluid>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c913-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#HphtWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c917-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#LeakyWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c929-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#LowerPartOfAWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c92d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Mud>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c91b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Mud-oilBased>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c67f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Mud-other>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c679-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Mud-waterBased>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c68b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#NotHphtWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c911-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#PositionWithinWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c921-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#RecoveredCore>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Slurry>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c681-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Spacer>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c927-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWell>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c91f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c915-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#SurroundingRockFormation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c687-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWell>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c923-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#TightWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c92f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#Wash>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c67b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#WellBoreBottom>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c925-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#WellBoreKickOff>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c68d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#WellBorePilotHole>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c91d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#WellBoreWithCirculation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c67d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#WellBoreWithoutCirculation>
ep-core:seeReferenceData
"pca-rdl:ERH4d35c919-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a42-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#bottomHoleTemperature>
ep-core:seeReferenceData
"pca-rdl:ERH4d36263d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#bottomHoleTrueVerticalDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d362645-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#cementingFluidPerCentFreeWater>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a41-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#cementingFluidThickeningTime>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a3f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#coreLength>
ep-core:seeReferenceData
"pca-rdl:ERH4d362648-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#diameterOfAWellBorePilotHole>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a43-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#dominantComponent>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a2f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#finalBottomHoleMeasuredDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d362641-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#finalBottomHoleTrueVerticalDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d362638-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#gasConcentrationHigh>
ep-core:seeReferenceData
"pca-rdl:ERH4d36263b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#gasConcentrationLow>
ep-core:seeReferenceData
"pca-rdl:ERH4d362639-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#hasBarrel>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a30-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#initialBottomHoleMeasuredDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a40-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#lithologyDescription>
ep-core:seeReferenceData
"pca-rdl:ERH4d363ce0-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#measuredDepthOfPlugTop>
ep-core:seeReferenceData
"pca-rdl:ERH4d362640-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d36263f-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a3d-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#nominalInsideDiameterOfBoreHole>
ep-core:seeReferenceData
"pca-rdl:ERH4d36263a-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#plannedPilotBottomHoleTrueVerticalDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d362647-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#porePressure>
ep-core:seeReferenceData
"pca-rdl:ERH4d362644-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#porePressureEquivalentMudDensity>
ep-core:seeReferenceData
"pca-rdl:ERH4d362643-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#ratioOfCementMixToWater>
ep-core:seeReferenceData
"pca-rdl:ERH4d36263c-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#relativeAmountOfCoreRecovered>
ep-core:seeReferenceData
"pca-rdl:ERH4d362646-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#showDescription>
ep-core:seeReferenceData
"pca-rdl:ERH4d36269b-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#stratigraphyDescription>
ep-core:seeReferenceData
"pca-rdl:ERH4d36269a-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#strengthOfRockFormation>
ep-core:seeReferenceData
"pca-rdl:ERH4d362649-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#trueVerticalDepth>
ep-core:seeReferenceData
"pca-rdl:ERH4d361a3e-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheBottomOfAPartOfAWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d362642-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheTopOfAPartOfAWellBore>
ep-core:seeReferenceData
"pca-rdl:ERH4d36263e-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#wellBoreCompletedAt>
ep-core:seeReferenceData
"pca-rdl:ERH4d362699-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#wellBorePreSpudAt>
ep-core:seeReferenceData
"pca-rdl:ERH4d362698-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/ep/schema/well#wellBoreSpudAt>
ep-core:seeReferenceData
"pca-rdl:ERH4d362697-2a3b-11b2-80f6-ac4319491de1"^^xsd:string .
<http://www.reportinghub.no/refdata/TEMP_seeRD>
rdf:type owl:Ontology ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
<http://www.reportinghub.no/refdata/transform/copySeeRDFromSS>
owl:imports <http://www.reportinghub.no/ep/schema/1.0/drilling> , <http://www.reportinghub.no/np/schema/1.0/npd> .