SCHEMA_EP-PRODUCTION-ACTIVITY-V1.0.ttl
63.1 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
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
# baseURI: http://www.reportinghub.no/ep/schema/1.0/production-activity
# imports: http://www.reportinghub.no/ep/schema/1.0/activity
# imports: http://www.reportinghub.no/ep/schema/1.0/activity-purpose
# 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/flow
# imports: http://www.reportinghub.no/ep/schema/1.0/geography
# 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/production-equipment
# imports: http://www.reportinghub.no/ep/schema/1.0/production-facility
# imports: http://www.reportinghub.no/ep/schema/1.0/well
@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
@prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> .
@prefix ep-prodact: <http://www.reportinghub.no/ep/schema/production-activity#> .
@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/production-activity>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> , <http://www.reportinghub.no/ep/schema/1.0/geography> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/flow> , <http://www.reportinghub.no/ep/schema/1.0/production-facility> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/well> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#ApproveAReport>
rdf:type owl:Class ;
rdfs:label "approve a report"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
<http://www.reportinghub.no/ep/schema/activity#Completion-DrillStemTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "completion - drill stem test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#DrillStemTest> .
<http://www.reportinghub.no/ep/schema/activity#Completion-ProductionTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "completion - production test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionTest> .
<http://www.reportinghub.no/ep/schema/activity#DrawdownTest>
rdf:type owl:Class ;
rdfs:comment "well test that is a <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "drawdown test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#Gas-FlowAfterFlowTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "gas - flow after flow test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#Gas-IsochronalTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "gas - isochronal test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#Gas-ModifiedIsochronalTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "gas - modified isochronal test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#InjectionTest-FallOff>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "injection test - fall-off"^^xsd:string ;
rdfs:subClassOf ep-prodact:InjectionWellTest .
<http://www.reportinghub.no/ep/schema/activity#InterferenceTest-PulseTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "interference test - pulse test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#IssueAReport>
rdf:type owl:Class ;
rdfs:label "issue a report"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
<http://www.reportinghub.no/ep/schema/activity#MakeAnObservation>
rdf:type owl:Class ;
rdfs:comment "activity that is making an observation"^^xsd:string ;
rdfs:label "make an observation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
<http://www.reportinghub.no/ep/schema/activity#MaximumSandFreeRateTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "maximum sand-free rate test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#MultiLayerTransientTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "multi-layer transient test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#MultiRateTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "multi-rate test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#ObserveTheWeather>
rdf:type owl:Class ;
rdfs:label "observe the weather"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#MakeAnObservation> .
<http://www.reportinghub.no/ep/schema/activity#Oil-FlowAfterFlowTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "oil - flow after flow test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#PressureBuildUpTest>
rdf:type owl:Class ;
rdfs:comment "well test that is a <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "pressure build-up test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#ProductionWellTest>
rdf:type owl:Class ;
rdfs:label "production well test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> , <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#SingleRateTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "single rate test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#Water-FlowAfterFlowTest>
rdf:type owl:Class ;
rdfs:comment "well test that is <no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "water - flow after flow test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
<http://www.reportinghub.no/ep/schema/activity#WellOperation>
rdf:type ep-prodact:ProductionActivityType ;
rdfs:comment "activity that is for operating a well"^^xsd:string .
<http://www.reportinghub.no/ep/schema/activity#approver>
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ApproveAReport> ;
rdfs:label "approver"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
<http://www.reportinghub.no/ep/schema/activity#hasFlow>
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#Activity> ;
rdfs:label "has flow"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/flow#WholeLifeFlow> .
<http://www.reportinghub.no/ep/schema/activity#issuer>
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#IssueAReport> ;
rdfs:label "issuer"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
<http://www.reportinghub.no/ep/schema/activity#observationResultsSuppliedBy>
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#MakeAnObservation> ;
rdfs:label "observation results supplied by"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
<http://www.reportinghub.no/ep/schema/activity#observedObject>
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#MakeAnObservation> ;
rdfs:label "observed object"^^xsd:string ;
rdfs:range ep-core:PhysicalThing .
ep-prodact:AccidentOrInjury
rdf:type owl:Class ;
rdfs:comment "incident that causes injury, illness, or damage to/loss of assets"^^xsd:string ;
rdfs:label "accident or injury"^^xsd:string ;
rdfs:subClassOf ep-prodact:Incident .
ep-prodact:AccidentPreventionExercise
rdf:type owl:Class ;
rdfs:comment "drill or exercise that is intended to prevent accidents"^^xsd:string ;
rdfs:label "accident prevention exercise"^^xsd:string ;
rdfs:subClassOf ep-prodact:DrillOrExcercise .
ep-prodact:AdministerFirstAid
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "medical treatment that is first aid"^^xsd:string ;
rdfs:label "administer first aid"^^xsd:string ;
rdfs:subClassOf ep-prodact:MedicalTreatment .
ep-prodact:AirTrafficOperation
rdf:type ep-prodact:ProductionActivityType , owl:Class ;
rdfs:comment "activity that is an air traffic operation"^^xsd:string ;
rdfs:label "air traffic operation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:Alarm
rdf:type owl:Class ;
rdfs:comment "activity that is raising an alarm"^^xsd:string ;
rdfs:label "alarm"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:AlarmType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of Alarm"^^xsd:string ;
rdfs:label "alarm type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:AlertLevel
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of raise an alert according to level"^^xsd:string ;
rdfs:label "alert level"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:AlertType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of raise an alert according to type"^^xsd:string ;
rdfs:label "alert type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:AllocateSplitFactors
rdf:type ep-prodact:SplitFactorDeterminationType , owl:Class ;
rdfs:comment "activity that is allocating the fraction of a source flow that is assumed to go into different product streams"^^xsd:string ;
rdfs:label "allocate split factors"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:AnnualProductionActivityToDate
rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ;
rdfs:comment "production activity that is during the year to date"^^xsd:string ;
rdfs:label "annual production activity to date"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:AnnualProductionOperationToDate
rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ;
rdfs:comment "production operation from the beginning of an annual reporting period to a date within, or at the end of, the reporting period"^^xsd:string ;
rdfs:label "annual production operation to date"^^xsd:string ;
rdfs:subClassOf ep-prodact:AnnualProductionActivityToDate , ep-prodact:ProductionOperation .
ep-prodact:BasketMovement
rdf:type owl:Class ;
rdfs:comment "marine operation that is a basket movement"^^xsd:string ;
rdfs:label "basket movement"^^xsd:string ;
rdfs:subClassOf ep-prodact:MarineOperation .
ep-prodact:CargoShipOperation
rdf:type owl:Class ;
rdfs:comment "production activity that is the operation of a cargo ship"^^xsd:string ;
rdfs:label "cargo ship operation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:ConstructionOperation
rdf:type ep-prodact:ProductionActivityType , owl:Class ;
rdfs:comment "activity that is construction"^^xsd:string ;
rdfs:label "construction operation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS9685637"^^xsd:string .
ep-prodact:DailyProductionOperationProcessingLoss
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is all that happens to cause production operation processing loss in one day"^^xsd:string ;
rdfs:label "daily production operation processing loss"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:DataAcquisitionActivity
rdf:type owl:Class ;
rdfs:comment "activity that is data acquisition"^^xsd:string ;
rdfs:label "data acquisition activity"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:DefinedHazardAndAccidentSituation
rdf:type owl:Class ;
rdfs:comment "incident that is a defined hazard and accident situation according to Norwegian DFU requirements"^^xsd:string ;
rdfs:label "defined hazard and accident situation"^^xsd:string ;
rdfs:subClassOf ep-prodact:Incident .
ep-prodact:Deviation
rdf:type ep-prodact:ProductionActivityType , owl:Class ;
rdfs:comment "activity that is a deviation from existing procedures and guidelines"^^xsd:string ;
rdfs:label "deviation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:DischargeWater
rdf:type owl:Class ;
rdfs:comment "production activity that is the discharge of water"^^xsd:string ;
rdfs:label "discharge water"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:DrillOrExcercise
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "activity that is a drill or exercise intended to prevent harm to health, safety or the environment"^^xsd:string ;
rdfs:label "drill or exercise"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:ExtendedMaintenanceTurnaround
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is an extended maintenance turnaround"^^xsd:string ;
rdfs:label "extended maintenance turnaround"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:ExtendedMaintenanceTurnaroundExportTerminal
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "extended maintenance turnaround that is for an export terminal"^^xsd:string ;
rdfs:label "extended maintenance turnaround export terminal"^^xsd:string ;
rdfs:subClassOf ep-prodact:ExtendedMaintenanceTurnaround .
ep-prodact:Fire
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "incident that is an unintentional fire"^^xsd:string ;
rdfs:label "fire"^^xsd:string ;
rdfs:subClassOf ep-prodact:Incident .
ep-prodact:FluidLevelTest
rdf:type owl:Class ;
rdfs:comment "production well test that is a fluid level test"^^xsd:string ;
rdfs:label "fluid level test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> .
ep-prodact:FluidSampling-DST
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "fluid sampling and analysis that has a sample taken as part of a drill stem test"^^xsd:string ;
rdfs:label "fluid sampling - DST"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-RFTorMDT
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "<no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "fluid sampling - RFT or MDT"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-bottomhole
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "fluid sampling and analysis that has a sample taken from the bottom of a wellbore"^^xsd:string ;
rdfs:label "fluid sampling - bottomhole"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-formationTester
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "fluid sampling and analysis that has the sample taken by a formation tester"^^xsd:string ;
rdfs:label "fluid sampling - formation tester"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-recombined
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "<no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "fluid sampling - recombined"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-separatorGas
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "<no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "fluid sampling - separator gas"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-separatorOil
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "<no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "fluid sampling - separator oil"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-separatorWater
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "<no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "fluid sampling - separator water"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-synthetic
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "<no definition in MPR-XSD>"^^xsd:string ;
rdfs:label "fluid sampling - synthetic"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSampling-wellhead
rdf:type ep-prodact:FluidSamplingType , owl:Class ;
rdfs:comment "fluid sampling and analysis that has the sample taken at the well head"^^xsd:string ;
rdfs:label "fluid sampling - wellhead"^^xsd:string ;
rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis .
ep-prodact:FluidSamplingAndAnalysis
rdf:type owl:Class ;
rdfs:comment "activity that is fluid sampling and analysis"^^xsd:string ;
rdfs:label "fluid sampling and analysis"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:FluidSamplingType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of fluid sampling corresponding to the FluidSampleKind enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "fluid sampling type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:HSEProblem
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is an HSE problem"^^xsd:string ;
rdfs:label "HSE problem"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:HealthSafetyAndEnvironmentActivity
rdf:type owl:Class ;
rdfs:comment "activity that affects, or might in different circumstances have affected, health, safety and the environment"^^xsd:string ;
rdfs:label "health safety and environment activity"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:Incident
rdf:type owl:Class ;
rdfs:comment "activity that causes, or could have caused under different circumstances, injury, illness, damage to/loss of assets, or harm to the environment or to a third party"^^xsd:string ;
rdfs:label "incident"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:InitialWellTest
rdf:type ep-prodact:WellTestReasonType , owl:Class ;
rdfs:comment "well test that is the first on a well"^^xsd:string ;
rdfs:label "initial well test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
ep-prodact:InjectionWellTest
rdf:type owl:Class ;
rdfs:comment "production well test that is an injection well test"^^xsd:string ;
rdfs:label "injection well test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> .
ep-prodact:Injury
rdf:type owl:Class ;
rdfs:comment "accident or injury that harms a person"^^xsd:string ;
rdfs:label "injury"^^xsd:string ;
rdfs:subClassOf ep-prodact:AccidentOrInjury .
ep-prodact:IssueBillOfLading
rdf:type ep-prodact:SalesActivityType , owl:Class ;
rdfs:comment "sales activity that is issuing a bill of lading"^^xsd:string ;
rdfs:label "issue bill of lading"^^xsd:string ;
rdfs:subClassOf ep-prodact:SalesActivity .
ep-prodact:IssueWorkPermit
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "activity that is issuing a work permit"^^xsd:string ;
rdfs:label "issue work permit"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:IssueWorkPermitWithSJA
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "issue a work permit with Safe Job Analysis"^^xsd:string ;
rdfs:label "issue work permit with SJA"^^xsd:string ;
rdfs:subClassOf ep-prodact:IssueWorkPermit .
ep-prodact:JobObservation
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "<not defined in MPR-XSD>"^^xsd:string ;
rdfs:label "job observation"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:LastPartOfTypeRemainingActivityPair
rdf:type owl:Class ;
rdfs:comment "thing that is a pair of activities, where one is the last activity of a particular type within a whole and the other is the part of the whole that comes after the last of the type"^^xsd:string ;
rdfs:label "last part of type - remaining activity pair"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ep-prodact:LostTimeAccident
rdf:type owl:Class ;
rdfs:comment "accident that results in lost time from work (source: MPR-XSD)"^^xsd:string ;
rdfs:label "lost time accident"^^xsd:string ;
rdfs:subClassOf ep-prodact:Injury .
ep-prodact:LostTimeIncident
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "incident that results in an injured employee who requires medical treatment and cannot return to work the next day (source: MPR-XSD)"^^xsd:string ;
rdfs:label "lost time incident"^^xsd:string ;
rdfs:subClassOf ep-prodact:Injury .
ep-prodact:MaintenanceActivity
rdf:type ep-prodact:ProductionActivityType , owl:Class ;
rdfs:comment "activity that is maintenance"^^xsd:string ;
rdfs:label "maintenance activity"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS9661742"^^xsd:string .
ep-prodact:MakeAComment
rdf:type owl:Class ;
rdfs:comment "activity that is making a comment"^^xsd:string ;
rdfs:label "make a comment"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:MakeATransaction
rdf:type ep-prodact:SalesActivityType , owl:Class ;
rdfs:comment "sales activity that is making a transaction"^^xsd:string ;
rdfs:label "make a transaction"^^xsd:string ;
rdfs:subClassOf ep-prodact:SalesActivity .
ep-prodact:MarineOperation
rdf:type owl:Class ;
rdfs:comment "production activity that is a marine operation"^^xsd:string ;
rdfs:label "marine operation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:MarkedGasLossOfExport
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is not exporting gas due to marked product"^^xsd:string ;
rdfs:label "marked gas loss of export"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:MarkedOilLossOfExport
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is not exporting oil due to marked product"^^xsd:string ;
rdfs:label "marked oil loss of export"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:MeasurePropertiesOfAFlow
rdf:type owl:Class ;
rdfs:comment "activity that is measuring the properties of a flow"^^xsd:string ;
rdfs:label "measure properties of a flow"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:MeasureSplitFactors
rdf:type ep-prodact:SplitFactorDeterminationType , owl:Class ;
rdfs:comment "activity that is measuring the fraction of a source flow that goes into different product streams"^^xsd:string ;
rdfs:label "measure split factors"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:MedicalTreatment
rdf:type owl:Class ;
rdfs:comment "activity that is medical treatment"^^xsd:string ;
rdfs:label "medical treatment"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:MedicalTreatmentInjury
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "injury that requires medical treatment"^^xsd:string ;
rdfs:label "medical treatment injury"^^xsd:string ;
rdfs:subClassOf ep-prodact:Injury .
ep-prodact:ModificationProject
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a modification project"^^xsd:string ;
rdfs:label "modification project"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:MonthlyProductionOperationToDate
rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ;
rdfs:comment "production operation from the beginning of a monthly reporting period to a date within, or at the end of, the reporting period"^^xsd:string ;
rdfs:label "monthly production operation to date"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperation .
ep-prodact:MovementOfProduct
rdf:type owl:Class ;
rdfs:comment "activity that is the movement of a product"^^xsd:string ;
rdfs:label "movement of product"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:MovementOfProductType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of activity defined by the SalesFlowPart enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "movement of product type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:NearMiss
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "incident that under different circumstances could have caused injury, illness and/or major damage to/loss of assets, or harm to the environment or to a third party (source: MPR-XSD)"^^xsd:string ;
rdfs:label "near miss"^^xsd:string ;
rdfs:subClassOf ep-prodact:Incident .
ep-prodact:OperationMistakes
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is an operation mistake"^^xsd:string ;
rdfs:label "operation mistakes"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:OtherReasonWellTest
rdf:type ep-prodact:WellTestReasonType , owl:Class ;
rdfs:comment "well test that is not initial, periodic, or a revision"^^xsd:string ;
rdfs:label "other reason well text"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
ep-prodact:PeriodicWellTest
rdf:type ep-prodact:WellTestReasonType , owl:Class ;
rdfs:comment "well test that is carried out as part of a periodic testing regime"^^xsd:string ;
rdfs:label "periodic well test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
ep-prodact:PersonnelSafetyIntroduction
rdf:type owl:Class ;
rdfs:comment "activity that is a personnel safety introduction"^^xsd:string ;
rdfs:label "personnel safety introduction"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:PlannedMaintenanceTurnaround
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a planned maintenance turnaround"^^xsd:string ;
rdfs:label "planned maintenace turnaround"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:PowerStationFailure
rdf:type ep-prodact:ProductionActivityType , owl:Class ;
rdfs:comment "activity that is the failure of a power station"^^xsd:string ;
rdfs:label "power station failure"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:PreventiveMaintenanceTopside
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is preventive maintenance topside"^^xsd:string ;
rdfs:label "preventive maintenace topside"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:ProcessAndOperationProblem
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a process and operation problem"^^xsd:string ;
rdfs:label "process and operation problem"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:ProductCompletedLifting
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is exported from a stock within a given time period (source: MPR-XSD)"^^xsd:string ;
rdfs:label "product completed lifting"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductGain-Loss
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is the lack of proper proportion or relation between the corresponding input and liftings transactions (source: MPR-XSD)"^^xsd:string ;
rdfs:label "product gain/loss"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductInputToStorage
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is addition to a stock within a given time period (source: MPR-XSD)"^^xsd:string ;
rdfs:label "product input to storage"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductLifted
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is from storage"^^xsd:string ;
rdfs:label "product lifted"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductLiftingEntitlement
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ;
rdfs:label "product lifting entitlement"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductLiftingEntitlementRemaining
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ;
rdfs:label "product lifting entitlement remaining"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductLinePack
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that provides the quantity of gas which the operator responsible for gas transportation decides must be provided by the gas producing fields in order to make deliveries as requested by gas shippers and provide operating tolerances (source: MPR-XSD)"^^xsd:string ;
rdfs:label "product line pack"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductMassAdjustment
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ;
rdfs:label "product mass adjustment"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductPartialLifting
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is a lifting up to a (not completed) determined point in time (source: MPR-XSD)"^^xsd:string ;
rdfs:label "product partial lifting"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductPipelineLifting
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is exported from a stock by a pipeline"^^xsd:string ;
rdfs:label "product pipeline lifting"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductProductionImbalance
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is the difference between the amount of gas entering and exiting a shipper's nomination portfolio. This will take into account all differences whatever the time or reason it occurs. (source: MPR-XSD)"^^xsd:string ;
rdfs:label "product production imbalance"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductSwap
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ;
rdfs:label "product swap"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductTankerLifting
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that is exported from a stock by a tanker"^^xsd:string ;
rdfs:label "product tanker lifting"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductTransaction
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ;
rdfs:label "product transaction"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductTransfer
rdf:type ep-prodact:MovementOfProductType , owl:Class ;
rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ;
rdfs:label "product transfer"^^xsd:string ;
rdfs:subClassOf ep-prodact:MovementOfProduct .
ep-prodact:ProductionActivityType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of activity defined by the OperationKind enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "production activity type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:ProductionOperation
rdf:type ep-prodact:ProductionActivityType , owl:Class ;
rdfs:comment "production activity that is all of what is done in the operation of a facility during a period"^^xsd:string ;
rdfs:label "production operation"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:ProductionOperationClassByDuration
rdf:type rdfs:Class ;
rdfs:comment "not used in the MPR"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:ProductionOperationInjection
rdf:type owl:Class ;
rdfs:comment "production activity that is all of what is done that is directly concerned with injection into a well, such that interuption of the activity interupts injection"^^xsd:string ;
rdfs:label "production operation injection"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:ProductionOperationMethodType
rdf:type rdfs:Class ;
rdfs:comment "e.g. 'flowing', 'pumping', 'gas lifted'"^^xsd:string ;
rdfs:label "production operation method type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:ProductionOperationProcessingLoss
rdf:type owl:Class ;
rdfs:comment "activity that results in a Production Operation Processing loss"^^xsd:string ;
rdfs:label "production operation processing loss"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:ProductionOperationProcessingLossForUnspecifiedReason
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a production operation processing loss without a specified reason"^^xsd:string ;
rdfs:label "production operation processing loss for unspecified reason"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:ProductionOperationProcessingRegulatoryReference
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a production operation processing regulatory reference"^^xsd:string ;
rdfs:label "production operation processing regulatory reference"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:ProductionOperationProduction
rdf:type owl:Class ;
rdfs:comment "production activity that is all of what is done that is directly concerned with production from a well, such that interuption of the activity interupts production"^^xsd:string ;
rdfs:label "production operation production"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:RaiseAnAlert
rdf:type owl:Class ;
rdfs:comment "activity that draws attention to an unexpected value in a set of data"^^xsd:string ;
rdfs:label "raise an alert"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:ReasonForLossOfProcessingType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of activity corresponding to the ReasonLost (reason for lost production) enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "reason for loss of processing type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:ReleaseToAir
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "spill or leak that is to air"^^xsd:string ;
rdfs:label "release to air"^^xsd:string ;
rdfs:subClassOf ep-prodact:SpillOrLeak .
ep-prodact:ReleaseToWater
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "spill or leak that is to water"^^xsd:string ;
rdfs:label "release to water"^^xsd:string ;
rdfs:subClassOf ep-prodact:SpillOrLeak .
ep-prodact:ReportHazard
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "activity that is making a formal report of a hazard"^^xsd:string ;
rdfs:label "report hazard"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:ReservoirLoss
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a reservoir loss"^^xsd:string ;
rdfs:label "reservoir loss"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:RestrictedWork
rdf:type owl:Class ;
rdfs:comment "<not defined in MPR-XSD>"^^xsd:string ;
rdfs:label "restricted work"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:RestrictedWorkInjury
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "injury that results in a reduction in ability to work"^^xsd:string ;
rdfs:label "restricted work injury"^^xsd:string ;
rdfs:subClassOf ep-prodact:Injury .
ep-prodact:RevisionWellTest
rdf:type ep-prodact:WellTestReasonType , owl:Class ;
rdfs:comment "well test that is <not defined in MPR-XSD>"^^xsd:string ;
rdfs:label "revision well test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
ep-prodact:SafetyActivityType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of activity corresponding to the SafetyType enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "safety activity type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:SafetyConsideration
rdf:type owl:Class ;
rdfs:comment "activity that is a safety consideration"^^xsd:string ;
rdfs:label "safety consideration"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:SafetyMeeting
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "activity that is a safety meeting"^^xsd:string ;
rdfs:label "safety meeting"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:SalesActivity
rdf:type owl:Class ;
rdfs:comment "activity that is all or part of a sale"^^xsd:string ;
rdfs:label "sales activity"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:SalesActivityType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of sales activity corresponding to the SaleEventKind enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "sales activity type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:SentAshore
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "activity that is sending a person ashore"^^xsd:string ;
rdfs:label "sent ashore"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:SevereAccident
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "accident that challenges safety systems at a level much higher than expected (source: MPR-XSD)"^^xsd:string ;
rdfs:label "severe accident"^^xsd:string ;
rdfs:subClassOf ep-prodact:AccidentOrInjury .
ep-prodact:ShutdownProduction
rdf:type owl:Class ;
rdfs:comment "production activity that is shutting down production"^^xsd:string ;
rdfs:label "shutdown production"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> .
ep-prodact:SickOnBoard
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "activity that is a person being ill on board"^^xsd:string ;
rdfs:label "sick on board"^^xsd:string ;
rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity .
ep-prodact:SpillOrLeak
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "incident that is a spill or leak"^^xsd:string ;
rdfs:label "spill or leak"^^xsd:string ;
rdfs:subClassOf ep-prodact:Incident .
ep-prodact:SplitFactorDeterminationType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of activity corresponding to the values of the allocatedSplit Boolean in the MPR-XSD"^^xsd:string ;
rdfs:label "split factor determination type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:StandbyVesselOperation
rdf:type owl:Class ;
rdfs:comment "marine operation that is conducted by a standby vessel"^^xsd:string ;
rdfs:label "standby vessel operation"^^xsd:string ;
rdfs:subClassOf ep-prodact:MarineOperation .
ep-prodact:StrikeOrLockout
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a strike or lock-out"^^xsd:string ;
rdfs:label "strike or lock-out"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:SupplyShipOperation
rdf:type owl:Class ;
rdfs:comment "marine operation that is conducted by a supply ship"^^xsd:string ;
rdfs:label "supply ship operation"^^xsd:string ;
rdfs:subClassOf ep-prodact:MarineOperation .
ep-prodact:TestingAndLogging
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is testing and logging"^^xsd:string ;
rdfs:label "testing and logging"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:ThirdPartyProcessingLoss
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a third party processing loss"^^xsd:string ;
rdfs:label "third party processing loss"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:TopsideEquipmentFailureMaintenance
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is an topside equipment failure and maintenance"^^xsd:string ;
rdfs:label "topside equipment failure maintenance"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:TrafficAccident
rdf:type ep-prodact:SafetyActivityType , owl:Class ;
rdfs:comment "accident that involves one or more moving vehicles"^^xsd:string ;
rdfs:label "traffic accident"^^xsd:string ;
rdfs:subClassOf ep-prodact:AccidentOrInjury .
ep-prodact:UnavailableTankerStorage
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is unavailable tanker storage"^^xsd:string ;
rdfs:label "unavailable tanker storage"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:UnknownReasonWellTest
rdf:type ep-prodact:WellTestReasonType , owl:Class ;
rdfs:comment "well test that is carried out for a reason that is not recorded"^^xsd:string ;
rdfs:label "unknown reason well test"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> .
ep-prodact:WeatherProblem
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is a weather problem"^^xsd:string ;
rdfs:label "weather problem"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:WellEquipmentFailureMaintenance
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is well equipment failure and maintenance"^^xsd:string ;
rdfs:label "well equipment failure maintenance"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:WellPlannedOperations
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is well planned operations"^^xsd:string ;
rdfs:label "well planned operations"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:WellPreventiveMaintenance
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is well preventive maintenance"^^xsd:string ;
rdfs:label "well preventive maintenance"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:WellProblems
rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ;
rdfs:comment "activity that is well problems"^^xsd:string ;
rdfs:label "well problems"^^xsd:string ;
rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
ep-prodact:WellTestReasonType
rdf:type rdfs:Class ;
rdfs:comment "class that consists of subclasses of well test corresponding to the TestReason enumeration in the MPR-XSD"^^xsd:string ;
rdfs:label "well test reason type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-prodact:accountNumber
rdf:type owl:DatatypeProperty ;
rdfs:comment "identifier of the account for a sales activity"^^xsd:string ;
rdfs:domain ep-prodact:SalesActivity ;
rdfs:label "account number"^^xsd:string .
ep-prodact:acquiresDataAbout
rdf:type owl:ObjectProperty ;
rdfs:comment "physical thing about which a data acquisition activity acquires data"^^xsd:string ;
rdfs:domain ep-prodact:DataAcquisitionActivity ;
rdfs:label "acquires data about"^^xsd:string ;
rdfs:range ep-core:PhysicalThing .
ep-prodact:alertUpon
rdf:type owl:ObjectProperty ;
rdfs:comment "thing that an alert is raised upon"^^xsd:string ;
rdfs:domain ep-prodact:RaiseAnAlert ;
rdfs:label "alert upon"^^xsd:string ;
rdfs:range owl:Thing .
ep-prodact:buyer
rdf:type owl:ObjectProperty ;
rdfs:comment "person or organization that is the buyer in a sales activity"^^xsd:string ;
rdfs:domain ep-prodact:SalesActivity ;
rdfs:label "buyer"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
ep-prodact:cargoBatchNumber
rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
rdfs:comment "identifier for a batch of cargo"^^xsd:string ;
rdfs:domain ep-material:BatchOfCargo ;
rdfs:label "cargo batch number"^^xsd:string .
ep-prodact:cargoNumber
rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
rdfs:comment "identifier of a cargo"^^xsd:string ;
rdfs:domain ep-material:QuantityOfMaterial ;
rdfs:label "cargo number"^^xsd:string .
ep-prodact:causedBy
rdf:type owl:ObjectProperty ;
rdfs:comment "activity that causes another"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#Activity> ;
rdfs:label "caused by"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:commentMade
rdf:type owl:DatatypeProperty ;
rdfs:comment "comment that is made by a make a comment activity"^^xsd:string ;
rdfs:domain ep-prodact:MakeAComment ;
rdfs:label "comment made"^^xsd:string .
ep-prodact:commentUpon
rdf:type owl:ObjectProperty ;
rdfs:comment "thing that a comment is made upon"^^xsd:string ;
rdfs:domain ep-prodact:MakeAComment ;
rdfs:label "comment upon"^^xsd:string ;
rdfs:range owl:Thing .
ep-prodact:commentator
rdf:type owl:ObjectProperty ;
rdfs:comment "person that makes a comment"^^xsd:string ;
rdfs:domain ep-prodact:MakeAComment ;
rdfs:label "commentator"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Person> .
ep-prodact:descriptionOfSource
rdf:type owl:DatatypeProperty ;
rdfs:comment "description of the source for a data acquisition activity"^^xsd:string ;
rdfs:domain ep-prodact:DataAcquisitionActivity ;
rdfs:label "description of source"^^xsd:string .
ep-prodact:destination
rdf:type owl:TransitiveProperty ;
rdfs:domain ep-prodact:MovementOfProduct ;
rdfs:label "destination"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/geography#PartOfTheSurfaceOfTheEarth> .
ep-prodact:facilityShutdown
rdf:type owl:ObjectProperty ;
rdfs:comment "facility that is shut down by a shut down production activity"^^xsd:string ;
rdfs:domain ep-prodact:ShutdownProduction ;
rdfs:label "facility shutdown"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> .
ep-prodact:hasDischargeFlow
rdf:type owl:ObjectProperty ;
rdfs:comment "flow that is discharged by a discharge water activity"^^xsd:string ;
rdfs:domain ep-prodact:DischargeWater ;
rdfs:label "has discharge flow"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/flow#Flow> .
ep-prodact:hasGasLiftChoke
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "gas lift choke for a well test activity"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#WellTest> ;
rdfs:label "has gas lift choke"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/production-equipment#GasLiftChoke> .
ep-prodact:hasLastPartOfTypeRemainingActivityPair
rdf:type owl:ObjectProperty ;
rdfs:comment "last part of type - remaining activity pair for an activity"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#Activity> ;
rdfs:label "has last part of type - remaining activity pair"^^xsd:string ;
rdfs:range ep-prodact:LastPartOfTypeRemainingActivityPair .
ep-prodact:hasPredecessor
rdf:type owl:TransitiveProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#Activity> ;
rdfs:label "has predecessor"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:hasShutInPressure
rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "pressure that is the shut-in pressure for a well test"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> ;
rdfs:label "has shut-in pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-prodact:hasValidPredecessor
rdf:type owl:TransitiveProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#Activity> ;
rdfs:label "has valid predecessor"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:injectionWellTestMaximumAnnularPressure
rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "pressure that is the maximum annular pressure for an injection well test"^^xsd:string ;
rdfs:domain ep-prodact:InjectionWellTest ;
rdfs:label "injection well test maximum annular pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-prodact:injectionWellTestMinimumAnnularPressure
rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "pressure that is the minimum annular pressure for an injection well test"^^xsd:string ;
rdfs:domain ep-prodact:InjectionWellTest ;
rdfs:label "injection well test minimum annular pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-prodact:injectionWellTestWellheadFlowingPressure
rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "pressure that is the flowing pressure at the wellhead for an injection well test"^^xsd:string ;
rdfs:domain ep-prodact:InjectionWellTest ;
rdfs:label "injection well test wellhead flowing pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-prodact:injectionWellTestWellheadMaximumPressure
rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "pressure that is the maximum pressure at the wellhead for an injection well test"^^xsd:string ;
rdfs:domain ep-prodact:InjectionWellTest ;
rdfs:label "injection well test wellhead maximum pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-prodact:lastPartOfTypeDefiningType
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "class of activity that the last part of type is a member of"^^xsd:string ;
rdfs:domain ep-prodact:LastPartOfTypeRemainingActivityPair ;
rdfs:label "last part of type defining type"^^xsd:string ;
rdfs:range owl:Class .
ep-prodact:measuredFlow
rdf:type owl:ObjectProperty ;
rdfs:comment "flow that is measured by a measure properties of a flow activity"^^xsd:string ;
rdfs:domain ep-prodact:MeasurePropertiesOfAFlow ;
rdfs:label "measured flow"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/flow#Flow> .
ep-prodact:movedProduct
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "quantity of material that is moved by a movement of product activity"^^xsd:string ;
rdfs:domain ep-prodact:MovementOfProduct ;
rdfs:label "moved product"^^xsd:string ;
rdfs:range ep-material:QuantityOfMaterial .
ep-prodact:onProductionFacility
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "production facility that a production activity is carried out upon"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ;
rdfs:label "on facility"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility> .
ep-prodact:performedByPersonOrOrganization
rdf:type owl:ObjectProperty ;
rdfs:comment "person or organization that performs an activity"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/activity#Activity> ;
rdfs:label "performed by person or organization"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
ep-prodact:performedByShip
rdf:type owl:ObjectProperty ;
rdfs:comment "ship that performs a marine operation"^^xsd:string ;
rdfs:domain ep-prodact:MarineOperation ;
rdfs:label "performed by ship"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/production-facility#Ship> .
ep-prodact:processingLost
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "quantity of material that is not produced as a result of a production operation processing loss activity"^^xsd:string ;
rdfs:domain ep-prodact:ProductionOperationProcessingLoss ;
rdfs:range ep-material:QuantityOfMaterial .
ep-prodact:productionActivityPeriodClassification
rdf:type owl:ObjectProperty ;
rdfs:comment "not used in the MPR"^^xsd:string ;
rdfs:range ep-prodact:ProductionOperationClassByDuration .
ep-prodact:remainingActivity
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "activity that is after the last part of type"^^xsd:string ;
rdfs:domain ep-prodact:LastPartOfTypeRemainingActivityPair ;
rdfs:label "remaining activity"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> .
ep-prodact:salesAdministrator
rdf:type owl:ObjectProperty ;
rdfs:comment "person or organization that administrates a sales activity"^^xsd:string ;
rdfs:domain ep-prodact:SalesActivity ;
rdfs:label "sales administrator"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
ep-prodact:sampledMaterial
rdf:type owl:ObjectProperty ;
rdfs:comment "quantity of material that is sampled by a fluid sampling and analysis activity"^^xsd:string ;
rdfs:domain ep-prodact:FluidSamplingAndAnalysis ;
rdfs:label "sampled material"^^xsd:string ;
rdfs:range ep-material:QuantityOfMaterial .
ep-prodact:samplingPerformedAt
rdf:type owl:ObjectProperty ;
rdfs:comment "facility that is the location of the sampling carried out within a fluid sampling and analysis activity"^^xsd:string ;
rdfs:domain ep-prodact:FluidSamplingAndAnalysis ;
rdfs:label "sampling performed at"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> .
ep-prodact:seller
rdf:type owl:ObjectProperty ;
rdfs:comment "person or organization that is the seller in a sales activity"^^xsd:string ;
rdfs:domain ep-prodact:SalesActivity ;
rdfs:label "seller"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> .
ep-prodact:shipper
rdf:type owl:ObjectProperty ;
rdfs:comment "organization that is the shipper in a movement of product activity"^^xsd:string ;
rdfs:domain ep-prodact:MovementOfProduct ;
rdfs:label "shipper"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
ep-prodact:sourceOrganization
rdf:type owl:ObjectProperty ;
rdfs:comment "organization that is the business unit from which the product originated (source MPR-XSD)"^^xsd:string ;
rdfs:domain ep-prodact:MovementOfProduct ;
rdfs:label "source organization"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
ep-prodact:timeWorked
rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:comment "time duration for the parts of a production operation activity that are working"^^xsd:string ;
rdfs:domain ep-prodact:ProductionOperation ;
rdfs:label "time worked"^^xsd:string ;
rdfs:range ep-core:TimeDuration .
ep-prodact:xpathToDataInSourceXmlFile
rdf:type owl:DatatypeProperty ;
rdfs:domain ep-prodact:RaiseAnAlert ;
rdfs:label "XPATH to data source in XML file"^^xsd:string .
<http://www.reportinghub.no/ep/schema/production-equipment#hasCaptain>
rdfs:comment "person that is the captain of a ship"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/production-facility#Ship> .
<http://www.reportinghub.no/ep/schema/production-equipment#hasValvePosition>
rdfs:comment "ratio that is the fraction of valve opening"^^xsd:string .