SCHEMA_NPD-v1.0.ttl
25 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
# baseURI: http://www.reportinghub.no/np/schema/1.0/npd
# imports: http://www.reportinghub.no/ep/schema/1.0/core
# imports: http://www.reportinghub.no/ep/schema/1.0/facility
# imports: http://www.reportinghub.no/ep/schema/1.0/organization
# imports: http://www.reportinghub.no/ep/schema/1.0/well
@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
@prefix facility: <http://www.reportinghub.no/ep/schema/1.0/facility#> .
@prefix npd: <http://www.reportinghub.no/np/schema/npd#> .
@prefix organization: <http://www.reportinghub.no/ep/schema/1.0/organization#> .
@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 rdl: <http://rds.posccaesar.org/2008/06/OWL/RDL#> .
@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/facility#Facility>
rdfs:subClassOf npd:NPDIndividual .
<http://www.reportinghub.no/ep/schema/facility#Field>
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty npd:currentActivityStatus
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty npd:fieldDiscoveryWellBore
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty npd:fieldOperator
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty npd:fieldOwner
] .
<http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAField>
rdfs:subClassOf npd:FixedFacilityParent .
<http://www.reportinghub.no/ep/schema/organization#Company>
rdfs:subClassOf npd:Individual .
<http://www.reportinghub.no/ep/schema/well#Well>
rdfs:subClassOf npd:Individual .
<http://www.reportinghub.no/ep/schema/well#WellBore>
rdfs:subClassOf npd:NPDIndividual .
<http://www.reportinghub.no/np/schema/1.0/npd>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/well> ;
owl:versionInfo "0.1.0"^^xsd:string .
npd:BusinessArrangementArea
rdf:type owl:Class ;
rdfs:comment "an area on the Norweigan Continental Shelf that is that is a result of unitisations, sliding scale rules or other business arrangements which have altered the terms of the original production licence"^^xsd:string ;
rdfs:label "Norwegian business arrangement area"@en ;
rdfs:subClassOf ep-core:PhysicalThing , npd:NPDIndividual , npd:Owner .
npd:DWBP_Injection
rdf:type npd:DevelopmentWellBorePurpose ;
rdfs:label "injection"@en ;
npd:code "INJECTION"^^xsd:string .
npd:DWBP_Observation
rdf:type npd:DevelopmentWellBorePurpose ;
rdfs:label "observation"@en ;
npd:code "OBSERVATION"^^xsd:string .
npd:DWBP_Production
rdf:type npd:DevelopmentWellBorePurpose ;
rdfs:label "production"@en ;
npd:code "PRODUCTION"^^xsd:string .
npd:DevelopmentWellBorePurpose
rdf:type owl:Class ;
rdfs:comment "the purpose of the development wellbore"^^xsd:string ;
rdfs:label "Development well bore purpose"@en ;
rdfs:subClassOf npd:WellBorePurpose ;
owl:oneOf (npd:DWBP_Injection npd:DWBP_Observation npd:DWBP_Production) .
npd:Discovery
rdf:type owl:Class ;
rdfs:comment "A discovery is a petroleum deposit or several petroleum deposits collectively, which have been discovered in the same well, in which through testing, sampling or logging there has been established a probability of the existence of mobile petroleum (includes both commercial and technical discovery)."^^xsd:string ;
rdfs:label "petroleum deposit discovery"@en ;
rdfs:subClassOf npd:NPDIndividual .
npd:EWBP_Appraisal
rdf:type npd:ExplorationWellBorePurpose ;
rdfs:label "appraisal"@en ;
npd:code "APPRAISAL"^^xsd:string .
npd:EWBP_Wildcat
rdf:type npd:ExplorationWellBorePurpose ;
rdfs:label "wildcat"@en ;
npd:code "WILDCAT"^^xsd:string .
npd:EWBP_Wildcat-Appraisal
rdf:type npd:ExplorationWellBorePurpose ;
rdfs:label "wildcat & appraisal"@en ;
npd:code "WILDCAT&APPRAISAL"^^xsd:string .
npd:Enumeration
rdf:type owl:Class ;
rdfs:label "Enumeration"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty npd:code
] .
npd:ExplorationWellBorePurpose
rdf:type owl:Class ;
rdfs:comment "the purpose of the exploration wellbore"^^xsd:string ;
rdfs:label "Exploration well bore purpose"@en ;
rdfs:subClassOf npd:WellBorePurpose ;
owl:oneOf (npd:EWBP_Appraisal npd:EWBP_Wildcat-Appraisal npd:EWBP_Wildcat) .
npd:FixedFacilityParent
rdf:type owl:Class ;
rdfs:comment "the parent facility of a fixed facility"^^xsd:string ;
rdfs:label "fixed facility parent"@en ;
rdfs:subClassOf npd:NPDIndividual .
npd:HCT_Gas
rdf:type npd:HCType ;
rdfs:label "gas"@en ;
npd:code "GAS"^^xsd:string .
npd:HCT_Gas-Condensate
rdf:type npd:HCType ;
rdfs:label "gas/condensate"@en ;
npd:code "GAS/CONDENSATE"^^xsd:string .
npd:HCT_Oil
rdf:type npd:HCType ;
rdfs:label "oil"@en ;
npd:code "OIL"^^xsd:string .
npd:HCT_Oil-Gas
rdf:type npd:HCType ;
rdfs:label "oil/gas"@en ;
npd:code "OIL/GAS"^^xsd:string .
npd:HCType
rdf:type owl:Class ;
rdfs:comment "class that is a valid hydrocarbon type in the NPD fact pages"^^xsd:string ;
rdfs:label "HC Type"@en ;
rdfs:subClassOf npd:Enumeration ;
owl:oneOf (npd:HCT_Gas-Condensate npd:HCT_Oil-Gas npd:HCT_Gas npd:HCT_Oil) .
npd:Individual
rdf:type owl:Class ;
rdfs:label "Individual"@en ;
rdfs:subClassOf owl:Thing .
npd:LS_Active
rdf:type npd:LicenceStatus ;
rdfs:label "active"@en ;
npd:code "ACTIVE"^^xsd:string .
npd:LS_Inactive
rdf:type npd:LicenceStatus ;
rdfs:label "inactive"@en ;
npd:code "INACTIVE"^^xsd:string .
npd:Licence
rdf:type owl:Class ;
rdfs:comment "an area on the Norweigan Continental Shelf to which the Ministry of Petroleum and Energy has granted a production licence"^^xsd:string ;
rdfs:label "Norwegian production license area"@en ;
rdfs:subClassOf ep-core:PhysicalThing , npd:NPDIndividual , npd:Owner .
npd:LicenceStatus
rdf:type owl:Class ;
rdfs:comment "class that is the active – inactive status of a licence"^^xsd:string ;
rdfs:label "Licence status"@en ;
rdfs:subClassOf npd:Enumeration ;
owl:oneOf (npd:LS_Active npd:LS_Inactive) .
npd:MNA_BarentsSea
rdf:type npd:MainNCSArea ;
rdfs:label "Barents sea"@en ;
npd:code "Barents sea"^^xsd:string .
npd:MNA_NorthSea
rdf:type npd:MainNCSArea ;
rdfs:label "North sea"@en ;
npd:code "North sea"^^xsd:string .
npd:MNA_NorwegianSea
rdf:type npd:MainNCSArea ;
rdfs:label "Norwegian sea"@en ;
npd:code "Norwegian sea"^^xsd:string .
npd:MainNCSArea
rdf:type owl:Class ;
rdfs:comment "part of the surface of the earth that is a main area of the Norwegian Continental Shelf"^^xsd:string ;
rdfs:label "Main NCS Area"@en ;
rdfs:subClassOf npd:Enumeration ;
owl:oneOf (npd:MNA_NorthSea npd:MNA_NorwegianSea npd:MNA_BarentsSea) .
npd:NPDIndividual
rdf:type owl:Class ;
rdfs:comment "an individual that is a member of an NPD-related class"^^xsd:string ;
rdfs:label "NPD individual"@en ;
rdfs:subClassOf npd:Individual .
npd:OperatingCompany
rdf:type owl:Class ;
rdfs:comment "a company operating a facility"^^xsd:string ;
rdfs:label "operating company"@en ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/organization#Company> , npd:NPDIndividual .
npd:Owner
rdf:type owl:Class ;
rdfs:comment "a business arrangement area or production license on the Norweigan Continental Shelf "^^xsd:string ;
rdfs:label "owner"@en ;
rdfs:subClassOf npd:Individual .
npd:ParcellBAA
rdf:type owl:Class ;
rdfs:comment "a business arrangement area based on a parcel"^^xsd:string ;
rdfs:label "parcel BAA"@en ;
rdfs:subClassOf npd:BusinessArrangementArea .
npd:ParentCompany
rdf:type owl:Class ;
rdfs:comment "a company that is the parent of another company"^^xsd:string ;
rdfs:label "parent company"@en ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:SeismicAreaBAA
rdf:type owl:Class ;
rdfs:comment "a business arrangement area that is a seismic area"^^xsd:string ;
rdfs:label "seismic area BAA"@en ;
rdfs:subClassOf npd:BusinessArrangementArea .
npd:Share
rdf:type owl:Class ;
rdfs:comment "a company's share in something "^^xsd:string ;
rdfs:label "share"@en ;
rdfs:subClassOf ep-core:PhysicalThing .
npd:ShareOfBAA
rdf:type owl:Class ;
rdfs:comment "a share of the ownership of a BAA"^^xsd:string ;
rdfs:label "share of BAA"@en ;
rdfs:subClassOf npd:Share .
npd:ShareOfLicence
rdf:type owl:Class ;
rdfs:comment "a share of the ownership of a license"^^xsd:string ;
rdfs:label "share of license"@en ;
rdfs:subClassOf npd:Share .
npd:SlidingScaleBAA
rdf:type owl:Class ;
rdfs:comment "a business arrangement area that is based on a sliding scale"^^xsd:string ;
rdfs:label "sliding scale BAA"@en ;
rdfs:subClassOf npd:BusinessArrangementArea .
npd:TUF
rdf:type owl:Class ;
rdfs:comment "a transportation and utilization facility"^^xsd:string ;
rdfs:label "TUF"@en ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> , npd:FixedFacilityParent .
npd:TUFPart
rdf:type owl:Class ;
rdfs:comment "A part of a TUF"^^xsd:string ;
rdfs:label "TUF part"@en ;
rdfs:subClassOf npd:FixedFacilityParent .
npd:UnitizedBAA
rdf:type owl:Class ;
rdfs:comment "a business arrangement area that is unitized"^^xsd:string ;
rdfs:label "unitized BAA"@en ;
rdfs:subClassOf npd:BusinessArrangementArea .
npd:WBC_CO2
rdf:type npd:WellBoreContent ;
rdfs:label "CO2"@en ;
npd:code "CO2"^^xsd:string .
npd:WBC_Cuttings
rdf:type npd:WellBoreContent ;
rdfs:label "cuttings"@en ;
npd:code "CUTTINGS"^^xsd:string .
npd:WBC_Gas
rdf:type npd:WellBoreContent ;
rdfs:label "gas"@en ;
npd:code "GAS"^^xsd:string .
npd:WBC_Gas-Condensate
rdf:type npd:WellBoreContent ;
rdfs:label "gas/condensate"@en ;
npd:code "GAS/CONDENSATE"^^xsd:string .
npd:WBC_NotApplicable
rdf:type npd:WellBoreContent ;
rdfs:label "not applicable"@en ;
npd:code "NOT APPLICABLE"^^xsd:string .
npd:WBC_NotAvailable
rdf:type npd:WellBoreContent ;
rdfs:label "not available"@en ;
npd:code "NOT AVAILABLE"^^xsd:string .
npd:WBC_Oil
rdf:type npd:WellBoreContent ;
rdfs:label "oil"@en ;
npd:code "OIL"^^xsd:string .
npd:WBC_Oil-Gas
rdf:type npd:WellBoreContent ;
rdfs:label "oil/gas"@en ;
npd:code "OIL/GAS"^^xsd:string .
npd:WBC_Water
rdf:type npd:WellBoreContent ;
rdfs:label "water"@en ;
npd:code "WATER"^^xsd:string .
npd:WBC_Water-Gas
rdf:type npd:WellBoreContent ;
rdfs:label "water/gas"@en ;
npd:code "WATER/GAS"^^xsd:string .
npd:WellBoreContent
rdf:type owl:Class ;
rdfs:comment "class of material that is a valid wellbore content in the NPD fact pages"^^xsd:string ;
rdfs:label "Well bore content"@en ;
rdfs:subClassOf npd:Enumeration ;
owl:oneOf (npd:WBC_Water-Gas npd:WBC_Water npd:WBC_Gas npd:WBC_Gas-Condensate npd:WBC_NotAvailable npd:WBC_Cuttings npd:WBC_Oil npd:WBC_NotApplicable npd:WBC_Oil-Gas npd:WBC_CO2) .
npd:WellBorePurpose
rdf:type owl:Class ;
rdfs:comment "class of activity that is a valid wellbore purpose in the NPD fact pages"^^xsd:string ;
rdfs:label "Well bore purpose"@en ;
rdfs:subClassOf npd:Enumeration .
npd:baaOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "the current operator of a BAA"^^xsd:string ;
rdfs:domain npd:BusinessArrangementArea ;
rdfs:label "BAA operator"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:baaShared
rdf:type owl:ObjectProperty ;
rdfs:comment "the BAA of which this is a share"^^xsd:string ;
rdfs:domain npd:ShareOfBAA ;
rdfs:label "BAA shared"@en ;
rdfs:range npd:BusinessArrangementArea .
npd:belongsTo
rdf:type owl:ObjectProperty ;
rdfs:comment "the parent facility of the fixed facility"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#FixedFacility> ;
rdfs:label "belongs to"@en ;
rdfs:range npd:FixedFacilityParent .
npd:code
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD code"^^xsd:string ;
rdfs:label "code"@en .
npd:companyShortName
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD company short name"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/organization#Company> ;
rdfs:label "company short name"@en ;
rdfs:range xsd:string .
npd:currentActivityStatus
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD status of the field"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
rdfs:label "current activity status"@en ;
rdfs:range xsd:string .
npd:currentOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "the company that is the current operator of a fixed facility"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#FixedFacility> ;
rdfs:label "current operator"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:currentlyResponsibleCompany
rdf:type owl:ObjectProperty ;
rdfs:comment "the company that is currently responsible for a moveable facility"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#MoveableFacility> ;
rdfs:label "currently responsible company"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:discoveryCurrentActivityStatus
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD status of the discovery"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery current activity status"@en ;
rdfs:range xsd:string .
npd:discoveryField
rdf:type owl:ObjectProperty ;
rdfs:comment "the field in which the discovery exists"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery field"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#Field> .
npd:discoveryHCType
rdf:type owl:ObjectProperty ;
rdfs:comment "the hydrocarbon type of the discovery"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery HC type"@en ;
rdfs:range npd:HCType .
npd:discoveryMainNcsArea
rdf:type owl:ObjectProperty ;
rdfs:comment "the main NCS area in which discovery is located"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery main NCS area"@en ;
rdfs:range npd:MainNCSArea .
npd:discoveryOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "the operator of the discovery"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery operator"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:discoveryOwner
rdf:type owl:ObjectProperty ;
rdfs:comment "the BAA or PL that owns the discovery"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery owner"@en ;
rdfs:range npd:Owner .
npd:discoveryWellBore
rdf:type owl:ObjectProperty ;
rdfs:comment "the wellbore that made the discovery"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery wellbore"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#WellBore> .
npd:discoveryYear
rdf:type owl:DatatypeProperty ;
rdfs:comment "the year the discovery was made"^^xsd:string ;
rdfs:domain npd:Discovery ;
rdfs:label "discovery year"@en ;
rdfs:range xsd:integer .
npd:drilledInProductionLicence
rdf:type owl:ObjectProperty ;
rdfs:comment "the production licence under which the wellbore was drilled"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "drilled in production licence"@en ;
rdfs:range npd:Licence .
npd:drillingFacility
rdf:type owl:ObjectProperty ;
rdfs:comment "the drilling facility of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "drilling facility"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> .
npd:drillingOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "the drilling operator of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "drilling operator"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:endDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD end date of the thing"^^xsd:string ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "end date"@en ;
rdfs:range xsd:date .
npd:facilityFunctions
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD functions of the facility"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
rdfs:label "facility functions"@en ;
rdfs:range xsd:string .
npd:facilityKind
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD kind of the facility"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
rdfs:label "facility kind"@en ;
rdfs:range xsd:string .
npd:fieldDiscoveryWellBore
rdf:type owl:ObjectProperty ;
rdfs:comment "the wellbore that proved the field"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
rdfs:label "field discovery wellbore"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#WellBore> .
npd:fieldOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "the company operating the field"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
rdfs:label "field operator"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:fieldOwner
rdf:type owl:ObjectProperty ;
rdfs:comment "the licence that owns the field"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Field> ;
rdfs:label "field owner"@en ;
rdfs:range npd:Owner .
npd:fixedFacilityPhase
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD phase of the fixed facility"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#FixedFacility> ;
rdfs:label "fixed facility phase"@en ;
rdfs:range xsd:string .
npd:id
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD identifier"^^xsd:string ;
rdfs:domain npd:NPDIndividual ;
rdfs:label "NPD identifier"@en ;
rdfs:range xsd:string .
npd:licenceOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "the company that is the operator of the licence"^^xsd:string ;
rdfs:domain npd:Licence ;
rdfs:label "licence operator"@en ;
rdfs:range npd:OperatingCompany .
npd:licenceShared
rdf:type owl:ObjectProperty ;
rdfs:comment "the licence of which this is a share"^^xsd:string ;
rdfs:domain npd:ShareOfLicence ;
rdfs:label "licence shared"@en ;
rdfs:range npd:Licence .
npd:licenceStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "the NPD status of the licence"^^xsd:string ;
rdfs:domain npd:Licence ;
rdfs:label "licence status"@en ;
rdfs:range npd:LicenceStatus .
npd:licensingActivity
rdf:type owl:DatatypeProperty ;
rdfs:comment "the Ministry of Petroleum and Energy licencing activity under which the licence was granted"^^xsd:string ;
rdfs:domain npd:Licence ;
rdfs:label "licencing activity"@en ;
rdfs:range xsd:string .
npd:name
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD name"^^xsd:string ;
rdfs:domain npd:Individual ;
rdfs:label "NPD name"@en ;
rdfs:range xsd:string .
npd:organisationNumber
rdf:type owl:DatatypeProperty ;
rdfs:comment "the official Norwegian organization number of the operating company"^^xsd:string ;
rdfs:domain npd:OperatingCompany ;
rdfs:label "organisation number"@en ;
rdfs:range xsd:string .
npd:parentCompany
rdf:type owl:ObjectProperty ;
rdfs:comment "the parent company of the operating company"^^xsd:string ;
rdfs:domain npd:OperatingCompany ;
rdfs:label "parent company"@en ;
rdfs:range npd:ParentCompany .
npd:partOfTUF
rdf:type owl:ObjectProperty ;
rdfs:comment "the TUF of which this is a part"^^xsd:string ;
rdfs:domain npd:TUFPart ;
rdfs:label "part of TUF"@en ;
rdfs:range npd:TUF .
npd:partOfWell
rdf:type owl:ObjectProperty ;
rdfs:comment "the well of which the wellbore is a part"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "part of well"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/well#Well> .
npd:percentageOfShare
rdf:type owl:DatatypeProperty ;
rdfs:comment "the percent of the total share of the licence"^^xsd:string ;
rdfs:domain npd:Share ;
rdfs:label "percentage of share"@en ;
rdfs:range xsd:float .
npd:productionFacility
rdf:type owl:ObjectProperty ;
rdfs:comment "the production facility for the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "production facility"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> .
npd:shareHolder
rdf:type owl:ObjectProperty ;
rdfs:comment "the company holding the share"^^xsd:string ;
rdfs:domain npd:Share ;
rdfs:label "share holder"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/organization#Company> .
npd:startDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD start date of the thing"^^xsd:string ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "start date"@en ;
rdfs:range xsd:date .
npd:wellBoreCompletionDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "the completion date of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "wellbore completion date"@en ;
rdfs:range xsd:date ;
rdfs:subPropertyOf npd:endDate .
npd:wellBoreContent
rdf:type owl:ObjectProperty ;
rdfs:comment "the NPD content of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "wellbore content"@en ;
rdfs:range npd:WellBoreContent .
npd:wellBoreDrillPermit
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD drill permit of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "wellbore drill permit"@en ;
rdfs:range xsd:string .
npd:wellBorePurpose
rdf:type owl:ObjectProperty ;
rdfs:comment "the NPD purpose of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "wellbore purpose"@en ;
rdfs:range npd:WellBorePurpose .
npd:wellBoreType
rdf:type owl:DatatypeProperty ;
rdfs:comment "the NPD type of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "wellbore type"@en ;
rdfs:range xsd:string .
npd:wellPartOfField
rdf:type owl:ObjectProperty ;
rdfs:comment "the well is part of field"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#Well> ;
rdfs:label "well part of field"@en ;
rdfs:range <http://www.reportinghub.no/ep/schema/facility#Field> .
npd:wellboreOwner
rdf:type owl:ObjectProperty ;
rdfs:comment "the owning licence of the wellbore"^^xsd:string ;
rdfs:domain <http://www.reportinghub.no/ep/schema/well#WellBore> ;
rdfs:label "wellbore owner"@en ;
rdfs:range npd:Owner .