PLANNING_VALUES.ttl
29.5 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
# baseURI: http://data.posccaesar.org/NCS_PLANNING/
# imports: http://data.posccaesar.org/ilap/
# imports: http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS
# imports: http://data.posccaesar.org/ilap/userfields/
@prefix : <http://data.posccaesar.org/NCS_PLANNING/> .
@prefix ILAP: <http://data.posccaesar.org/ilap/> .
@prefix NPD: <http://data.posccaesar.org/npd/> .
@prefix USERFIELDS: <http://data.posccaesar.org/ilap/userfields/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix p1: <http://example.org/file1#> .
@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://data.posccaesar.org/rdl/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
: rdf:type owl:Ontology ;
owl:imports USERFIELDS: , <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> , ILAP: .
ILAP:
rdf:type owl:Ontology ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ILAP:ABEX
rdf:type ILAP:PlanExpenseType ;
rdfs:label "ABEX"^^xsd:string .
ILAP:AccruedTimeContract
rdf:type owl:Class ;
rdfs:label "Accrued time contract"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:Active
rdf:type ILAP:Status ;
rdfs:label "Active"^^xsd:string .
ILAP:ActivityWBS_1
ILAP:hasWBSprojectExpenseType
ILAP:CAPEX .
ILAP:Added
rdf:type ILAP:Status ;
rdfs:label "Added"^^xsd:string .
ILAP:AfterShutdown
rdf:type ILAP:ShutdownPhase ;
rdfs:label "After shutdown"^^xsd:string .
ILAP:Application
rdfs:comment "A Thing that is a software program that creates, manipulates, stores and retrieves Data (adapted from eHow.com)."^^xsd:string .
ILAP:Approved
rdf:type ILAP:Status ;
rdfs:label "Approved"^^xsd:string .
ILAP:Aquisition
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Aquisition"^^xsd:string .
ILAP:Assistance
rdf:type ILAP:Status ;
rdfs:label "Assistance"^^xsd:string .
ILAP:AwaitingApproval
rdf:type ILAP:Status ;
rdfs:label "Awaiting Approval"^^xsd:string .
ILAP:BeforeShutdown
rdf:type ILAP:ShutdownPhase ;
rdfs:label "Before shutdown"^^xsd:string .
ILAP:BrownFieldProject
rdf:type ILAP:PlanProjectType ;
rdfs:label "Brown field project"^^xsd:string .
ILAP:BusinessArea
rdf:type ILAP:PlanGeoArea ;
rdfs:label "Business area"^^xsd:string .
ILAP:BusinessAsUsual
rdf:type ILAP:PlanObjectiveType ;
rdfs:label "Business as usual"^^xsd:string .
ILAP:CAPEX
rdf:type ILAP:PlanExpenseType ;
rdfs:label "CAPEX"^^xsd:string .
ILAP:COR_KI
rdf:type owl:Class ;
rdfs:label "KI - Automation (ILAP extension to COR)"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_K> .
ILAP:COR_KK
rdf:type owl:Class ;
rdfs:label "KK - Maintenance (ILAP extension to COR)"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_K> .
ILAP:COR_KX
rdf:type owl:Class ;
rdfs:label "KX - LCI (ILAP extension to COR)"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_K> .
ILAP:COR_LI
rdf:type owl:Class ;
rdfs:label "Automation Direct Labor"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_L> .
ILAP:COR_LV
rdf:type owl:Class ;
rdfs:label "Pre-Commisioning"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_L> .
ILAP:COR_LX
rdf:type owl:Class ;
rdfs:label "Insulation Direct Labor"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_L> .
ILAP:COR_MX
rdf:type owl:Class ;
rdfs:label "Commisioning Assistance"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_M> .
ILAP:Calculated
rdf:type ILAP:Status ;
rdfs:label "Calculated"^^xsd:string .
ILAP:Campaign
rdf:type ILAP:ShutdownType ;
rdfs:label "Campaign"^^xsd:string .
ILAP:Cancelled
rdf:type ILAP:Status ;
rdfs:label "Cancelled"^^xsd:string .
ILAP:ChangeOver
rdf:type ILAP:ShutdownType ;
rdfs:label "Change over"^^xsd:string .
ILAP:ClosingDown
rdf:type ILAP:ShutdownPhase ;
rdfs:label "Closing down"^^xsd:string .
ILAP:Completed
rdf:type ILAP:Status ;
rdfs:label "Completed"^^xsd:string .
ILAP:CompletedAdditional
rdf:type ILAP:Status ;
rdfs:label "Completed Additional"^^xsd:string .
ILAP:CompletedAssistance
rdf:type ILAP:Status ;
rdfs:label "Completed Assistance"^^xsd:string .
ILAP:CompletedPast
rdf:type ILAP:Status ;
rdfs:label "Completed Past"^^xsd:string .
ILAP:CompletedWork
rdf:type ILAP:Status ;
rdfs:label "Completed Work"^^xsd:string .
ILAP:Continent
rdf:type ILAP:PlanGeoArea ;
rdfs:label "Continent"^^xsd:string .
ILAP:CostDriven
rdf:type ILAP:PlanContractType ;
rdfs:label "Cost driven"^^xsd:string .
ILAP:Country
rdf:type ILAP:PlanGeoArea ;
rdfs:label "Country"^^xsd:string .
ILAP:DEES
rdf:type ILAP:Application ;
rdfs:label "DEES"^^xsd:string .
ILAP:DependentOnShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Dependent on Shutdown"^^xsd:string .
ILAP:Development
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Development"^^xsd:string .
ILAP:DisasterRecovery
rdf:type ILAP:PlanObjectiveType ;
rdfs:label "Disaster recovery"^^xsd:string .
ILAP:Disposal
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Disposal"^^xsd:string .
ILAP:Draft
rdf:type ILAP:Status ;
rdfs:label "Draft"^^xsd:string .
ILAP:DrillingAndWell
rdf:type ILAP:PlanProjectType ;
rdfs:label "Drilling and well"^^xsd:string .
ILAP:DrillingShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Drilling shutdown"^^xsd:string .
ILAP:DuringNormalOperation
rdf:type ILAP:ShutdownType ;
rdfs:label "During Normal Operation"^^xsd:string .
ILAP:DuringShutdown
rdf:type ILAP:ShutdownType , ILAP:ShutdownPhase ;
rdfs:label "During shutdown"^^xsd:string , "During Shutdown"^^xsd:string .
ILAP:EIS
rdf:type ILAP:Application ;
rdfs:label "EIS"^^xsd:string .
ILAP:EquipmentShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Equipment Shutdown"^^xsd:string .
ILAP:Estimated
rdf:type ILAP:Status ;
rdfs:label "Estimated"^^xsd:string .
ILAP:Excel
rdf:type ILAP:Application ;
rdfs:label "Excel"^^xsd:string .
ILAP:Exploration
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Exploration"^^xsd:string .
ILAP:FLEXEX
rdf:type ILAP:PlanExpenseType ;
rdfs:label "FLEXEX"^^xsd:string .
ILAP:Facility
rdf:type ILAP:PlanGeoArea ;
rdfs:label "Facility"^^xsd:string .
ILAP:Field
rdf:type ILAP:PlanGeoArea ;
rdfs:label "Field"^^xsd:string .
ILAP:FieldShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Field Shutdown"^^xsd:string .
ILAP:FieldStudy
rdf:type ILAP:PlanProjectType ;
rdfs:label "Field study"^^xsd:string .
ILAP:FourD_E_and_I
rdf:type ILAP:Application ;
rdfs:label "4D E&I"^^xsd:string .
ILAP:FrameAgreement
rdf:type owl:Class ;
rdfs:label "Frame agreement"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:Friday
rdf:type ILAP:CalendarDay ;
rdfs:label "Friday"^^xsd:string .
ILAP:From00To08
rdf:type ILAP:CalendarHour ;
rdfs:label "From 00 To 08"^^xsd:string ;
ILAP:hasActivityEndTime
"08:00:00"^^xsd:time ;
ILAP:hasActivityStartTime
"00:00:00"^^xsd:time .
ILAP:From08To16
rdf:type ILAP:CalendarHour ;
rdfs:label "From 08 To 16"^^xsd:string ;
ILAP:hasActivityEndTime
"16:00:00"^^xsd:time ;
ILAP:hasActivityStartTime
"08:00:00"^^xsd:time .
ILAP:From16To24
rdf:type ILAP:CalendarHour ;
rdfs:label "From 16 To 24"^^xsd:string ;
ILAP:hasActivityEndTime
"24:00:00"^^xsd:time ;
ILAP:hasActivityStartTime
"16:00:00"^^xsd:time .
ILAP:GasExportShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Gas Export Shutdown"^^xsd:string .
ILAP:GasInjectionShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Gas Injection Shutdown"^^xsd:string .
ILAP:GreenFieldProject
rdf:type ILAP:PlanProjectType ;
rdfs:label "Green field project"^^xsd:string .
ILAP:GuaranteeWork
rdf:type owl:Class ;
rdfs:label "Guarantee work"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:HC_systemsWork
rdf:type owl:Class ;
rdfs:label "HC systems work"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:HeightWork
rdf:type owl:Class ;
rdfs:label "Height work"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:HighActivityPeriod
rdf:type ILAP:ShutdownType ;
rdfs:label "High activity period"^^xsd:string .
ILAP:HighCriticality
rdf:type ILAP:Criticality ;
rdfs:label "High criticality"^^xsd:string .
ILAP:HighPriority
rdf:type ILAP:Priority .
ILAP:HotWork
rdf:type owl:Class ;
rdfs:label "Hot work"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:IFS
rdf:type ILAP:Application ;
rdfs:label "IFS"^^xsd:string .
ILAP:IncentiveContract
rdf:type owl:Class ;
rdfs:label "Incentive contract"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:IncreasedRecovery
rdf:type ILAP:PlanObjectiveType ;
rdfs:label "Increased recovery"^^xsd:string .
ILAP:IncrementalImprovement
rdf:type ILAP:PlanObjectiveType ;
rdfs:label "Incremental improvement"^^xsd:string .
ILAP:IndependentOfOperation
rdf:type ILAP:ShutdownType ;
rdfs:label "Independent of operation"^^xsd:string .
ILAP:InvoicableWork
rdf:type owl:Class ;
rdfs:label "Invoicable work"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:L1_PPS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 1 - Project Portfolio Schedule"^^xsd:string .
ILAP:L2_PSS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 2 - Project Summary Schedule"^^xsd:string .
ILAP:L3_CMS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 3 - Contract Master Schedule"^^xsd:string .
ILAP:L3_PMS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 3 - Project Master Schedule"^^xsd:string .
ILAP:L4_CNS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 4 - Contract Control Schedule"^^xsd:string .
ILAP:L5_CWS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 5 - Contract Work Schedule"^^xsd:string .
ILAP:L6_COS
rdf:type ILAP:PlanLevel ;
rdfs:label "Level 6 - Contractor Operations Schedule"^^xsd:string .
ILAP:LiftingOperation
rdf:type owl:Class ;
rdfs:label "Lifting operation"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:Limited
rdf:type ILAP:Status ;
rdfs:label "Limited"^^xsd:string .
ILAP:LivingQuarterShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Living Quarter Shutdown"^^xsd:string .
ILAP:LowCriticality
rdf:type ILAP:Criticality ;
rdfs:label "Low criticality"^^xsd:string .
ILAP:LowPriority
rdf:type ILAP:Priority .
ILAP:LumpSumContract
rdf:type owl:Class ;
rdfs:label "Lump sum contract"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:MS_Project
rdf:type ILAP:Application ;
rdfs:label "MS Project"^^xsd:string .
ILAP:ManagedClosedown
rdf:type ILAP:PlanObjectiveType ;
rdfs:label "Managed closedown"^^xsd:string .
ILAP:MaterialDeliveredAtBase
rdf:type ILAP:MaterialOrderStatus ;
rdfs:label "Material Delivered at Base"^^xsd:string .
ILAP:MaterialDeliveredOffshore
rdf:type ILAP:MaterialOrderStatus ;
rdfs:label "Material Delivered Offshore"^^xsd:string .
ILAP:MaterialDeliveredOnshore
rdf:type ILAP:MaterialOrderStatus ;
rdfs:label "Material Delivered Onshore"^^xsd:string .
ILAP:MaterialDeliveryDelayed
rdf:type ILAP:MaterialOrderStatus ;
rdfs:label "Material delivery delayed"^^xsd:string .
ILAP:MaterialDeliveryOnTime
rdf:type ILAP:MaterialOrderStatus ;
rdfs:label "Material Delivery on Time"^^xsd:string .
ILAP:MaterialOnOrder
rdf:type ILAP:MaterialOrderStatus ;
rdfs:label "Material on Order"^^xsd:string .
ILAP:Measured
rdf:type ILAP:Status ;
rdfs:label "Measured"^^xsd:string .
ILAP:MeasuredProgressContract
rdf:type owl:Class ;
rdfs:label "Measured progress contract"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:MiniShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Mini shutdown"^^xsd:string .
ILAP:Modification
rdf:type ILAP:PlanProjectType ;
rdfs:label "Modification"^^xsd:string .
ILAP:Monday
rdf:type ILAP:CalendarDay ;
rdfs:label "Monday"^^xsd:string .
ILAP:NPDelement_1
rdf:type NPD:NPDelement ;
rdfs:label "NPDelement 1"^^xsd:string .
ILAP:New
rdf:type ILAP:Status ;
rdfs:label "New"^^xsd:string .
ILAP:NonInvoicableWork
rdf:type owl:Class ;
rdfs:label "Non invoicable work"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:NonScheduledShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Non-Scheduled Shutdown"^^xsd:string .
ILAP:NormalCriticality
rdf:type ILAP:Criticality ;
rdfs:label "Normal criticality"^^xsd:string .
ILAP:NormalPriority
rdf:type ILAP:Priority .
ILAP:OPEX
rdf:type ILAP:PlanExpenseType ;
rdfs:label "OPEX"^^xsd:string .
ILAP:OnHold
rdf:type ILAP:Status ;
rdfs:label "On Hold"^^xsd:string .
ILAP:OperationAndMaintenance
rdf:type ILAP:PlanProjectType ;
rdfs:label "Operation and maintenance"^^xsd:string .
ILAP:OperationsAndMaintenance
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Operations and Maintenance"^^xsd:string .
ILAP:Pacs
rdf:type ILAP:Application ;
rdfs:label "Pacs"^^xsd:string .
ILAP:PartlyTransferred
rdf:type ILAP:Status ;
rdfs:label "Partly Transferred"^^xsd:string .
ILAP:Pending
rdf:type ILAP:Status ;
rdfs:label "Pending"^^xsd:string .
ILAP:Planned
rdf:type ILAP:Status ;
rdfs:label "Planned"^^xsd:string .
ILAP:PlannedActivity
rdfs:comment "An Activity that is part of an Execution Plan, and for which the scope of work is defined."^^xsd:string .
ILAP:Planning
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Planning"^^xsd:string .
ILAP:PlanningApplication
rdfs:comment "An Application used for generating, analyzing or communicating Data related to Activities, Constraints and Networks."^^xsd:string .
ILAP:Portfolio
rdfs:comment "A collection of Projects and Programmes (Portfolio components) grouped together to facilitate their management to meet strategic objectives (ISO 21502)."^^xsd:string .
ILAP:Postponed
rdf:type ILAP:Status ;
rdfs:label "Postponed"^^xsd:string .
ILAP:Primavera
rdf:type ILAP:Application ;
rdfs:label "Primavera"^^xsd:string .
ILAP:ProArc
rdf:type ILAP:Application ;
rdfs:label "Pro arc"^^xsd:string .
ILAP:Procosys
rdf:type ILAP:Application ;
rdfs:label "Procosys"^^xsd:string .
ILAP:ProductionShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Production Shutdown"^^xsd:string .
ILAP:Programme
rdfs:comment """A group of related Projects, Programmes, and other related Activity components.
(ISO 21500)."""^^xsd:string .
ILAP:Project
rdfs:comment "An Activity that is a temporary endeavor (in contrast with ongoing operations) with a defined beginning and end, constrained by available time, funding and resources, undertaken to achieve an objective conforming to specific requirements, meet unique objectives, and bring about beneficial change or added value (adapted from BSI and Wikipedia)."^^xsd:string .
ILAP:ProjectWork
rdf:type ILAP:Status ;
rdfs:label "Project Work"^^xsd:string .
ILAP:RAMEX
rdf:type ILAP:PlanExpenseType ;
rdfs:label "RAMEX"^^xsd:string .
ILAP:RadicalChange
rdf:type ILAP:PlanObjectiveType ;
rdfs:label "Radical change"^^xsd:string .
ILAP:Ready
rdf:type ILAP:Status ;
rdfs:label "Ready"^^xsd:string .
ILAP:Regular8To16WorkingDayCalendar
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass
[ rdf:type owl:Class ;
owl:oneOf (ILAP:StandardFreeWeekendPeriod)
] ;
owl:onProperty ILAP:hasCalendarPeriod
] .
ILAP:ReimbursableContract
rdf:type owl:Class ;
rdfs:label "Reimbursable contract"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:Released
rdf:type ILAP:Status ;
rdfs:label "Released"^^xsd:string .
ILAP:Removal
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Removal"^^xsd:string .
ILAP:RemovalOfBarriers
rdf:type owl:Class ;
rdfs:label "Removal of barriers"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:Renewal
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Renewal"^^xsd:string .
ILAP:Replanned
rdf:type ILAP:Status ;
rdfs:label "Replanned"^^xsd:string .
ILAP:ReservoirDrillingOperation
rdf:type owl:Class ;
rdfs:label "Reservoir drilling operation"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:ResourceDriven
rdf:type ILAP:PlanContractType ;
rdfs:label "Resource driven"^^xsd:string .
ILAP:RevisionShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Revision Shutdown"^^xsd:string .
ILAP:SAP
rdf:type ILAP:Application ;
rdfs:label "SAP"^^xsd:string .
ILAP:SafetyTestShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Safety Test Shutdown"^^xsd:string .
ILAP:Safran
rdf:type ILAP:Application ;
rdfs:label "Safran"^^xsd:string .
ILAP:Saturday
rdf:type ILAP:CalendarDay ;
rdfs:label "Saturday"^^xsd:string .
ILAP:ScheduleDriven
rdf:type ILAP:PlanContractType ;
rdfs:label "Schedule driven"^^xsd:string .
ILAP:Scheduled
rdf:type ILAP:Status ;
rdfs:label "Scheduled"^^xsd:string .
ILAP:ScheduledShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Scheduled Shutdown"^^xsd:string .
ILAP:Sent
rdf:type ILAP:Status ;
rdfs:label "Sent"^^xsd:string .
ILAP:ShallowGasOperation
rdf:type owl:Class ;
rdfs:label "Shallow gas operation"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:ShutdownAndDecommisioning
rdf:type ILAP:PlanLifecycleStage ;
rdfs:label "Shutdown and Decommisioning"^^xsd:string .
ILAP:ShutdownNotEvaluated
rdf:type ILAP:ShutdownType ;
rdfs:label "Shutdown not evaluated"^^xsd:string .
ILAP:Smartplant_Foundation
rdf:type ILAP:Application ;
rdfs:label "Smartplant Foundation"^^xsd:string .
ILAP:StandardFreeWeekendPeriod
rdf:type ILAP:CalendarFreePeriodWeekRepeat ;
rdfs:label "Standard Free Weekend Period"^^xsd:string ;
ILAP:hasCalendarPeriodFreeDay
ILAP:Saturday , ILAP:Sunday .
ILAP:StandardWorkWeekdayPeriod
rdf:type ILAP:CalendarWorkPeriodWeekRepeat ;
rdfs:label "Standard work weekday period"^^xsd:string .
ILAP:StartingUp
rdf:type ILAP:ShutdownPhase ;
rdfs:label "Starting up"^^xsd:string .
ILAP:Sunday
rdf:type ILAP:CalendarDay ;
rdfs:label "Sunday"^^xsd:string .
ILAP:SystemShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "System Shutdown"^^xsd:string .
ILAP:TIMEX
rdf:type ILAP:PlanExpenseType ;
rdfs:label "TIMEX"^^xsd:string .
ILAP:TargetBudget
rdf:type owl:Class ;
rdfs:label "Target budget"^^xsd:string ;
rdfs:subClassOf ILAP:ContractType .
ILAP:Thursday
rdf:type ILAP:CalendarDay ;
rdfs:label "Thursday"^^xsd:string .
ILAP:TrainShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Train Shutdown"^^xsd:string .
ILAP:Transferred
rdf:type ILAP:Status ;
rdfs:label "Transferred"^^xsd:string .
ILAP:Tuesday
rdf:type ILAP:CalendarDay ;
rdfs:label "Tuesday"^^xsd:string .
ILAP:Unknown
rdf:type ILAP:Status ;
rdfs:label "Unknown"^^xsd:string .
ILAP:VesselOperation
rdf:type owl:Class ;
rdfs:label "Vessel operation"^^xsd:string ;
rdfs:subClassOf ILAP:RiskType .
ILAP:Void
rdf:type ILAP:Status ;
rdfs:label "Void"^^xsd:string .
ILAP:WaterInjectionShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Water Injection Shutdown"^^xsd:string .
ILAP:WaterProductionShutdown
rdf:type ILAP:ShutdownType ;
rdfs:label "Water Production Shutdown"^^xsd:string .
ILAP:Wednesday
rdf:type ILAP:CalendarDay ;
rdfs:label "Wednesday"^^xsd:string .
ILAP:WeekendsFreeCalendar
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass
[ rdf:type owl:Class ;
owl:oneOf (ILAP:StandardFreeWeekendPeriod)
] ;
owl:onProperty ILAP:hasCalendarPeriod
] .
ILAP:WellTransfer
rdf:type ILAP:ShutdownType ;
rdfs:label "Well Transfer "^^xsd:string .
ILAP:Wellbore
rdf:type ILAP:PlanGeoArea ;
rdfs:label "Wellbore"^^xsd:string .
ILAP:WinFab
rdf:type ILAP:Application ;
rdfs:label "Win fab"^^xsd:string .
ILAP:hasActivityAsset
rdfs:domain ILAP:PlannedActivity .
ILAP:hasActivityBaselineSchedule
rdfs:range ILAP:Schedule .
ILAP:hasActivityPhase
rdfs:range ILAP:Phase .
ILAP:hasActivityResource
rdfs:domain ILAP:Activity ;
rdfs:range ILAP:Resource .
ILAP:hasActivityResourceProfile
rdfs:domain ILAP:Activity .
ILAP:hasActivityShutdown
rdfs:range ILAP:Shutdown .
ILAP:hasActivityWBSelement
rdfs:range ILAP:ActivityWBS .
ILAP:hasActivityWeight
rdfs:domain ILAP:Activity ;
rdfs:range xsd:float .
ILAP:hasCalendarDate
rdfs:domain ILAP:Calendar ;
rdfs:range xsd:date .
ILAP:hasCalendarPeriodDay
rdfs:domain ILAP:CalendarPeriod ;
rdfs:range ILAP:CalendarDay .
ILAP:hasCalendarPeriodHour
rdfs:domain ILAP:CalendarPeriod ;
rdfs:range ILAP:CalendarHour .
ILAP:hasCalendarTime
rdfs:domain ILAP:Calendar ;
rdfs:range xsd:time .
ILAP:hasPlanAssetOwner
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasPlanContractor
rdfs:range ILAP:Contractor .
ILAP:hasPlanLicensePartner
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasPlanOperator
rdfs:range ILAP:Operator .
ILAP:hasPlanRegulator
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasPlanResponsible
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasPlanSupplier
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasSourceUserField
rdfs:range USERFIELDS:UserField .
ILAP:hasWBSphase
rdfs:range <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/SAB_Thing> .
ILAP:hasWBSprojectExpenseType
rdfs:range ILAP:PlanExpenseType .
ILAP:hasWBSresult
rdfs:range <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/PBS_Thing> .
ILAP:hasWorkTaskResponsible
rdfs:range ILAP:ResponsiblePerson .
<http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_Thing>
rdfs:subClassOf ILAP:Resource , ILAP:Discipline , ILAP:Category .
<http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/PBS_Thing>
rdfs:subClassOf ILAP:Result , ILAP:PlanContentType .
<http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/SAB_Thing>
rdfs:subClassOf ILAP:ProjectPhase .
USERFIELDS:UserField
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Discipline ;
owl:onProperty USERFIELDS:hasDiscipline
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:MilestoneType ;
owl:onProperty USERFIELDS:hasMilestoneType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Contractor ;
owl:onProperty USERFIELDS:hasContractor
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Facility ;
owl:onProperty USERFIELDS:hasFacility
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Discipline ;
owl:onProperty USERFIELDS:hasCategory
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Phase ;
owl:onProperty USERFIELDS:hasProjectPhaseType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Result ;
owl:onProperty USERFIELDS:hasProduct
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:ShutdownType ;
owl:onProperty USERFIELDS:hasShutdownType
] .
<http://data.posccaesar.org/npd/ontology/Licence>
rdf:type owl:Class ;
rdfs:label "NPD-list of Norwegian Production License Areas"^^xsd:string ;
rdfs:subClassOf ILAP:License .
<http://data.posccaesar.org/npd/ontology/OperatingCompany>
rdf:type owl:Class ;
rdfs:label "Operating company"^^xsd:string ;
rdfs:subClassOf ILAP:Operator .
<http://data.posccaesar.org/npd/ontology/discoveryField>
rdf:type owl:Class ;
rdfs:label "Discovery Field"^^xsd:string ;
rdfs:subClassOf ILAP:Field .
<http://data.posccaesar.org/npd/ontology/ilap-interface/Facility>
rdf:type owl:Class ;
rdfs:label "NPD-list of Facilities"^^xsd:string ;
rdfs:subClassOf ILAP:Facility .
<http://data.posccaesar.org/npd/ontology/ilap-interface/Field>
rdf:type owl:Class ;
rdfs:label "NPD-list of Fields"^^xsd:string ;
rdfs:subClassOf ILAP:Field .
<http://data.posccaesar.org/npd/ontology/productionFacility>
rdf:type owl:Class ;
rdfs:label "Production Facility"^^xsd:string ;
rdfs:subClassOf ILAP:Facility .
rdl:RDS282149
rdf:type owl:Class ;
rdfs:label "RDS282149"^^xsd:string ;
rdfs:subClassOf owl:Thing , ILAP:ResponsibleOrganization .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#B>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#C>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#E>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#H>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#K>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#L>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#M>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#Q>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#R>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#S>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#X>
rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/PBSCoding#A>
rdfs:subClassOf <http://data.posccaesar.org/sccs/PBScode> .
<http://www.ilap.no/codes/NORSOK/Z-014/PBSCoding#B>
rdfs:subClassOf <http://data.posccaesar.org/sccs/PBScode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#1>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#2>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#3>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#4>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#5>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#6>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .
<http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#7>
rdfs:subClassOf <http://data.posccaesar.org/sccs/SABcode> .