SAB.ttl
30.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
# baseURI: http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SABCoding/
# c14n-version: 3
@prefix : <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SABCoding/> .
@prefix ILAP: <http://data.posccaesar.org/ilap/> .
@prefix SAB: <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SABCoding/> .
@prefix SCCS: <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/> .
@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 skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
SAB:
rdf:type owl:Ontology ;
rdfs:label "SAB – standard activity breakdown. This hierarchical structure provides a timescale attribute to express when during the project lifetime, expenditures and activities occur. The structure presented in this manual is independent of project specific work breakdown structure (WBS) or activity breakdown structures (ABS). The alphabetical prefix introduces a code for use of SCCS throughout all phases of a project, from exploration through removal of facilities."^^xsd:string ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
skos:notation "SAB Ontology for NORSOK Z-014 Ed. 2 May 2012"^^xsd:string ;
.
SAB:NorsokZ014SABplanningActivityClass
rdf:type owl:Class ;
rdfs:subClassOf SCCS:NorsokZ014thing ;
rdfs:subClassOf owl:Thing ;
.
SAB:SAB_1
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Management"^^xsd:string ;
skos:notation "1"^^xsd:string ;
.
SAB:SAB_11
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Project management"^^xsd:string ;
rdfs:subClassOf SAB:SAB_1 ;
skos:notation "11"^^xsd:string ;
.
SAB:SAB_12
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Construction management"^^xsd:string ;
rdfs:subClassOf SAB:SAB_1 ;
skos:notation "12"^^xsd:string ;
.
SAB:SAB_13
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "External services"^^xsd:string ;
rdfs:subClassOf SAB:SAB_1 ;
skos:notation "13"^^xsd:string ;
.
SAB:SAB_2
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Engineering and procurement"^^xsd:string ;
skos:notation "2"^^xsd:string ;
.
SAB:SAB_21
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Engineering"^^xsd:string ;
rdfs:subClassOf SAB:SAB_2 ;
skos:notation "21"^^xsd:string ;
.
SAB:SAB_211
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Pre-engineering"^^xsd:string ;
rdfs:subClassOf SAB:SAB_21 ;
skos:notation "211"^^xsd:string ;
.
SAB:SAB_212
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Design engineering"^^xsd:string ;
rdfs:subClassOf SAB:SAB_21 ;
skos:notation "212"^^xsd:string ;
.
SAB:SAB_213
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Fabrication engineering"^^xsd:string ;
rdfs:subClassOf SAB:SAB_21 ;
skos:notation "213"^^xsd:string ;
.
SAB:SAB_22
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Procurement"^^xsd:string ;
rdfs:subClassOf SAB:SAB_2 ;
skos:notation "22"^^xsd:string ;
.
SAB:SAB_23
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Construction supervision"^^xsd:string ;
rdfs:subClassOf SAB:SAB_2 ;
skos:notation "23"^^xsd:string ;
.
SAB:SAB_3
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Material deliveries"^^xsd:string ;
skos:notation "3"^^xsd:string ;
.
SAB:SAB_31
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Equipment"^^xsd:string ;
rdfs:subClassOf SAB:SAB_3 ;
skos:notation "31"^^xsd:string ;
.
SAB:SAB_311
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Company provided equipment"^^xsd:string ;
rdfs:subClassOf SAB:SAB_31 ;
skos:notation "311"^^xsd:string ;
.
SAB:SAB_312
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Contractor provided equipment"^^xsd:string ;
rdfs:subClassOf SAB:SAB_31 ;
skos:notation "312"^^xsd:string ;
.
SAB:SAB_313
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Surplus equipment"^^xsd:string ;
rdfs:subClassOf SAB:SAB_31 ;
skos:notation "313"^^xsd:string ;
.
SAB:SAB_32
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Bulk"^^xsd:string ;
rdfs:subClassOf SAB:SAB_3 ;
skos:notation "32"^^xsd:string ;
.
SAB:SAB_321
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Company provided bulk"^^xsd:string ;
rdfs:subClassOf SAB:SAB_32 ;
skos:notation "321"^^xsd:string ;
.
SAB:SAB_322
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Contractor provided bulk"^^xsd:string ;
rdfs:subClassOf SAB:SAB_32 ;
skos:notation "322"^^xsd:string ;
.
SAB:SAB_323
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Surplus bulk"^^xsd:string ;
rdfs:subClassOf SAB:SAB_32 ;
skos:notation "323"^^xsd:string ;
.
SAB:SAB_33
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Spare parts"^^xsd:string ;
rdfs:subClassOf SAB:SAB_3 ;
skos:notation "33"^^xsd:string ;
.
SAB:SAB_4
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Construction"^^xsd:string ;
skos:notation "4"^^xsd:string ;
.
SAB:SAB_41
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Onshore construction"^^xsd:string ;
rdfs:subClassOf SAB:SAB_4 ;
skos:notation "41"^^xsd:string ;
.
SAB:SAB_411
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Mobilisation"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "411"^^xsd:string ;
.
SAB:SAB_412
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Civil Work"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "412"^^xsd:string ;
.
SAB:SAB_413
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Fabrication of major assemblies"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "413"^^xsd:string ;
.
SAB:SAB_4131
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_413 ;
skos:notation "4131"^^xsd:string ;
.
SAB:SAB_4132
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_413 ;
skos:notation "4132"^^xsd:string ;
.
SAB:SAB_414
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Other Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "414"^^xsd:string ;
.
SAB:SAB_4141
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_414 ;
skos:notation "4141"^^xsd:string ;
.
SAB:SAB_4142
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_414 ;
skos:notation "4142"^^xsd:string ;
.
SAB:SAB_415
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Modification"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "415"^^xsd:string ;
.
SAB:SAB_4151
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Stripping / Dismantling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_415 ;
skos:notation "4151"^^xsd:string ;
.
SAB:SAB_4152
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Refitting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_415 ;
skos:notation "4152"^^xsd:string ;
.
SAB:SAB_4153
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Revamp"^^xsd:string ;
rdfs:subClassOf SAB:SAB_415 ;
skos:notation "4153"^^xsd:string ;
.
SAB:SAB_4154
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Relocate"^^xsd:string ;
rdfs:subClassOf SAB:SAB_415 ;
skos:notation "4154"^^xsd:string ;
.
SAB:SAB_417
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "417"^^xsd:string ;
.
SAB:SAB_4171
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_417 ;
skos:notation "4171"^^xsd:string ;
.
SAB:SAB_4172
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Startup"^^xsd:string ;
rdfs:subClassOf SAB:SAB_417 ;
skos:notation "4172"^^xsd:string ;
.
SAB:SAB_418
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Weighing, Seafastening & Load-out"^^xsd:string ;
rdfs:subClassOf SAB:SAB_41 ;
skos:notation "418"^^xsd:string ;
.
SAB:SAB_42
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Atshore construction"^^xsd:string ;
rdfs:subClassOf SAB:SAB_4 ;
skos:notation "42"^^xsd:string ;
.
SAB:SAB_422
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Civil work"^^xsd:string ;
rdfs:subClassOf SAB:SAB_42 ;
skos:notation "422"^^xsd:string ;
.
SAB:SAB_423
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Major Assemblies"^^xsd:string ;
rdfs:subClassOf SAB:SAB_42 ;
skos:notation "423"^^xsd:string ;
.
SAB:SAB_4231
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_423 ;
skos:notation "4231"^^xsd:string ;
.
SAB:SAB_4232
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_423 ;
skos:notation "4232"^^xsd:string ;
.
SAB:SAB_424
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Other fabrication activities"^^xsd:string ;
rdfs:subClassOf SAB:SAB_42 ;
skos:notation "424"^^xsd:string ;
.
SAB:SAB_4241
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_424 ;
skos:notation "4241"^^xsd:string ;
.
SAB:SAB_4242
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_424 ;
skos:notation "4242"^^xsd:string ;
.
SAB:SAB_425
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Modification"^^xsd:string ;
rdfs:subClassOf SAB:SAB_42 ;
skos:notation "425"^^xsd:string ;
.
SAB:SAB_4251
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Stripping/dismantling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_425 ;
skos:notation "4251"^^xsd:string ;
.
SAB:SAB_4252
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Refitting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_425 ;
skos:notation "4252"^^xsd:string ;
.
SAB:SAB_4253
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Revamp"^^xsd:string ;
rdfs:subClassOf SAB:SAB_425 ;
skos:notation "4253"^^xsd:string ;
.
SAB:SAB_426
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Vendor assistance"^^xsd:string ;
rdfs:subClassOf SAB:SAB_42 ;
skos:notation "426"^^xsd:string ;
.
SAB:SAB_427
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_42 ;
skos:notation "427"^^xsd:string ;
.
SAB:SAB_43
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Inshore construction"^^xsd:string ;
rdfs:subClassOf SAB:SAB_4 ;
skos:notation "43"^^xsd:string ;
.
SAB:SAB_431
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Mobilisation"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "431"^^xsd:string ;
.
SAB:SAB_432
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Civil work"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "432"^^xsd:string ;
.
SAB:SAB_433
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Major Assemblies"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "433"^^xsd:string ;
.
SAB:SAB_4331
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_433 ;
skos:notation "4331"^^xsd:string ;
.
SAB:SAB_4332
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_433 ;
skos:notation "4332"^^xsd:string ;
.
SAB:SAB_434
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Other fabrication activities"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "434"^^xsd:string ;
.
SAB:SAB_4341
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_434 ;
skos:notation "4341"^^xsd:string ;
.
SAB:SAB_4342
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_434 ;
skos:notation "4342"^^xsd:string ;
.
SAB:SAB_435
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Modification"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "435"^^xsd:string ;
.
SAB:SAB_4351
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Stripping/dismantling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_435 ;
skos:notation "4351"^^xsd:string ;
.
SAB:SAB_4352
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Refitting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_435 ;
skos:notation "4352"^^xsd:string ;
.
SAB:SAB_4353
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Revamp"^^xsd:string ;
rdfs:subClassOf SAB:SAB_435 ;
skos:notation "4353"^^xsd:string ;
.
SAB:SAB_4354
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Relocate"^^xsd:string ;
rdfs:subClassOf SAB:SAB_435 ;
skos:notation "4354"^^xsd:string ;
.
SAB:SAB_436
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Vendor assistance"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "436"^^xsd:string ;
.
SAB:SAB_437
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_43 ;
skos:notation "437"^^xsd:string ;
.
SAB:SAB_44
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Offshore construction"^^xsd:string ;
rdfs:subClassOf SAB:SAB_4 ;
skos:notation "44"^^xsd:string ;
.
SAB:SAB_441
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Mobilisation"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "441"^^xsd:string ;
.
SAB:SAB_442
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Civil work"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "442"^^xsd:string ;
.
SAB:SAB_443
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Activities related to major assemblies"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "443"^^xsd:string ;
.
SAB:SAB_4431
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_443 ;
skos:notation "4431"^^xsd:string ;
.
SAB:SAB_4432
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_443 ;
skos:notation "4432"^^xsd:string ;
.
SAB:SAB_444
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Other fabrication activities"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "444"^^xsd:string ;
.
SAB:SAB_4441
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Prefabrication"^^xsd:string ;
rdfs:subClassOf SAB:SAB_444 ;
skos:notation "4441"^^xsd:string ;
.
SAB:SAB_4442
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation/assembly/erection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_444 ;
skos:notation "4442"^^xsd:string ;
.
SAB:SAB_445
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Modification"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "445"^^xsd:string ;
.
SAB:SAB_4451
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Stripping/dismantling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_445 ;
skos:notation "4451"^^xsd:string ;
.
SAB:SAB_4452
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Refitting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_445 ;
skos:notation "4452"^^xsd:string ;
.
SAB:SAB_4453
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Revamp"^^xsd:string ;
rdfs:subClassOf SAB:SAB_445 ;
skos:notation "4453"^^xsd:string ;
.
SAB:SAB_4454
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Relocate"^^xsd:string ;
rdfs:subClassOf SAB:SAB_445 ;
skos:notation "4454"^^xsd:string ;
.
SAB:SAB_446
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Vendor assistance"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "446"^^xsd:string ;
.
SAB:SAB_447
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "447"^^xsd:string ;
.
SAB:SAB_4471
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_447 ;
skos:notation "4471"^^xsd:string ;
.
SAB:SAB_4472
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Startup"^^xsd:string ;
rdfs:subClassOf SAB:SAB_447 ;
skos:notation "4472"^^xsd:string ;
.
SAB:SAB_448
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Non-working hours (lunch, standby, etc)"^^xsd:string ;
rdfs:subClassOf SAB:SAB_44 ;
skos:notation "448"^^xsd:string ;
.
SAB:SAB_5
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Operations"^^xsd:string ;
skos:notation "5"^^xsd:string ;
.
SAB:SAB_51
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "SAB 51: Landbased operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_5 ;
skos:notation "51"^^xsd:string ;
.
SAB:SAB_511
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Lifting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_51 ;
skos:notation "511"^^xsd:string ;
.
SAB:SAB_512
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Transport"^^xsd:string ;
rdfs:subClassOf SAB:SAB_51 ;
skos:notation "512"^^xsd:string ;
.
SAB:SAB_513
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Pipeline operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_51 ;
skos:notation "513"^^xsd:string ;
.
SAB:SAB_514
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Cable operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_51 ;
skos:notation "514"^^xsd:string ;
.
SAB:SAB_515
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Other landbased operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_51 ;
skos:notation "515"^^xsd:string ;
.
SAB:SAB_52
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Offshore operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_5 ;
skos:notation "52"^^xsd:string ;
.
SAB:SAB_521
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Survey"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "521"^^xsd:string ;
.
SAB:SAB_522
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Seabed preparation"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "522"^^xsd:string ;
.
SAB:SAB_5221
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Trenching"^^xsd:string ;
rdfs:subClassOf SAB:SAB_522 ;
skos:notation "5221"^^xsd:string ;
.
SAB:SAB_5222
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Dredging"^^xsd:string ;
rdfs:subClassOf SAB:SAB_522 ;
skos:notation "5222"^^xsd:string ;
.
SAB:SAB_5223
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Back filling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_522 ;
skos:notation "5223"^^xsd:string ;
.
SAB:SAB_5224
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Rock dumping"^^xsd:string ;
rdfs:subClassOf SAB:SAB_522 ;
skos:notation "5224"^^xsd:string ;
.
SAB:SAB_523
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "523"^^xsd:string ;
.
SAB:SAB_5231
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Lifting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_523 ;
skos:notation "5231"^^xsd:string ;
.
SAB:SAB_5232
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Piling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_523 ;
skos:notation "5232"^^xsd:string ;
.
SAB:SAB_5233
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Grouting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_523 ;
skos:notation "5233"^^xsd:string ;
.
SAB:SAB_5234
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Mating"^^xsd:string ;
rdfs:subClassOf SAB:SAB_523 ;
skos:notation "5234"^^xsd:string ;
.
SAB:SAB_524
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Pipeline operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "524"^^xsd:string ;
.
SAB:SAB_5241
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Pipelaying"^^xsd:string ;
rdfs:subClassOf SAB:SAB_524 ;
skos:notation "5241"^^xsd:string ;
.
SAB:SAB_5242
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Tie-in"^^xsd:string ;
rdfs:subClassOf SAB:SAB_524 ;
skos:notation "5242"^^xsd:string ;
.
SAB:SAB_5243
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Hydrotesting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_524 ;
skos:notation "5243"^^xsd:string ;
.
SAB:SAB_5244
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "RFO"^^xsd:string ;
rdfs:subClassOf SAB:SAB_524 ;
skos:notation "5244"^^xsd:string ;
.
SAB:SAB_525
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Umbilical and cable operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "525"^^xsd:string ;
.
SAB:SAB_5251
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Laying"^^xsd:string ;
rdfs:subClassOf SAB:SAB_525 ;
skos:notation "5251"^^xsd:string ;
.
SAB:SAB_5252
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Pull-in and connection"^^xsd:string ;
rdfs:subClassOf SAB:SAB_525 ;
skos:notation "5252"^^xsd:string ;
.
SAB:SAB_5253
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Testing"^^xsd:string ;
rdfs:subClassOf SAB:SAB_525 ;
skos:notation "5253"^^xsd:string ;
.
SAB:SAB_526
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Transport"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "526"^^xsd:string ;
.
SAB:SAB_5261
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Towing"^^xsd:string ;
rdfs:subClassOf SAB:SAB_526 ;
skos:notation "5261"^^xsd:string ;
.
SAB:SAB_5262
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Heavy lift transport"^^xsd:string ;
rdfs:subClassOf SAB:SAB_526 ;
skos:notation "5262"^^xsd:string ;
.
SAB:SAB_527
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Subsea structure operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "527"^^xsd:string ;
.
SAB:SAB_5271
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Testing"^^xsd:string ;
rdfs:subClassOf SAB:SAB_527 ;
skos:notation "5271"^^xsd:string ;
.
SAB:SAB_5272
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Installation"^^xsd:string ;
rdfs:subClassOf SAB:SAB_527 ;
skos:notation "5272"^^xsd:string ;
.
SAB:SAB_5273
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Commissioning"^^xsd:string ;
rdfs:subClassOf SAB:SAB_527 ;
skos:notation "5273"^^xsd:string ;
.
SAB:SAB_528
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Particular abandonment operations"^^xsd:string ;
rdfs:subClassOf SAB:SAB_52 ;
skos:notation "528"^^xsd:string ;
.
SAB:SAB_5281
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Cutting of structures"^^xsd:string ;
rdfs:subClassOf SAB:SAB_528 ;
skos:notation "5281"^^xsd:string ;
.
SAB:SAB_5282
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Topling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_528 ;
skos:notation "5282"^^xsd:string ;
.
SAB:SAB_5283
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Removal/lifting"^^xsd:string ;
rdfs:subClassOf SAB:SAB_528 ;
skos:notation "5283"^^xsd:string ;
.
SAB:SAB_5284
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Transport and dumping"^^xsd:string ;
rdfs:subClassOf SAB:SAB_528 ;
skos:notation "5284"^^xsd:string ;
.
SAB:SAB_53
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Logistics"^^xsd:string ;
rdfs:subClassOf SAB:SAB_5 ;
skos:notation "53"^^xsd:string ;
.
SAB:SAB_531
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Supply base/terminal"^^xsd:string ;
rdfs:subClassOf SAB:SAB_53 ;
skos:notation "531"^^xsd:string ;
.
SAB:SAB_532
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Supply and distribution"^^xsd:string ;
rdfs:subClassOf SAB:SAB_53 ;
skos:notation "532"^^xsd:string ;
.
SAB:SAB_533
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Personnel transport"^^xsd:string ;
rdfs:subClassOf SAB:SAB_53 ;
skos:notation "533"^^xsd:string ;
.
SAB:SAB_534
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Flotel/LQ/camps"^^xsd:string ;
rdfs:subClassOf SAB:SAB_53 ;
skos:notation "534"^^xsd:string ;
.
SAB:SAB_54
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Drilling and completion"^^xsd:string ;
rdfs:subClassOf SAB:SAB_5 ;
skos:notation "54"^^xsd:string ;
.
SAB:SAB_541
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Onshore drilling and completion"^^xsd:string ;
rdfs:subClassOf SAB:SAB_54 ;
skos:notation "541"^^xsd:string ;
.
SAB:SAB_5411
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Fixed rig drilling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_541 ;
skos:notation "5411"^^xsd:string ;
.
SAB:SAB_5412
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Mobile rig drilling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_541 ;
skos:notation "5412"^^xsd:string ;
.
SAB:SAB_542
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Offshore drilling and completion"^^xsd:string ;
rdfs:subClassOf SAB:SAB_54 ;
skos:notation "542"^^xsd:string ;
.
SAB:SAB_5421
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Predrilling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_542 ;
skos:notation "5421"^^xsd:string ;
.
SAB:SAB_5422
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Subsea drilling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_542 ;
skos:notation "5422"^^xsd:string ;
.
SAB:SAB_5423
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Platform drilling"^^xsd:string ;
rdfs:subClassOf SAB:SAB_542 ;
skos:notation "5423"^^xsd:string ;
.
SAB:SAB_6
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "Unit work activities"^^xsd:string ;
skos:notation "6"^^xsd:string ;
.
SAB:SAB_7
rdf:type SAB:NorsokZ014SABplanningActivityClass ;
rdf:type owl:Class ;
rdfs:label "General"^^xsd:string ;
skos:notation "7"^^xsd:string ;
.
SAB:SAB_D
rdf:type owl:Class ;
rdfs:label "SAB development phase"^^xsd:string ;
.
SAB:SAB_E
rdf:type owl:Class ;
rdfs:label "SAB exploration phase"^^xsd:string ;
.
SAB:SAB_O
rdf:type owl:Class ;
rdfs:label "SAB operation phase"^^xsd:string ;
.
SAB:SAB_P
rdf:type owl:Class ;
rdfs:label "SAB planning phase"^^xsd:string ;
.
SAB:SAB_R
rdf:type owl:Class ;
rdfs:label "SAB removal phase"^^xsd:string ;
.
SAB:SAB_S
rdf:type owl:Class ;
rdfs:label "SAB shutdown and decommissioning phase"^^xsd:string ;
.