ilap.ttl
134 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
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
@prefix ilap: <http://standards.iso.org/iso/15926/tech/ontology/integrated-lifecycle-asset-planning/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix list: <http://www.co-ode.org/ontologies/list.owl#> .
@prefix ilap-xsd: <http://standards.iso.org/iso/15926/tech/xsd-generator-ontology/integrated-lifecycle-asset-planning/> .
@prefix lci: <http://standards.iso.org/iso/15926/tech/ontology/life-cycle-integration/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix ptrn: <http://data.posccaesar.org/ptrn/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix lcm: <http://standards.iso.org/iso/15926/tech/ontology/life-cycle-metadata/> .
@prefix rdl: <http://data.posccaesar.org/rdl/> .
@prefix ilap-view: <http://standards.iso.org/iso/15926/tech/view-ontology/integrated-lifecycle-asset-planning/> .
@prefix pn: <http://www.w3.org/2005/xpath-functions#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
ilap-view:hasBaselineSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has baseline schedule" ;
rdfs:range ilap:Schedule .
ilap:AuthoriseForExpenditure
a owl:Class ;
rdfs:label "authorise for expenditure" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is the authorisation for expenditure for a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"authorise for expenditure" .
ilap-view:hasEarlyFinish
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has early finish" .
ilap:Contractor a owl:Class ;
rdfs:label "contractor" ;
rdfs:subClassOf ilap:Agent ;
lci:definedByLiteral "agent that is a contractor" ;
lcm:hasPersonInterpretableIdentifierLiteral
"contractor" .
ilap:Thursday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Thursday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Thursday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Thursday" .
ilap:Level-6-ContractorOperationsPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 6 - contractor operations plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the operations plan of a contractor's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 6 - contractor operations plan" .
ilap:hasElementOfRepeat
a owl:ObjectProperty ;
rdfs:domain ilap:RepeatingPeriodInTime ;
rdfs:label "has element of repeat" ;
rdfs:range lci:PeriodInTime ;
lci:definedByLiteral "a period in time that is an element in a repeating period in time" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has element of repeat" .
ilap-view:implementationHasActualStart
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "implementation has actual start" .
ilap:planFor a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "plan for" ;
rdfs:range ilap:RequiredActivity ;
lci:definedByLiteral "a required activity that the plan for activity is intended to realise" ;
lcm:hasPersonInterpretableIdentifierLiteral
"plan for" ;
owl:inverseOf ilap:hasPlan .
ilap:AgentInPlan a owl:Class ;
rdfs:label "agent in plan" ;
rdfs:subClassOf ilap:Specification , ilap:Occurrence , ilap:ClassOfAgent ;
lci:definedByLiteral "class of agent that is an occurrence and a specification, and that is within a plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"agent in plan" .
ilap-view:lagHasCalendar
a owl:ObjectProperty ;
rdfs:domain ilap:PeriodInTimeInPlan ;
rdfs:label "lag has calendar" ;
rdfs:range lci:PeriodInTime .
ilap-view:MilestoneInPlan
a owl:Class ;
rdfs:label "milestone in plan" ;
rdfs:subClassOf ilap:EventInPlan .
ilap-view:eventHasLinkToSuccessor
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event has link to successor" ;
rdfs:range ilap:PeriodInTimeInPlan .
ilap:ScheduledShutdown
a ilap:ClassOfShutdownByPriorScheduling , owl:Class ;
rdfs:label "scheduled shutdown" ;
rdfs:subClassOf ilap:Shutdown ;
lci:definedByLiteral "shutdown that is scheduled" ;
lcm:hasPersonInterpretableIdentifierLiteral
"scheduled shutdown" .
ilap:ClassOfActivityByManagementObjective
a owl:Class ;
rdfs:label "class of activity by management objective" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to the management objective" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity by management objective" .
ilap-view:hasTotalFloat
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has total float" .
ilap:hasPlanning a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has planning" ;
rdfs:range ilap:RequiredActivity ;
lci:definedByLiteral "a planning activity that is intended to create a plan for the required activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has planning" ;
owl:inverseOf ilap:planningFor .
ilap:Site a owl:Class ;
rdfs:label "site" ;
rdfs:subClassOf ilap:GeographicArea ;
lci:definedByLiteral "geographic area that is a where a facility or activity is located" ;
lcm:hasPersonInterpretableIdentifierLiteral
"site" .
ilap-view:hasPlannedTotalActivityCost
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has planned project leader" .
ilap-view:implementationHasActualMainContractor
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "implementation has actual main contractor" ;
rdfs:range lci:Organization .
ilap:RepeatingPeriodInTime
a owl:Class ;
rdfs:label "repeating period in time"^^xsd:string ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that has a repeating pattern"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"repeating period in time"^^xsd:string .
ilap:DisasterRecovery
a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "disaster recovery" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is recovery from disaster" ;
lcm:hasPersonInterpretableIdentifierLiteral
"disaster recovery" .
ilap:LifecyclePhase a owl:Class ;
rdfs:label "lifecycle phase" ;
rdfs:subClassOf ilap:ActivityPhase ;
lci:definedByLiteral "activity phase that a physical object passes through once in its life" ;
lcm:hasExampleDescriptionLiteral
"The class 'E - Exploration' that is a member of NORSOK SCCS - SAB Class (Standard Cost Coding System - Standard Activity breakdown) is a lifecycle phase." ;
lcm:hasNoteOnScopeLiteral "NORSOK SCCS - SAB Lifecycle Phase (Standard Cost Coding System - Standard Activity breakdown) is a subclass of lifecycle phase." ;
lcm:hasPersonInterpretableIdentifierLiteral
"lifecycle phase" .
ilap-view:hasMaterialComponent
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has material component" .
ilap:Level-1-ProjectPortfolioPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 1 - project portfolio plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the overall portfolio plan for an operator's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 1 - project portfolio plan" .
ilap:ActivityBreakdownClass
a owl:Class ;
rdfs:label "activity breakdown class" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is a member of an activity breakdown" ;
lcm:hasNoteOnScopeLiteral "NORSOK SCCS - SAB Class (Standard Cost Coding System - Standard Activity Breakdown) is a subclass of activity breakdown class." ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity breakdown class" .
ilap:ClassOfManagedProgrammeOfWork
a owl:Class ;
rdfs:label "class of managed programme of work" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "power class of managed programme of work" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of managed programme of work" .
ilap:ResourceBreakdown
a owl:Class ;
rdfs:label "resource breakdown" ;
rdfs:subClassOf lci:ClassOfClassOfIndividual ;
lci:definedByLiteral "class of class of individual that is a set of class of individual used to specify resources" ;
lcm:hasExampleDescriptionLiteral
"The NORSOK SCCS - COR (Standard Cost Coding System - Code Of Resources) is a resource breakdown." ;
lcm:hasPersonInterpretableIdentifierLiteral
"resource breakdown" .
ilap:ClassOfActivityShutdownPhaseRequirement
a owl:Class ;
rdfs:label "class of activity shutdown phase requirement" ;
rdfs:subClassOf lci:ClassOfClassOfActivity ;
lci:definedByLiteral "class of activity that is according to the required shutdown phase for a member" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity shutdown phase requirement" .
ilap:UnscheduledPlan a owl:Class ;
rdfs:label "unscheduled plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that does not contain start and end dates for component activities" ;
lcm:hasPersonInterpretableIdentifierLiteral
"unscheduled plan" .
ilap-view:lagHasDuration
a owl:DatatypeProperty ;
rdfs:domain ilap:PeriodInTimeInPlan ;
rdfs:label "lag has duration" .
ilap:objectiveFor a owl:ObjectProperty ;
rdfs:domain ilap:RequiredIndividual ;
rdfs:label "objective for" ;
rdfs:range ilap:SpecificationDefinition ;
lci:definedByLiteral "a specification definition activity that has the required individual as its objective" ;
lcm:hasPersonInterpretableIdentifierLiteral
"objective for" ;
owl:inverseOf ilap:hasObjective .
ilap:ShutdownPhase a owl:Class ;
rdfs:label "shutdown phase" ;
rdfs:subClassOf ilap:ActivityPhase ;
lci:definedByLiteral "activity phase that is according to position within a sequence of activities that shutdown and then start-up a facility, system or equipment item" ;
lcm:hasPersonInterpretableIdentifierLiteral
"shutdown phase" .
ilap:LowPriorityActivity
a ilap:ActivityPriority , owl:Class ;
rdfs:label "low priority activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity with low priority" ;
lcm:hasPersonInterpretableIdentifierLiteral
"low priority activity" .
ilap:ClassOfProject a owl:Class ;
rdfs:label "class of project" ;
rdfs:subClassOf ilap:ClassOfManagedProgrammeOfWork ;
lci:definedByLiteral "power class of project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of project" .
ilap-view:mustBeOn a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "must be on" .
ilap-view:mustStartAsEarlyAsPossible
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "must start as early as possible" .
ilap:PlanningPlanned a ilap:ActivityPlanningStatus , owl:Class ;
rdfs:label "planning - planned" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that holds a plan for activity as planed" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning - planned" .
lci:Organization rdfs:subClassOf ilap-view:PersonOrOrganization .
ilap:Level-3-ProjectMasterPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 3 - project master plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the master plan of an operator's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 3 - project master plan" .
ilap:ActivityPlanningStatus
a owl:Class ;
rdfs:label "activity planning status" ;
rdfs:subClassOf ilap:ClassOfPlanning ;
lci:definedByLiteral "class of planning according to the status of the plan for activity being created by the planning activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity planning status" .
ilap-view:implementationHasActualSub-contractor
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "implementation has actual sub-contractor" ;
rdfs:range ilap-view:PersonOrOrganization .
ilap:PlannedActivity a ilap:ClassOfActivityByPriorPlanning , owl:Class ;
rdfs:label "planned activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that follows a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planned activity" .
ilap:DefinitionSpecificationCreation
a owl:Class ;
rdfs:label "definition specification creation"^^xsd:string ;
rdfs:subClassOf ilap:SpecificationCreation ;
lci:definedByLiteral "specification creation that creates a definition specification"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"definition specification creation"^^xsd:string .
ilap:ActivityWithoutMaterialComponent
a ilap:ClassOfActivityByMaterialComponent , owl:Class ;
rdfs:label "activity without material component" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that does not have a material resource" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity without material component" .
ilap:scheduleFor a owl:ObjectProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "schedule for" ;
rdfs:range ilap:PlanForActivity ;
lci:definedByLiteral "a plan for activity for which the schedule specifies when events happen" ;
lcm:hasPersonInterpretableIdentifierLiteral
"schedule for" ;
owl:inverseOf ilap:hasSchedule .
ilap-view:hasLateFinish
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has late finish" .
ilap:ActivityThatRequiresHeightWork
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that requires height work" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves work at height" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that requires height work" .
ilap:ClassOfInstalledPlanningSoftware
a owl:Class ;
rdfs:label "class of installed planning software" ;
rdfs:subClassOf ilap:ClassOfInstalledSoftware ;
lci:definedByLiteral "power class of installed planning software" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of installed planning software" .
ilap-view:mustBeAsEarlyAsPossible
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "must be as early as possible" .
ilap:MakeIncrementalImprovement
a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "make incremental improvement" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that makes an incremental improvement" ;
lcm:hasPersonInterpretableIdentifierLiteral
"make incremental improvement" .
ilap-view:hasCurrentPlanningStatus
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "has current planning status" ;
rdfs:range ilap:ActivityPlanningStatus .
ilap:ActivityWithPotentialImpactOnHabitat
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity with potential impact on habitat" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk with a potential impact on habitat" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity with potential impact on habitat" .
ilap:revisedScheduleFor
a owl:ObjectProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "revised schedule for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a planning activity holds the schedule as a revision of its current schedule" ;
lcm:hasPersonInterpretableIdentifierLiteral
"revised schedule for" ;
owl:inverseOf ilap:hasRevisedSchedule .
ilap:ActivityThatInvolvesVesselOperation
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that involves vessel operation" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves a vessel operation" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that involves vessel operation" .
ilap:DeliveringMaterialOnTime
a ilap:MaterialDeliveryProgressStatus , owl:Class ;
rdfs:label "delivering material - on time" ;
rdfs:subClassOf ilap:DeliveringMaterial ;
lci:definedByLiteral "delivering material that is on time" ;
lcm:hasPersonInterpretableIdentifierLiteral
"delivering material - on time" .
ilap-view:hasPlannedCurrentDurationUsed
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has plan resource breakdown class" .
ilap:ResourceBreakdownClass
a owl:Class ;
rdfs:label "resource breakdown class" ;
rdfs:subClassOf lci:ClassOfIndividual ;
lci:definedByLiteral "class of individual that is member of a resource breakdown" ;
lcm:hasNoteOnScopeLiteral "NORSOK SCCS - COR Class (Standard Cost Coding System - Code Of Resources) is a sub-class of resource breakdown class." ;
lcm:hasPersonInterpretableIdentifierLiteral
"resource breakdown class" .
ilap:PlanForActivity a owl:Class ;
rdfs:label "plan for activity" ;
rdfs:subClassOf ilap:DefinitionSpecification , ilap:ActivitySpecification ;
lci:definedByLiteral "activity specification that is a definition specification" ;
lcm:hasNoteOnScopeLiteral "A plan for activity specifies how an activity shall be done." , "A plan for activity can have the following criteria: a breakdown into part activities in plan; resources required by part activities in plan; durations of part activities in plan; required dates for milestones; succession relationships and lags between part activities in plan; calendars for activities in plan, resources and lags; start and end dates for part activities in plan." , "A plan for activity can define a number of part activities in plan which are related by plan succession links, and which form a network." ;
lcm:hasPersonInterpretableIdentifierLiteral
"plan for activity" .
ilap:ActivityInPlan a owl:Class ;
rdfs:label "activity in plan" ;
rdfs:subClassOf ilap:Occurrence , ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is an occurrence within a larger plan for activity" ;
lcm:hasNoteOnScopeLiteral "An activity in plan can have plan succession links with other ac-tivities in the same plan." , "An activity in plan is often a subclass of an activity breakdown class, such as a member of the NORSOK SCCS - SAB (Standard Cost Coding System - Standard Activity Breakdown)." ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity in plan" .
ilap:hasTargetSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has target schedule" ;
rdfs:range ilap:Schedule ;
lci:definedByLiteral "the schedule that is specified by the planning activity as a measure against which actual performance can be gauged" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has target schedule" ;
owl:inverseOf ilap:targetScheduleFor .
ilap:RevisionShutdown
a ilap:ClassOfShutdownByReason , owl:Class ;
rdfs:label "revision shutdown" ;
rdfs:subClassOf ilap:Shutdown ;
lci:definedByLiteral "shutdown that is to change a production process" ;
lcm:hasPersonInterpretableIdentifierLiteral
"revision shutdown" .
ilap:ClassOfAgent a owl:Class ;
rdfs:label "class of agent" ;
rdfs:subClassOf lci:ClassOfPhysicalObject ;
lci:definedByLiteral "power class of agent" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of agent" .
ilap-view:hasAvailableResourceBreakdownClass
a owl:ObjectProperty ;
rdfs:domain ilap-view:AvailableResource ;
rdfs:label "has available resource breakdown class" ;
rdfs:range ilap:ResourceBreakdownClass .
ilap-view:hasActualCurrentDurationUsed
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has actual current duration used" .
ilap-view:hasRevisedSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has revised schedule" ;
rdfs:range ilap:Schedule .
ilap:RequirementSpecification
a owl:Class ;
rdfs:label "requirement specification" ;
rdfs:subClassOf ilap:Specification ;
lci:definedByLiteral "specification that does not specify how a required individual can be realised" ;
lcm:hasPersonInterpretableIdentifierLiteral
"requirement specification" .
ilap:Subject a owl:Class ;
rdfs:label "subject" ;
rdfs:subClassOf lci:PhysicalObject ;
lci:definedByLiteral "physical object that an activity is carried out upon" ;
lcm:hasNoteOnScopeLiteral "A subject is often classified as a member of a class in a product breakdown structure." ;
lcm:hasPersonInterpretableIdentifierLiteral
"subject" .
ilap:ClassOfStaffTime
a owl:Class ;
rdfs:label "class of staff time" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "power class of staff time" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of staff time" .
ilap:ContinuingActivity
a ilap:ActivityCompletionStatus , owl:Class ;
rdfs:label "continuing activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is continuing" ;
lcm:hasPersonInterpretableIdentifierLiteral
"continuing activity" .
ilap:OperationAndMaintenanceProject
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "operation and maintenance project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that is for the operation or maintenance of a facility" ;
lcm:hasPersonInterpretableIdentifierLiteral
"operation and maintenance project" .
ilap:Continent a owl:Class ;
rdfs:label "continent" ;
rdfs:subClassOf ilap:GeographicArea ;
lci:definedByLiteral "geographic area that is a continent" ;
lcm:hasPersonInterpretableIdentifierLiteral
"continent" .
ilap:CheckingMaterialAvailabilityAvailable
a ilap:MaterialAvailabilityCheckResult , owl:Class ;
rdfs:label "checking material availability - available" ;
rdfs:subClassOf ilap:CheckingMaterialAvailability ;
lci:definedByLiteral "checking material availability activity that finds the resource in plan is available" ;
lcm:hasPersonInterpretableIdentifierLiteral
"checking material availability - available" .
ilap:ActivityForWhichESDPermitIsRequired
a ilap:ActivityRiskMitigation , owl:Class ;
rdfs:label "activity for which ESD permit is required" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk for which an electro-static discharge permit is required" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity for which ESD permit is required" .
ilap-view:mustStartOn
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "must start on" .
ilap:Crew a owl:Class ;
rdfs:label "crew" ;
rdfs:subClassOf lci:Organization , ilap:Agent ;
lci:definedByLiteral "agent and organization that carries out an activity or operates a facility, system or equipment item" ;
lcm:hasPersonInterpretableIdentifierLiteral
"crew" .
ilap:ActivityPriority
a owl:Class ;
rdfs:label "activity priority" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to its importance" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity priority" .
ilap-view:hasShutdownPlan
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has shutdown plan" ;
rdfs:range ilap:ShutdownPlan .
ilap:PlanningUnderPlanningOrScheduling
a ilap:ActivityPlanningStatus , owl:Class ;
rdfs:label "planning - under planning or scheduling" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that holds a plan for activity as under planning or scheduling" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning - under planning or scheduling" .
ilap:Level-5-ContractWorkPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 5 - contract work plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the work plan of a contractor's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 5 - contract work plan" .
ilap:RequiredIndividual
a owl:Class ;
rdfs:label "required individual" ;
rdfs:subClassOf lci:PossibleIndividual ;
lci:definedByLiteral "possible individual that exists in a envisaged universe and is a requirement" ;
lcm:hasNoteOnScopeLiteral "A required individual can be fulfilled by an actual individual." ;
lcm:hasPersonInterpretableIdentifierLiteral
"required individual" .
ilap-view:eventHasTargetSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event has target schedule" ;
rdfs:range ilap:ScheduleForEventInPlan .
ilap-view:hasShutdownPhase
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has shutdown phase" ;
rdfs:range ilap:ShutdownPhase .
ilap-xsd:Data a owl:Class ;
rdfs:subClassOf lci:ComputerFileContent .
ilap:HighCriticalityActivity
a ilap:ActivityCriticality , owl:Class ;
rdfs:label "high criticality activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has a high criticality" ;
lcm:hasPersonInterpretableIdentifierLiteral
"high criticality activity" .
ilap:ActivityDuringNormalOperation
a ilap:ClassOfActivityByExecutionEnvironment , owl:Class ;
rdfs:label "activity during normal operation" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that takes place during normal operation" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity during normal operation" .
ilap:ActivityDuringHighActivityPeriod
a ilap:ClassOfActivityByExecutionEnvironment , owl:Class ;
rdfs:label "activity during high activity period" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that takes place during a period of high activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity during high activity period" .
ilap:RequiredActivity
a owl:Class ;
rdfs:label "required activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is a required individual" ;
lcm:hasPersonInterpretableIdentifierLiteral
"required activity" .
ilap-view:alwaysOnSchedule
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "always on schedule" .
ilap:InstalledPlanningSoftware
a owl:Class ;
rdfs:label "installed planning software" ;
rdfs:subClassOf ilap:InstalledSoftware ;
lci:definedByLiteral "installed software that is for planning" ;
lcm:hasPersonInterpretableIdentifierLiteral
"installed planning software" .
ilap-view:hasActualCurrentPercentageComplete
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has actual current percentage complete" .
ilap:PlanningPending a ilap:ActivityPlanningStatus , owl:Class ;
rdfs:label "planning - pending" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that holds a plan for activity as pending" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning - pending" .
ilap-view:hasPlannedTotalResourceCost
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned total duration" .
ilap:Level-2-ProjectSummaryPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 2 - project summary plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the summary plan for an operator's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 2 - project summary plan" .
ilap:ActivityAfterStartUp
a ilap:ShutdownPhase , owl:Class ;
rdfs:label "activity after start-up" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that takes place after a start-up" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity after start-up" .
ilap-view:planHasCalendar
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "plan has calendar" ;
rdfs:range lci:PeriodInTime .
ilap:ProductStructureBreakdownClass
a owl:Class ;
rdfs:label "product structure breakdown class" ;
rdfs:subClassOf lci:ClassOfPhysicalObject ;
lci:definedByLiteral "class of physical object that is part of a product structure breakdown" ;
lcm:hasNoteOnScopeLiteral "NORSOK SCCS - PSB Class (Standard Cost Coding System - Product Structure Breakdown) is a subclass of product structure breakdown class." ;
lcm:hasPersonInterpretableIdentifierLiteral
"product structure breakdown class" .
ilap:AuthoriseForExpenditureRefused
a ilap:AuthoriseForExpenditureResult , owl:Class ;
rdfs:label "authorise for expenditure - refused" ;
rdfs:subClassOf ilap:AuthoriseForExpenditure ;
lci:definedByLiteral "authorise for expenditure activity that refuses expenditure for a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"authorise for expenditure - refused" .
ilap-view:availableTo
a owl:DatatypeProperty ;
rdfs:domain ilap-view:AvailableResource ;
rdfs:label "available to" .
ilap-view:hasRiskFactor
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has risk factor" ;
rdfs:range ilap:ActivityRiskFactor .
ilap-view:hasEarlyStart
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has early start" .
ilap-view:eventHasLiveSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event has live schedule" ;
rdfs:range ilap:ScheduleForEventInPlan .
ilap:Schedule a owl:Class ;
rdfs:label "schedule" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that contains all that is required as a basis for execution, and that specifies start and end dates for component activities in plan" ;
lcm:hasNoteOnScopeLiteral "A schedule is the end product of a planning activity at a point in time. A schedule can be revised as a project progresses." , "A schedule includes calendars, succession relationships, and all other constraints." ;
lcm:hasPersonInterpretableIdentifierLiteral
"schedule" .
ilap-view:resourceInPlanHasCalendar
a owl:ObjectProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "resource in plan has calendar" ;
rdfs:range lci:PeriodInTime .
ilap:BusinessArrangementArea
a owl:Class ;
rdfs:label "business arrangement area" ;
rdfs:subClassOf ilap:GeographicArea ;
lci:definedByLiteral "geographic area that is defined by a business arrangement between oil and gas licence partners" ;
lcm:hasPersonInterpretableIdentifierLiteral
"business arrangement area" .
ilap-view:hasPlannedSub-contractor
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has planned main contractor" ;
rdfs:range ilap-view:PersonOrOrganization .
lci:Person rdfs:subClassOf ilap-view:PersonOrOrganization .
ilap:ProjectLeader a owl:Class ;
rdfs:label "project leader" ;
rdfs:subClassOf ilap:Agent ;
lci:definedByLiteral "agent that is the project leader of an activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"project leader" .
ilap:ProjectPhase a owl:Class ;
rdfs:label "project phase" ;
rdfs:subClassOf ilap:ActivityPhase ;
lci:definedByLiteral "activity phase that is a defined for a class of project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"project phase" .
ilap:followsPlan a owl:ObjectProperty ;
rdfs:domain lci:Activity ;
rdfs:label "follows plan" ;
rdfs:range ilap:PlanForActivity ;
lci:definedByLiteral "a plan for activity that is followed by the activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"follows plan" ;
owl:inverseOf ilap:planFollowedBy .
ilap-view:requiresShutdownOfProcess
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "requires shutdown of process" ;
rdfs:range lci:Activity .
ilap:MainWorkCentre a owl:Class ;
rdfs:label "main work centre" ;
rdfs:subClassOf ilap:WorkCentre ;
lci:definedByLiteral "work centre where the main part of the activity takes place" ;
lcm:hasPersonInterpretableIdentifierLiteral
"main work centre" .
ilap-view:availableFrom
a owl:DatatypeProperty ;
rdfs:domain ilap-view:AvailableResource ;
rdfs:label "available from" .
ilap:ChangeoverActivity
a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "changeover activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that makes a change to a production process" ;
lcm:hasPersonInterpretableIdentifierLiteral
"changeover activity" .
ilap:ClassOfActivityWithRisk
a owl:Class ;
rdfs:label "class of activity with risk" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "power class of activity with risk" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity with risk" .
ilap:AuthoriseForExpenditureAuthorised
a ilap:AuthoriseForExpenditureResult , owl:Class ;
rdfs:label "authorise for expenditure - authorised" ;
rdfs:subClassOf ilap:AuthoriseForExpenditure ;
lci:definedByLiteral "authorise for expenditure activity that authorises expenditure for a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"authorise for expenditure - authorised" .
ilap-view:fulfilmentHasActualMainContractor
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "fulfilment has actual main contractor" ;
rdfs:range lci:Organization .
ilap-view:fulfilmentHasActualStart
a owl:DatatypeProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "fulfilment has actual start" .
ilap-view:noLaterThan
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "no later than" .
ilap-view:hasElementFinish
a owl:DatatypeProperty ;
rdfs:domain ilap:RepeatingPeriodInTime ;
rdfs:label "has element finish" .
ilap:ClassOfInstalledSoftware
a owl:Class ;
rdfs:label "class of installed software" ;
rdfs:subClassOf lci:ClassOfPhysicalObject ;
lci:definedByLiteral "power class of installed software" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of installed software" .
ilap:FacilityModificationProject
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "facility modification project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that is for the modification of a facility" ;
lcm:hasPersonInterpretableIdentifierLiteral
"facility modification project" .
ilap:Planning a owl:Class ;
rdfs:label "planning" ;
rdfs:subClassOf ilap:ActivitySpecificationCreation , ilap:DefinitionSpecificationCreation ;
lci:definedByLiteral "activity that is planning" ;
lcm:hasNoteOnScopeLiteral "A planning activity concerned with the creation, implementation and approval of a plan for activity and its associated schedules." ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning" .
ilap:PeriodWithoutRepeatingPattern
a ilap:ClassOfPeriodInTimeAccordingToRepeat , owl:Class ;
rdfs:label "period without repeating pattern" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is not a repeating pattern" ;
lcm:hasPersonInterpretableIdentifierLiteral
"period without repeating pattern" .
ilap:hasLiveSchedule a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has live schedule" ;
rdfs:range ilap:Schedule ;
lci:definedByLiteral "the schedule that is held by a planning activity to mitigate any delays" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has live schedule" ;
owl:inverseOf ilap:liveScheduleFor .
ilap:RequirementSpecificationCreation
a owl:Class ;
rdfs:label "requirement specification creation"^^xsd:string ;
rdfs:subClassOf ilap:SpecificationCreation ;
lci:definedByLiteral "specification creation that creates a requirement specification"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"requirement specification creation"^^xsd:string .
ilap:MediumCriticalityActivity
a ilap:ActivityCriticality , owl:Class ;
rdfs:label "medium criticality activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has a medium criticality" ;
lcm:hasPersonInterpretableIdentifierLiteral
"medium criticality activity" .
ilap-view:hasLatestScheduleTime
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has latest schedule time" .
ilap:baselineScheduleFor
a owl:ObjectProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "baseline schedule for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a planning activity that uses the schedule to measure project progress and contract performance" ;
lcm:hasPersonInterpretableIdentifierLiteral
"baseline schedule for" ;
owl:inverseOf ilap:hasBaselineSchedule .
ilap-view:hasPlannedCurrentResourceExpenditure
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned current percentage used" .
ilap:DecisionGate a owl:Class ;
rdfs:label "decision gate" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is that is a decision gate" ;
lcm:hasNoteOnScopeLiteral "An event in plan can be a milestone for a decision gate and therefore triggers the decision gate activity." ;
lcm:hasPersonInterpretableIdentifierLiteral
"decision gate" .
ilap-view:hasPlanResourceBreakdownClass
a owl:ObjectProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned total resource cost" ;
rdfs:range ilap:ResourceBreakdownClass .
ilap:PlanningReleased
a ilap:ActivityPlanningStatus , owl:Class ;
rdfs:label "planning - released" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that holds a plan for activity as released" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning - released" .
ilap-view:AvailableResource
a owl:Class ;
rdfs:subClassOf lci:PossibleIndividual .
ilap-view:hasRemainingDuration
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has remaining duration" .
ilap:ManagedProgrammeOfWork
a owl:Class ;
rdfs:label "managed programme of work" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that contains within it management and planning activities for the whole" ;
lcm:hasPersonInterpretableIdentifierLiteral
"managed programme of work" .
ilap:OilAndGasProjectObjective
a owl:Class ;
rdfs:label "oil and gas project objective" ;
rdfs:subClassOf ilap:ClassOfProject ;
lci:definedByLiteral "class of project that is according to an oil and gas project objective" ;
lcm:hasPersonInterpretableIdentifierLiteral
"oil and gas project objective" .
ilap:monitors a owl:ObjectProperty ;
rdfs:domain lci:Activity ;
rdfs:label "monitors" ;
rdfs:range lci:Activity ;
lci:definedByLiteral "an activity that is monitored" ;
lcm:hasPersonInterpretableIdentifierLiteral
"monitors" ;
owl:inverseOf ilap:monitoredBy .
ilap-view:activityHasLinkToSuccessor
a owl:ObjectProperty ;
rdfs:domain ilap:ActivityInPlan ;
rdfs:label "activity has link to successor" ;
rdfs:range ilap:PeriodInTimeInPlan .
ilap:PlanningCancelled
a ilap:ActivityPlanningStatus , owl:Class ;
rdfs:label "planning - cancelled" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that holds a plan for activity as cancelled" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning - cancelled" .
ilap-view:hasProjectObjective
a owl:ObjectProperty ;
rdfs:domain ilap:Project ;
rdfs:label "has project objective" ;
rdfs:range ilap:OilAndGasProjectObjective .
ilap:HighPriorityActivity
a ilap:ActivityPriority , owl:Class ;
rdfs:label "high priority activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity with high priority" ;
lcm:hasPersonInterpretableIdentifierLiteral
"high priority activity" .
ilap:ClassOfPlanForActivity
a owl:Class ;
rdfs:label "class of plan for activity" ;
rdfs:subClassOf ilap:ClassOfActivityDefinition ;
lci:definedByLiteral "power class of plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of plan for activity" .
ilap:operatedBy a owl:ObjectProperty ;
rdfs:domain lci:PhysicalObject ;
rdfs:label "operated by" ;
rdfs:range ilap:Agent ;
lci:definedByLiteral "an agent that operates the physical object" ;
lcm:hasPersonInterpretableIdentifierLiteral
"operated by" ;
owl:inverseOf ilap:operates .
ilap:DefinitionSpecification
a owl:Class ;
rdfs:label "definition specification" ;
rdfs:subClassOf ilap:Specification ;
lci:definedByLiteral "specification that specifies how a required individual can be realised" ;
lcm:hasPersonInterpretableIdentifierLiteral
"definition specification" .
ilap:fulfils a owl:ObjectProperty ;
rdfs:domain lci:ActualIndividual ;
rdfs:label "fulfils" ;
rdfs:range ilap:RequiredIndividual ;
lci:definedByLiteral "a required individual that the actual individual is intended to fulfil" ;
lcm:hasPersonInterpretableIdentifierLiteral
"fulfils" ;
owl:inverseOf ilap:fulfilledBy .
ilap-view:hasProductStructureBreakdownClass
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has product structure breakdown class" ;
rdfs:range ilap:ProductStructureBreakdownClass .
ilap:ScheduleForPlanForActivity
a owl:Class ;
rdfs:label "schedule for plan for activity"^^xsd:string ;
rdfs:subClassOf ilap:Schedule ;
lci:definedByLiteral "schedule that specifies dates for all the events in a plan"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"schedule for plan for activity"^^xsd:string .
ilap-view:hasLinkFromSuccessorToActivity
a owl:ObjectProperty ;
rdfs:domain ilap:PeriodInTimeInPlan ;
rdfs:label "has link from successor to activity" ;
rdfs:range ilap:ActivityInPlan .
ilap:fulfilledBy a owl:ObjectProperty ;
rdfs:domain ilap:RequiredIndividual ;
rdfs:label "fulfilled by" ;
rdfs:range lci:ActualIndividual ;
lci:definedByLiteral "an actual individual that fulfils the required individual" ;
lcm:hasPersonInterpretableIdentifierLiteral
"fulfilled by" ;
owl:inverseOf ilap:fulfils .
ilap-view:eventPartOfSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event part of schedule" ;
rdfs:range ilap:PlanForActivity .
ilap-view:hasElementStart
a owl:DatatypeProperty ;
rdfs:domain ilap:RepeatingPeriodInTime ;
rdfs:label "has element start" .
ilap:PartOfTheSurfaceOfTheEarth
a owl:Class ;
rdfs:label "part of the surface of the earth" ;
rdfs:subClassOf lci:RegionInSpace ;
lci:definedByLiteral "region in space that is part of the surface of the earth" ;
lcm:hasPersonInterpretableIdentifierLiteral
"part of the surface of the earth" .
ilap-view:hasLateAchievement
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "has late achievement" .
ilap:PeriodInTimeInPlan
a owl:Class ;
rdfs:label "period in time in plan" ;
rdfs:subClassOf ilap:Specification , ilap:Occurrence , lci:ClassOfPeriodInTime ;
lci:definedByLiteral "class of period in time that is an occurrence and a specification, and that is within a plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"period in time in plan" .
ilap-view:fulfilmentHasActualProjectLeader
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "fulfilment has actual project leader" ;
rdfs:range ilap-view:PersonOrOrganization .
ilap:MonetaryAmount a lci:QuantityKind ;
rdfs:label "monetary amount" ;
rdfs:subClassOf lci:Quantity ;
lci:definedByLiteral "quantity that is a monetary amount that is expressed in terms of a currency" ;
lcm:hasPersonInterpretableIdentifierLiteral
"monetary amount" .
ilap-view:isPlanForPartOf
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "is plan for part of" ;
rdfs:range ilap:RequiredActivity .
ilap:ResourceInPlan a owl:Class ;
rdfs:label "resource in plan" ;
rdfs:subClassOf ilap:Specification , ilap:Occurrence , ilap:ClassOfResource ;
lci:definedByLiteral "class of resource that is an occurrence and a specification, and that is within a plan" ;
lcm:hasNoteOnScopeLiteral "A resource in plan is often a subclass of a resource breakdown class, such as a member of the NORSOK SCCS - COR (Standard Cost Coding System - Code Of Resources)." ;
lcm:hasPersonInterpretableIdentifierLiteral
"resource in plan" .
ilap-view:hasStart a owl:DatatypeProperty ;
rdfs:domain lci:PeriodInTime ;
rdfs:label "has start" .
ilap:DeliveringMaterialDelayed
a ilap:MaterialDeliveryProgressStatus , owl:Class ;
rdfs:label "delivering material - delayed" ;
rdfs:subClassOf ilap:DeliveringMaterial ;
lci:definedByLiteral "delivering material that is delayed" ;
lcm:hasPersonInterpretableIdentifierLiteral
"delivering material - delayed" .
ilap:EmergencyShutdown
a ilap:ClassOfShutdownByReason , owl:Class ;
rdfs:label "emergency shutdown" ;
rdfs:subClassOf ilap:Shutdown ;
lci:definedByLiteral "shutdown that is to prevent or remedy a dangerous situation" ;
lcm:hasPersonInterpretableIdentifierLiteral
"emergency shutdown" .
ilap-view:startNoEarlierThan
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "start no earlier than" .
ilap:GreenFieldProject
a ilap:ClassOfProjectBySiteEnvironment , owl:Class ;
rdfs:label "green field project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that takes place on a site that was not previously in industrial use" ;
lcm:hasPersonInterpretableIdentifierLiteral
"green field project" .
ilap:GeographicArea a owl:Class ;
rdfs:label "geographic area" ;
rdfs:subClassOf lci:PhysicalObject ;
lci:definedByLiteral "physical object that is part of the surface of the earth" ;
lcm:hasNoteOnScopeLiteral "A geographic area can exist for a period in time." , "A geographic area be different parts of the surface of the earth at different times." ;
lcm:hasPersonInterpretableIdentifierLiteral
"geographic area" .
ilap-view:activityHasDuration
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "activity has duration" .
ilap:MainContractor a owl:Class ;
rdfs:label "main contractor" ;
rdfs:subClassOf ilap:Contractor ;
lci:definedByLiteral "contractor that is the main contractor" ;
lcm:hasPersonInterpretableIdentifierLiteral
"main contractor" .
ilap:MaterialDeliveredOffshore
a ilap:MaterialDeliveryLocationStatus , owl:Class ;
rdfs:label "material delivered off-shore" ;
rdfs:subClassOf lci:MaterializedPhysicalObject ;
lci:definedByLiteral "materialized physical object that is currently at a final destination off-shore where it has been delivered" ;
lcm:hasPersonInterpretableIdentifierLiteral
"material delivered off-shore" .
ilap:ClassOfShutdownByReason
a owl:Class ;
rdfs:label "class of shutdown by reason" ;
rdfs:subClassOf ilap:ClassOfShutdown ;
lci:definedByLiteral "class of shutdown that is according to the reason for the shutdown" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of shutdown by reason" .
ilap:BrownFieldProject
a ilap:ClassOfProjectBySiteEnvironment , owl:Class ;
rdfs:label "brown field project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that takes place on a site that was previously in industrial use" ;
lcm:hasPersonInterpretableIdentifierLiteral
"brown field project" .
ilap-view:hasTargetSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has target schedule" ;
rdfs:range ilap:Schedule .
ilap:ActivityThatRequiresRemovalOfBarriers
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that requires removal of barriers" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves the removal of barriers" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that requires removal of barriers" .
ilap-view:hasResult a owl:ObjectProperty ;
rdfs:domain lci:PairOfPeriodInTime ;
rdfs:label "has result" ;
rdfs:range lci:PeriodInTime .
ilap-view:hasProgrammeSubject
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "has programme subject" ;
rdfs:range lci:PhysicalObject .
ilap-view:PersonOrOrganization
a owl:Class ;
rdfs:subClassOf lci:PhysicalObject .
ilap:SpecificationCreation
a owl:Class ;
rdfs:label "specification creation"^^xsd:string ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that creates a specification"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"specification creation"^^xsd:string .
ilap:OilAndGasLicenceBlock
a owl:Class ;
rdfs:label "oil and gas licence block" ;
rdfs:subClassOf ilap:GeographicArea ;
lci:definedByLiteral "geographic area that is defined in an oil and gas licence" ;
lcm:hasPersonInterpretableIdentifierLiteral
"oil and gas licence block" .
ilap-view:hasFreeFloat
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has free float" .
ilap-view:hasAvailableResource
a owl:ObjectProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has available resource" ;
rdfs:range ilap-view:AvailableResource .
ilap-view:hasLinkFromSuccessorToEvent
a owl:ObjectProperty ;
rdfs:domain ilap:PeriodInTimeInPlan ;
rdfs:label "has link from successor to event" ;
rdfs:range ilap:EventInPlan .
ilap-view:fulfilmentHasActualFinish
a owl:DatatypeProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "fulfilment has actual finish" .
ilap-view:hasPlanResource
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has planned total quantity" ;
rdfs:range ilap:ResourceInPlan .
ilap-view:hasCriticality
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has criticality" ;
rdfs:range ilap:ActivityCriticality .
ilap-view:FF-PlanSuccessorLink
a owl:Class ;
rdfs:label "FF - plan successor link" ;
rdfs:subClassOf ilap:PlanSuccessorLink .
ilap:MaterialDeliveredOnshore
a ilap:MaterialDeliveryLocationStatus , owl:Class ;
rdfs:label "material delivered on-shore" ;
rdfs:subClassOf lci:MaterializedPhysicalObject ;
lci:definedByLiteral "materialized physical object that is currently at a final destination on-shore where it has been delivered" ;
lcm:hasPersonInterpretableIdentifierLiteral
"material delivered on-shore" .
ilap-view:addedToOrRemovedFrom
a owl:ObjectProperty ;
rdfs:domain lci:PairOfPeriodInTime ;
rdfs:label "added to or removed from" ;
rdfs:range lci:PeriodInTime .
ilap:ActivityWithRisk
a owl:Class ;
rdfs:label "activity with risk" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has a risk to people or to habitat" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity with risk" .
ilap-view:eventHasRevisedSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event has revised schedule" ;
rdfs:range ilap:ScheduleForEventInPlan .
ilap:SoftwareCode a owl:Class ;
rdfs:label "software code" ;
rdfs:subClassOf ilap:ClassOfInstalledSoftware ;
lci:definedByLiteral "class of installed software that is the software code that is installed" ;
lcm:hasPersonInterpretableIdentifierLiteral
"software code" .
ilap:Wednesday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Wednesday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Wednesday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Wednesday" .
ilap:ClassOfActivityDependentUponShutdown
a ilap:ClassOfActivityShutdownPhaseRequirement , owl:Class ;
rdfs:label "class of activity dependent upon shutdown" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that has members that are required to be also members of between activity between start-up and shutdown" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity dependent upon shutdown" .
ilap:ActivityRiskMitigation
a owl:Class ;
rdfs:label "activity risk mitigation" ;
rdfs:subClassOf ilap:ClassOfActivityWithRisk ;
lci:definedByLiteral "class of activity with risk according to the mitigation of the risk" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity risk mitigation" .
ilap:OilAndGasFieldStudy
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "oil and gas field study" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that is an early phase study of a potential oil or gas field" ;
lcm:hasPersonInterpretableIdentifierLiteral
"oil and gas field study" .
ilap-view:hasMaterialDeliveryProgressStatus
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has material delivery progress status" ;
rdfs:range ilap:MaterialDeliveryProgressStatus .
ilap:ClassOfActivityByExecutionEnvironment
a owl:Class ;
rdfs:label "class of activity by execution environment" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to the circumstances in which it is carried out" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity by execution environment" .
ilap:Closedown a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "closedown" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that permanently closes down an activity or facility" ;
lcm:hasPersonInterpretableIdentifierLiteral
"closedown" .
ilap-view:hasActivity
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has activity " ;
rdfs:range ilap:PlanForActivity .
ilap:PlanLevel a owl:Class ;
rdfs:label "plan level" ;
rdfs:subClassOf ilap:ClassOfPlanForActivity ;
lci:definedByLiteral "class of plan for activity that is a relevant to the management level and the scope of work" ;
lcm:hasPersonInterpretableIdentifierLiteral
"plan level" .
ilap:OrderingMaterial
a owl:Class ;
rdfs:label "ordering material" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is ordering material for a resource in plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"ordering material" .
ilap:Resource a owl:Class ;
rdfs:label "resource" ;
rdfs:subClassOf lci:PossibleIndividual ;
lci:definedByLiteral "possible individual that is consumed or used by an activity" ;
lcm:hasNoteOnScopeLiteral "A resource can be a physical object or staff time." ;
lcm:hasPersonInterpretableIdentifierLiteral
"resource" .
ilap:MaterialDeliveryLocationStatus
a owl:Class ;
rdfs:label "material delivery location status" ;
rdfs:subClassOf lci:ClassOfPhysicalObject ;
lci:definedByLiteral "class of physical object that according to the location of the material during delivery" ;
lcm:hasPersonInterpretableIdentifierLiteral
"material delivery location status" .
ilap-view:hasLateStart
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has late start" .
ilap:OperationalOrMaintenanceActivity
a owl:Class ;
rdfs:label "operational or maintenance activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is part of the operation, maintenance or both or a facility, system or equipment item" ;
lcm:hasPersonInterpretableIdentifierLiteral
"operational or maintenance activity" .
ilap-view:hasPriority
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has priority" ;
rdfs:range ilap:ActivityPriority .
ilap-view:eventHasBaselineSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event has baseline schedule" ;
rdfs:range ilap:ScheduleForEventInPlan .
ilap:ActivitySpecification
a owl:Class ;
rdfs:label "activity specification" ;
rdfs:subClassOf ilap:Specification , lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is a specification" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity specification" .
ilap:OperationalWorkCentre
a owl:Class ;
rdfs:label "operational work centre" ;
rdfs:subClassOf ilap:WorkCentre ;
lci:definedByLiteral "work centre where the operational part of the activity takes place" ;
lcm:hasPersonInterpretableIdentifierLiteral
"operational work centre" .
ilap:sourceFor a owl:ObjectProperty ;
rdfs:domain ilap:Specification ;
rdfs:label "source for" ;
rdfs:range ilap:SpecificationDefinition ;
lci:definedByLiteral "a specification definition activity that has the specification as its source" ;
lcm:hasPersonInterpretableIdentifierLiteral
"source for" ;
owl:inverseOf ilap:hasSource .
ilap-view:implementationHasActualFinish
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "implementation has actual finish" .
ilap:Saturday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Saturday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Saturday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Saturday" .
ilap:Campaign a ilap:ClassOfActivityByExecutionApproach , owl:Class ;
rdfs:label "campaign" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is carried out as a number of part activities that are close in time" ;
lcm:hasPersonInterpretableIdentifierLiteral
"campaign" .
ilap:WellInjectionProject
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "well injection project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that is for the injection of gas or liquid into a well or wellbore" ;
lcm:hasPersonInterpretableIdentifierLiteral
"well injection project" .
ilap:planFollowedBy a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "plan followed by" ;
rdfs:range lci:Activity ;
lci:definedByLiteral "an activity that follows the plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"plan followed by" ;
owl:inverseOf ilap:followsPlan .
ilap-view:hasActivitySubject
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has activity subject" ;
rdfs:range lci:PhysicalObject .
ilap-view:hasProjectPhase
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has project phase" ;
rdfs:range ilap:ProjectPhase .
ilap:ClassOfProjectBySiteEnvironment
a owl:Class ;
rdfs:label "class of project by site environment" ;
rdfs:subClassOf ilap:ClassOfProject ;
lci:definedByLiteral "class of project that is according to the nature of its site" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of project by site environment" .
ilap-view:FS-PlanSuccessorLink
a owl:Class ;
rdfs:label "FS - plan successor link" ;
rdfs:subClassOf ilap:PlanSuccessorLink .
ilap:ActivityWithMaterialComponent
a ilap:ClassOfActivityByMaterialComponent , owl:Class ;
rdfs:label "activity with material component" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has a material resource" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity with material component" .
ilap-view:hasFinish a owl:DatatypeProperty ;
rdfs:domain lci:PeriodInTime ;
rdfs:label "has finish" .
ilap:SafetyTestShutdown
a ilap:ClassOfShutdownByReason , owl:Class ;
rdfs:label "safety test shutdown" ;
rdfs:subClassOf ilap:Shutdown ;
lci:definedByLiteral "shutdown that is to carry out a safety test" ;
lcm:hasPersonInterpretableIdentifierLiteral
"safety test shutdown" .
ilap:ActivityThatRequiresAreaAccessRestriction
a ilap:ActivityRiskMitigation , owl:Class ;
rdfs:label "activity that requires area access restriction" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that requires an area access restriction" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that requires area access restriction" .
ilap:MaterialResourceInPlan
a owl:Class ;
rdfs:label "material resource in plan" ;
rdfs:subClassOf ilap:ResourceInPlan , lci:ClassOfPhysicalObject ;
lci:definedByLiteral "class of physical object that is a resource in plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"material resource in plan" .
ilap:ActivityRequirementSpecificationCreation
a owl:Class ;
rdfs:label "activity requirement specification creation"^^xsd:string ;
rdfs:subClassOf ilap:RequirementSpecificationCreation , ilap:ActivitySpecificationCreation ;
lci:definedByLiteral "activity specification creation that is a requirement specification creation"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity requirement specification creation"^^xsd:string .
ilap-view:fulfilmentHasCurrentCompletionStatus
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "fulfilment has current completion status" ;
rdfs:range ilap:ActivityCompletionStatus .
ilap:liveScheduleFor a owl:ObjectProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "live schedule for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a planning activity that holds the schedule to mitigate any delays" ;
lcm:hasPersonInterpretableIdentifierLiteral
"live schedule for" ;
owl:inverseOf ilap:hasLiveSchedule .
ilap-view:planHasActualCurrentExpenditure
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "plan has actual current expenditure" .
ilap:ClassOfSubject a owl:Class ;
rdfs:label "class of subject" ;
rdfs:subClassOf lci:ClassOfPhysicalObject ;
lci:definedByLiteral "power class of subject" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of subject" .
ilap-view:fulfilmentHasActualSub-contractor
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "fulfilment has actual sub-contractor" ;
rdfs:range ilap-view:PersonOrOrganization .
ilap:PlanningReadyForExecution
a ilap:ActivityPlanningStatus , owl:Class ;
rdfs:label "planning - ready for execution" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that holds a plan for activity as ready for execution" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning - ready for execution" .
ilap:EventInPlan a owl:Class ;
rdfs:label "event in plan" ;
rdfs:subClassOf ilap:Specification , ilap:Occurrence , lci:ClassOfEvent ;
lci:definedByLiteral "class of event that is an occurrence and a specification, and that is within a plan" ;
lcm:hasNoteOnScopeLiteral "An event in plan can be a milestone for a planning activity." ;
lcm:hasPersonInterpretableIdentifierLiteral
"event in plan" .
ilap-xsd:hasManagedProgrammeOfWork
a owl:ObjectProperty ;
rdfs:domain ilap-xsd:Data ;
rdfs:range ilap:ManagedProgrammeOfWork .
ilap-view:hasLifecyclePhase
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "has lifecycle phase" ;
rdfs:range ilap:LifecyclePhase .
ilap-view:implementationHasActualProjectLeader
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "implementation has actual project leader" ;
rdfs:range ilap-view:PersonOrOrganization .
ilap:MiniShutdown a ilap:ClassOfShutdownByReason , owl:Class ;
rdfs:label "mini-shutdown" ;
rdfs:subClassOf ilap:Shutdown ;
lci:definedByLiteral "shutdown that is short term" ;
lcm:hasNoteOnScopeLiteral "A mini-shutdown is often for inspection." ;
lcm:hasPersonInterpretableIdentifierLiteral
"mini-shutdown" .
ilap:InstalledSoftware
a owl:Class ;
rdfs:label "installed software" ;
rdfs:subClassOf lci:FunctionalPhysicalObject ;
lci:definedByLiteral "functional physical object that is software installed on a computer" ;
lcm:hasPersonInterpretableIdentifierLiteral
"installed software" .
ilap:AsLateAsPossible
a owl:Class ;
rdfs:label "as late as possible"^^xsd:string ;
rdfs:subClassOf lci:ClassOfEvent , ilap:Specification ;
lci:definedByLiteral "class of event and specification that specifies a member to be as late as possible"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"as late as possible"^^xsd:string .
ilap:FacilityDisposalProject
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "facility disposal project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that is for the removal and disposal of a facility" ;
lcm:hasPersonInterpretableIdentifierLiteral
"facility disposal project" .
ilap:ActivityCarriedOutOnHCSystem
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity carried out on HC system" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that is carried out on a hydro-carbon system" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity carried out on HC system" .
ilap:Agent a owl:Class ;
rdfs:label "agent" ;
rdfs:subClassOf lci:PhysicalObject ;
lci:definedByLiteral "physical object that acts autonomously within an activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"agent" .
ilap:Sunday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Sunday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Sunday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Sunday" .
ilap-view:activityPartOfSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "activity part of schedule" ;
rdfs:range ilap:PlanForActivity .
ilap:monitoredBy a owl:ObjectProperty ;
rdfs:domain lci:Activity ;
rdfs:label "monitored by" ;
rdfs:range lci:Activity ;
lci:definedByLiteral "an activity that monitors" ;
lcm:hasPersonInterpretableIdentifierLiteral
"monitored by" ;
owl:inverseOf ilap:monitors .
ilap:ActivityThatRequiresTemporaryBarrierImpairment
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that requires temporary barrier impairment" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that requires a temporary barrier impairment" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that requires temporary barrier impairment" .
ilap:schedulingFor a owl:ObjectProperty ;
rdfs:domain ilap:Scheduling ;
rdfs:label "scheduling for" ;
rdfs:range ilap:PlanForActivity ;
lci:definedByLiteral "a plan for activity that the scheduling activity is intended to create a schedule for" ;
lcm:hasPersonInterpretableIdentifierLiteral
"scheduling for" ;
owl:inverseOf ilap:hasScheduling .
ilap:ActivityCriticality
a owl:Class ;
rdfs:label "activity criticality" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to the consequences that would follow if it were not completed" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity criticality" .
ilap:Friday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Friday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Friday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Friday" .
ilap-view:hasDescriptionOfPlannedCurrentProgress
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has description of planned current progress" .
ilap:MediumPriorityActivity
a ilap:ActivityPriority , owl:Class ;
rdfs:label "medium priority activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity with medium priority" ;
lcm:hasPersonInterpretableIdentifierLiteral
"medium priority activity" .
ilap-view:hasActualCurrentStaffTimeUsage
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has actual current staff time usage" .
ilap-view:noEarlierThan
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "no earlier than" .
ilap-view:hasPlannedCurrentStaffTimeUsage
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has planned current quantity used" .
ilap:WorkOrder a owl:Class ;
rdfs:label "work order" ;
rdfs:subClassOf ilap:ManagedProgrammeOfWork ;
lci:definedByLiteral "managed programme of work that contains a request from one party to another for one or more activities to be performed" ;
lcm:hasPersonInterpretableIdentifierLiteral
"work order" .
ilap:ScheduleForActivityInPlan
a owl:Class ;
rdfs:label "schedule for activity in plan" ;
rdfs:subClassOf ilap:Occurrence , ilap:Schedule ;
lci:definedByLiteral "schedule and occurrence that specifies start and end dates for the events in plan at the beginning and end of an activity in plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"schedule for activity in plan" .
ilap:StartUp a ilap:ShutdownPhase , owl:Class ;
rdfs:label "start-up" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is starting up a facility, system or equipment item" ;
lcm:hasPersonInterpretableIdentifierLiteral
"start-up" .
ilap:EvaluatingShutdownRequirement
a owl:Class ;
rdfs:label "evaluating shutdown requirement" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is evaluating the shutdown requirement for a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"evaluating shutdown requirement" .
ilap:specificationCreatedBy
a owl:ObjectProperty ;
rdfs:domain ilap:Specification ;
rdfs:label "specification created by" ;
rdfs:range ilap:SpecificationCreation ;
lci:definedByLiteral "the specification creation activity that created the specifcation"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"specification created by" ;
owl:inverseOf ilap:createsSpecification .
ilap:DeliveringMaterial
a owl:Class ;
rdfs:label "delivering material" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is delivering material" ;
lcm:hasPersonInterpretableIdentifierLiteral
"delivering material" .
ilap:Project a owl:Class ;
rdfs:label "project" ;
rdfs:subClassOf ilap:ManagedProgrammeOfWork ;
lci:definedByLiteral "managed programme of work that is a temporary endeavour undertaken to meet a single objective" ;
lcm:hasNoteOnScopeLiteral "A project is not an ongoing endeavour. It has a beginning and an end." , "A managed programme of work can have parts from different projects. Therefore the whole does not have single objective and is not a project." ;
lcm:hasPersonInterpretableIdentifierLiteral
"project" .
ilap:MaterialDeliveryProgressStatus
a owl:Class ;
rdfs:label "material delivery progress status" ;
rdfs:subClassOf ilap:ClassOfMaterialDelivering ;
lci:definedByLiteral "class of material delivering that is according to the current progress" ;
lcm:hasPersonInterpretableIdentifierLiteral
"material delivery progress status" .
ilap-view:hasPreviousSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has previous schedule" ;
rdfs:range ilap:Schedule .
ilap:hasSource a owl:ObjectProperty ;
rdfs:domain ilap:SpecificationDefinition ;
rdfs:label "has source" ;
rdfs:range ilap:Specification ;
lci:definedByLiteral "a specification that is a source for the specification definition activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has source" ;
owl:inverseOf ilap:sourceFor .
ilap-view:hasMaterialDeliveryLocationStatus
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has material delivery location status" ;
rdfs:range ilap:MaterialDeliveryLocationStatus .
ilap-view:hasAuthorisationForExpenditureIdentifier
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has authorisation for expenditure identifier" .
ilap-view:mustFinishOn
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "must finish on" .
ilap:ClassOfActivityByMaterialComponent
a owl:Class ;
rdfs:label "class of activity by material component" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to whether or not it has a material resource" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity by material component" .
ilap:Shutdown a ilap:ShutdownPhase , owl:Class ;
rdfs:label "shutdown" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is shutting down a facility, system or equipment item" ;
lcm:hasPersonInterpretableIdentifierLiteral
"shutdown" .
ilap-view:Calendar a owl:Class ;
rdfs:label "calendar" ;
rdfs:subClassOf lci:PeriodInTime .
ilap-view:availableResourceHasCalendar
a owl:ObjectProperty ;
rdfs:domain ilap-view:AvailableResource ;
rdfs:label "available resource has calendar" ;
rdfs:range lci:PeriodInTime .
ilap:hasMilestone a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has milestone" ;
rdfs:range ilap:EventInPlan ;
lci:definedByLiteral "an event in plan that is a milestone for the planning activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has milestone" ;
owl:inverseOf ilap:milestoneFor .
ilap:Occurrence a owl:Class ;
rdfs:label "occurrence" ;
rdfs:subClassOf lci:ClassOfIndividual ;
lci:definedByLiteral "class of individual that has its role as a part as a criterion for membership" ;
lcm:hasExampleDescriptionLiteral
"'Front offside wheel' is an occurrence. It is an occurrence subclass of the class 'wheel'." ;
lcm:hasPersonInterpretableIdentifierLiteral
"occurrence" .
ilap:SubContractor a owl:Class ;
rdfs:label "sub-contractor" ;
rdfs:subClassOf ilap:Contractor ;
lci:definedByLiteral "contractor that is a sub-contractor" ;
lcm:hasPersonInterpretableIdentifierLiteral
"sub-contractor" .
ilap:ShutdownPlan a owl:Class ;
rdfs:label "shutdown plan" ;
rdfs:subClassOf ilap:PlanForActivity , ilap:ClassOfShutdown ;
lci:definedByLiteral "class of shutdown that is a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"shutdown plan" .
ilap:ClassOfResource a owl:Class ;
rdfs:label "class of resource" ;
rdfs:subClassOf lci:ClassOfPhysicalObject ;
lci:definedByLiteral "power class of resource" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of resource" .
ilap-view:hasPlannedTotalQuantity
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned total activity cost" .
ilap:Level-4-ContractControlPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 4 - contract control plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the control plan of a contractor's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 4 - contract control plan" .
ilap:CreatingSettlementRule
a owl:Class ;
rdfs:label "creating settlement rule" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is creating a settlement rule for a work order" ;
lcm:hasNoteOnScopeLiteral "A settlement rule specifies when and how payments for a work order shall be made." ;
lcm:hasPersonInterpretableIdentifierLiteral
"creating settlement rule" .
ilap:hasDailyAvailableDuration
a owl:ObjectProperty ;
rdfs:domain lci:PossibleIndividual ;
rdfs:label "has daily available duration" ;
rdfs:range lci:TimeDuration ;
lci:definedByLiteral "the time duration during which the possible individual is available each day" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has daily available duration" .
ilap:hasCurrentSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has current schedule" ;
rdfs:range ilap:Schedule ;
lci:definedByLiteral "the schedule that is current for a planning activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has current schedule" ;
owl:inverseOf ilap:currentScheduleFor .
ilap:LowCriticalityActivity
a ilap:ActivityCriticality , owl:Class ;
rdfs:label "low criticality activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has a low criticality" ;
lcm:hasPersonInterpretableIdentifierLiteral
"low criticality activity" .
ilap:Discipline a owl:Class ;
rdfs:label "discipline" ;
rdfs:subClassOf ilap:ClassOfStaffTime ;
lci:definedByLiteral "class of staff time that is according to the knowledge required to carry out the work" ;
lcm:hasExampleDescriptionLiteral
"The class 'KG Geoscience' that is a member of NORSOK SCCS - COR Class (Standard Cost Coding System - Code Of Resources) is a discipline." ;
lcm:hasPersonInterpretableIdentifierLiteral
"discipline" .
ilap:AsEarlyAsPossible
a owl:Class ;
rdfs:label "as early as possible"^^xsd:string ;
rdfs:subClassOf ilap:Specification , lci:ClassOfEvent ;
lci:definedByLiteral "class of event and specification that specifies a member to be a early as possible"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"as early as possible"^^xsd:string .
ilap-view:hasDiscipline
a owl:ObjectProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has discipline" ;
rdfs:range ilap:Discipline .
ilap:currentScheduleFor
a owl:ObjectProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "current schedule for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a planning activity that has the schedule as current" ;
lcm:hasPersonInterpretableIdentifierLiteral
"current schedule for" ;
owl:inverseOf ilap:hasCurrentSchedule .
ilap:ActivitySpecificationCreation
a owl:Class ;
rdfs:label "activity specification creation"^^xsd:string ;
rdfs:subClassOf ilap:SpecificationCreation ;
lci:definedByLiteral "specification creation that creates a specification for a required activity"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity specification creation"^^xsd:string .
ilap:CompletedActivity
a ilap:ActivityCompletionStatus , owl:Class ;
rdfs:label "completed activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has been completed" ;
lcm:hasPersonInterpretableIdentifierLiteral
"completed activity" .
ilap:ActivityForWhichEntryPermitIsRequired
a ilap:ActivityRiskMitigation , owl:Class ;
rdfs:label "activity for which entry permit is required" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk for which an entry permit is required" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity for which entry permit is required" .
ilap:ActivityCompletionStatus
a owl:Class ;
rdfs:label "activity completion status" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to whether or not is active, completed or abandoned" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity completion status" .
ilap:CheckingMaterialAvailability
a owl:Class ;
rdfs:label "checking material availability" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is checking the material availability for a resource in plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"checking material availability" .
ilap:DrillingAndWellProject
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "drilling and well project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that is for drilling or the creation of a well" ;
lcm:hasPersonInterpretableIdentifierLiteral
"drilling and well project" .
ilap:ClassOfPlanning a owl:Class ;
rdfs:label "class of planning" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "power class of planning" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of planning" .
ilap-view:hasOperatorOfActivitySubject
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has operator of activity subject" ;
rdfs:range lci:Organization .
ilap:planningFor a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "planning for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a required activity that the planning activity is intended to create a plan for" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning for" ;
owl:inverseOf ilap:hasPlanning .
ilap-view:hasLiveSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has live schedule" ;
rdfs:range ilap:Schedule .
ilap:StaffTimeResourceInPlan
a owl:Class ;
rdfs:label "staff time resource in plan" ;
rdfs:subClassOf ilap:ResourceInPlan , ilap:ClassOfStaffTime ;
lci:definedByLiteral "class of staff time that is resource in plan" ;
lcm:hasNoteOnScopeLiteral "A staff time resource in plan is often a subclass of a resource breakdown class, such as a member of the NORSOK SCCS - COR (Standard Cost Coding System - Code Of Resources)." ;
lcm:hasPersonInterpretableIdentifierLiteral
"staff time resource in plan" .
ilap:ActivityRequirementSpecification
a owl:Class ;
rdfs:label "activity requirement specification" ;
rdfs:subClassOf ilap:ActivitySpecification , ilap:RequirementSpecification , lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is a requirement specification" , "activity specification that is a requirement specification" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity requirement specification" .
ilap:hasSchedule a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has schedule" ;
rdfs:range ilap:Schedule ;
lci:definedByLiteral "a schedule that specifies when events within the plan for activity happen" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has schedule" ;
owl:inverseOf ilap:scheduleFor .
ilap-view:hasOperatorOfProgrammeSubject
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "has operator of programme subject" ;
rdfs:range lci:Organization .
ilap:ActivityInPlanForScheduling
a owl:Class ;
rdfs:label "activity in plan for scheduling" ;
rdfs:subClassOf ilap:UnscheduledPlan , ilap:ActivityInPlan ;
lci:definedByLiteral "activity in plan and unscheduled plan that has criteria appropriate as input to planning software" ;
lcm:hasNoteOnScopeLiteral "Usually planning software is not concerned with the parts of an activity in plan for scheduling." ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity in plan for scheduling" .
ilap:ActivityBreakdown
a owl:Class ;
rdfs:label "activity breakdown" ;
rdfs:subClassOf lci:ClassOfClassOfActivity ;
lci:definedByLiteral "class of class of activity that is a set of class of activity used to specify activities" ;
lcm:hasExampleDescriptionLiteral
"The NORSOK SCCS - SAB (Standard Cost Coding System - Standard Activity Breakdown) is an activity breakdown." ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity breakdown" .
ilap:Country a owl:Class ;
rdfs:label "country" ;
rdfs:subClassOf ilap:GeographicArea ;
lci:definedByLiteral "geographic area that is a country" ;
lcm:hasPersonInterpretableIdentifierLiteral
"country" .
ilap:ActivityForWhichJobSafetyAnalysisIsRequired
a ilap:ActivityRiskMitigation , owl:Class ;
rdfs:label "activity for which job safety analysis is required" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk for which ajob safety analysis is required" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity for which job safety analysis is required" .
ilap:FreeFloat a owl:Class ;
rdfs:label "free float" ;
rdfs:subClassOf ilap:PeriodInTimeInPlan ;
lci:definedByLiteral "period of time in plan into which the activity that contains it can overrun with-out causing a delay to any subsequent activities in the plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"free float" .
ilap-view:hasMilestone
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has milestone" ;
rdfs:range ilap:EventInPlan .
ilap:ClassOfMaterialDelivering
a owl:Class ;
rdfs:label "class of material delivering" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "power class of material delivering" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of material delivering" .
ilap-view:hasPlannedCurrentPercentageUsed
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned current duration used" .
ilap:PlanForActivityForScheduling
a owl:Class ;
rdfs:label "plan for activity for scheduling" ;
rdfs:subClassOf ilap:UnscheduledPlan ;
lci:definedByLiteral "plan for activity that has criteria appropriate as input to planning software" ;
lcm:hasNoteOnScopeLiteral "Scheduling software addresses those parts of a plan for activity for scheduling that are activities in plan for scheduling." ;
lcm:hasPersonInterpretableIdentifierLiteral
"plan for activity for scheduling" .
ilap:ClassOfActivityPotentiallyDependentUponShutdown
a ilap:ClassOfActivityShutdownPhaseRequirement , owl:Class ;
rdfs:label "class of activity potentially dependent upon shutdown" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that has members that may be required to be also members of activity between start-up and shutdown depending upon circumstance" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity potentially dependent upon shutdown" .
ilap:ExecutionActivity
a owl:Class ;
rdfs:label "execution activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that does not contain management and planning activities for the whole within it, but has management and planning if any carried out by parallel activities" ;
lcm:hasNoteOnScopeLiteral "An execution activity can have managed programmes of work as parts." ;
lcm:hasPersonInterpretableIdentifierLiteral
"execution activity" .
ilap-view:hasDescription
a owl:DatatypeProperty ;
rdfs:domain lci:PeriodInTime ;
rdfs:label "has description" .
ilap:PlanningSoftwareCode
a owl:Class ;
rdfs:label "planning software code" ;
rdfs:subClassOf ilap:SoftwareCode , ilap:ClassOfInstalledPlanningSoftware ;
lci:definedByLiteral "class of installed planning software that is software code" ;
lcm:hasPersonInterpretableIdentifierLiteral
"planning software code" .
ilap:CheckingMaterialAvailabilityNotAvailable
a ilap:MaterialAvailabilityCheckResult , owl:Class ;
rdfs:label "checking material availability - not available" ;
rdfs:subClassOf ilap:CheckingMaterialAvailability ;
lci:definedByLiteral "checking material availability activity that finds the resource in plan is not available" ;
lcm:hasPersonInterpretableIdentifierLiteral
"checking material availability - not available" .
ilap:ActivityBetweenShutdownAndStartUp
a ilap:ShutdownPhase , owl:Class ;
rdfs:label "activity between shutdown and start-up" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that takes place between a shutdown and the following start-up" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity between shutdown and start-up" .
ilap-view:requiresShutdownOfSystem
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "requires shutdown of system" ;
rdfs:range lci:PhysicalObject .
ilap:TotalFloat a owl:Class ;
rdfs:label "total float" ;
rdfs:subClassOf ilap:PeriodInTimeInPlan ;
lci:definedByLiteral "period of time in plan into which the activity that contains it can overrun without causing a delay to the plan as a whole" ;
lcm:hasPersonInterpretableIdentifierLiteral
"total float" .
ilap:ClassOfActivitySpecification
a owl:Class ;
rdfs:label "class of activity specification" ;
rdfs:subClassOf lci:ClassOfClassOfActivity ;
lci:definedByLiteral "power class of activity specification" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity specification" .
ilap:ActualActivity a owl:Class ;
rdfs:label "actual activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is an actual individual" ;
lcm:hasPersonInterpretableIdentifierLiteral
"actual activity" .
ilap:ActivityRiskFactor
a owl:Class ;
rdfs:label "activity risk factor" ;
rdfs:subClassOf ilap:ClassOfActivityWithRisk ;
lci:definedByLiteral "class of activity with risk according to the reason for the risk" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity risk factor" .
ilap-view:hasEarlyAchievement
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "has early achievement" .
ilap-view:hasFrontlineDate
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has frontline date" .
ilap:hasBaselineSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has baseline schedule" ;
rdfs:range ilap:Schedule ;
lci:definedByLiteral "the schedule that is used by the planning activity to measuring project progress and contract performance" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has baseline schedule" ;
owl:inverseOf ilap:baselineScheduleFor .
ilap-view:dailyAvailableDuration
a owl:DatatypeProperty ;
rdfs:domain ilap-view:AvailableResource ;
rdfs:label "daily available duration" .
ilap:hasScheduling a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has scheduling" ;
rdfs:range ilap:Scheduling ;
lci:definedByLiteral "a scheduling activity that is intended to create a schedule for the plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has scheduling" ;
owl:inverseOf ilap:schedulingFor .
ilap:ScheduleToBeMaintainedThroughout
a owl:Class ;
rdfs:label "schedule to be maintained throughout"^^xsd:string ;
rdfs:subClassOf ilap:Schedule ;
lci:definedByLiteral "schedule that specifies an activity according to a schedule shall be kept to the timings in the schedule throughout"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"schedule to be maintained throughout"^^xsd:string .
ilap:ProductStructureBreakdown
a owl:Class ;
rdfs:label "product structure breakdown" ;
rdfs:subClassOf lci:ClassOfClassOfPhysicalObject ;
lci:definedByLiteral "class of class of physical object that is a set of class of physical object used to specify parts of a physical object" ;
lcm:hasExampleDescriptionLiteral
"The NORSOK SCCS - PSB (Standard Cost Coding System - Product Structure Breakdown) is an product structure breakdown." ;
lcm:hasPersonInterpretableIdentifierLiteral
"product structure breakdown" .
ilap-view:mustBeAsLateAsPossible
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "must be as late as possible" .
ilap:ClassOfShutdown a owl:Class ;
rdfs:label "class of shutdown" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "power class of shutdown" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of shutdown" .
ilap:MaintenanceProgramme
a owl:Class ;
rdfs:label "maintenance programme" ;
rdfs:subClassOf ilap:ManagedProgrammeOfWork ;
lci:definedByLiteral "managed programme of work that is undertaken to ensure continued safe and reliable operation of a facility, system or equipment item" ;
lcm:hasPersonInterpretableIdentifierLiteral
"maintenance programme" .
ilap:ScheduleForEventInPlan
a owl:Class ;
rdfs:label "schedule for event in plan" ;
rdfs:subClassOf ilap:EventInPlan ;
lci:definedByLiteral "event in plan that specifies the date" ;
lcm:hasPersonInterpretableIdentifierLiteral
"schedule for event in plan" .
ilap:Scheduling a owl:Class ;
rdfs:label "scheduling" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is the creation of one or more schedules" ;
lcm:hasPersonInterpretableIdentifierLiteral
"scheduling" .
ilap:ActivityThatInvolvesShallowGasOperation
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that involves shallow gas operation" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves a shallow gas operation" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that involves shallow gas operation" .
ilap:ClassOfActivityByPriorPlanning
a owl:Class ;
rdfs:label "class of activity by prior planning" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to whether or not it is planned" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity by prior planning" .
ilap:WeeklyRepeatingPeriod
a ilap:ClassOfPeriodInTimeAccordingToRepeat , owl:Class ;
rdfs:label "weekly repeating period" ;
rdfs:subClassOf ilap:RepeatingPeriodInTime ;
lci:definedByLiteral "period in time that repeats every week" ;
lcm:hasPersonInterpretableIdentifierLiteral
"weekly repeating period" .
ilap-view:hasDescriptionOfActualCurrentProgress
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has description of actual current progress" .
ilap:operates a owl:ObjectProperty ;
rdfs:domain ilap:Agent ;
rdfs:label "operates" ;
rdfs:range lci:PhysicalObject ;
lci:definedByLiteral "a physical object that is operated by the agent" ;
lcm:hasPersonInterpretableIdentifierLiteral
"operates" ;
owl:inverseOf ilap:operatedBy .
ilap:ActivityThatInvolvesUtilityConstraint
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that involves utility constraint" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves a utility constraint" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that involves utility constraint" .
ilap:hasPlan a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "has plan" ;
rdfs:range ilap:PlanForActivity ;
lci:definedByLiteral "a plan for activity that is intended to realise the required activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has plan" ;
owl:inverseOf ilap:planFor .
ilap:PointInTimeInPlan
a owl:Class ;
rdfs:label "point in time in plan" ;
rdfs:subClassOf ilap:Specification , ilap:Occurrence , lci:ClassOfPointInTime ;
lci:definedByLiteral "class of point in time that is an occurrence and a specification, and that is within a plan" ;
lcm:hasPersonInterpretableIdentifierLiteral
"point in time in plan" .
ilap:hasObjective a owl:ObjectProperty ;
rdfs:domain ilap:SpecificationDefinition ;
rdfs:label "has objective" ;
rdfs:range ilap:RequiredIndividual ;
lci:definedByLiteral "a required indivdiual that is the objective of the specification definition activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has objective" ;
owl:inverseOf ilap:objectiveFor .
ilap:Specification a owl:Class ;
rdfs:label "specification" ;
rdfs:subClassOf lci:ClassOfIndividual ;
lci:definedByLiteral "class of individual that specifies a required individual" ;
lcm:hasPersonInterpretableIdentifierLiteral
"specification" .
ilap:DayOfWeek a owl:Class ;
rdfs:label "day of week" ;
rdfs:subClassOf lci:ClassOfPeriodInTime ;
lci:definedByLiteral "class of period of time that is a day of the week" ;
lcm:hasPersonInterpretableIdentifierLiteral
"day of week" .
ilap-view:finishNoLaterThan
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "finish no later than" .
ilap:IncreaseOilAndGasRecovery
a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "increase oil and gas recovery" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that increases the recovery of oil, gas or both from a given petroleum field, well or wellbore" ;
lcm:hasPersonInterpretableIdentifierLiteral
"increase oil and gas recovery" .
ilap:WorkCentre a owl:Class ;
rdfs:label "work centre" ;
rdfs:subClassOf ilap:Resource , ilap:Site ;
lci:definedByLiteral "site and resource that is a work centre for an activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"work centre" .
ilap:ActivityThatInvolvesLiftingOperation
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that involves lifting operation" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves a lifting operation" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that involves lifting operation" .
ilap:MaterialDeliveredToBase
a ilap:MaterialDeliveryLocationStatus , owl:Class ;
rdfs:label "material delivered to base" ;
rdfs:subClassOf lci:MaterializedPhysicalObject ;
lci:definedByLiteral "materialized physical object that is currently at a base where it has been delivered" ;
lcm:hasPersonInterpretableIdentifierLiteral
"material delivered to base" .
ilap:Monday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Monday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Monday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Monday" .
ilap-view:startNoLaterThan
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "start no later than" .
ilap-view:hasActivityBreakdownClass
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has activity breakdown class" ;
rdfs:range ilap:ActivityBreakdownClass .
ilap:targetScheduleFor
a owl:ObjectProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "target schedule for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a planning activity that uses the schedule as a measure against which actual performance can be gauged" ;
lcm:hasPersonInterpretableIdentifierLiteral
"target schedule for" ;
owl:inverseOf ilap:hasTargetSchedule .
ilap:ClassOfActivityIndependentOfShutdown
a ilap:ClassOfActivityShutdownPhaseRequirement , owl:Class ;
rdfs:label "class of activity independent of shutdown" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that has members that can take place during any shutdown phase or not associated with a shutdown activity at all" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity independent of shutdown" .
ilap:Tuesday a ilap:DayOfWeek , owl:Class ;
rdfs:label "Tuesday" ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that is a Tuesday" ;
lcm:hasPersonInterpretableIdentifierLiteral
"Tuesday" .
ilap-view:hasPlannedCurrentQuantityUsed
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned current material usage" .
ilap:ExecutionApproach
a owl:Class ;
rdfs:label "execution approach" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to the way in which it is carried out" ;
lcm:hasPersonInterpretableIdentifierLiteral
"execution approach" .
ilap-view:hasPlannedCurrentMaterialUsage
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has planned current activity expenditure" .
ilap-view:implementationHasCurrentCompletionStatus
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "implementation has current completion status" ;
rdfs:range ilap:ActivityCompletionStatus .
ilap:OilAndGasProductionProject
a ilap:OilAndGasProjectObjective , owl:Class ;
rdfs:label "oil and gas production project" ;
rdfs:subClassOf ilap:Project ;
lci:definedByLiteral "project that for the production of oil or gas" ;
lcm:hasPersonInterpretableIdentifierLiteral
"oil and gas production project" .
ilap:hasPercentageComplete
a owl:DatatypeProperty ;
rdfs:domain lci:Activity ;
rdfs:label "has percentage complete" ;
lci:definedByLiteral "the percentage complete of an activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has percentage complete" .
ilap-view:hasActualCurrentQuantityUsed
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has actual current quantity used" .
ilap:Operator a owl:Class ;
rdfs:label "operator" ;
rdfs:subClassOf ilap:Agent ;
lci:definedByLiteral "agent that operates a facility" ;
lcm:hasPersonInterpretableIdentifierLiteral
"operator" .
ilap-view:mustStartAsLateAsPossible
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "must start as late as possible" .
ilap-view:hasCurrentSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has current schedule" ;
rdfs:range ilap:Schedule .
ilap:ActivityPhase a owl:Class ;
rdfs:label "activity phase" ;
rdfs:subClassOf lci:ClassOfActivity ;
lci:definedByLiteral "class of activity that is according to position within a sequence of activities" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity phase" .
ilap-view:SF-PlanSuccessorLink
a owl:Class ;
rdfs:label "SF - plan successor link" ;
rdfs:subClassOf ilap:PlanSuccessorLink .
ilap-view:hasProjectSiteEnvironment
a owl:ObjectProperty ;
rdfs:domain ilap:Project ;
rdfs:label "has project site environment" ;
rdfs:range ilap:ClassOfProjectBySiteEnvironment .
ilap-view:hasActualCurrentMaterialUsage
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has actual current material usage" .
ilap:specificationFor
a owl:ObjectProperty ;
rdfs:domain ilap:Specification ;
rdfs:label "specification for" ;
rdfs:range ilap:RequiredIndividual ;
lci:definedByLiteral "a required individual that has the specification" ;
lcm:hasPersonInterpretableIdentifierLiteral
"specification for" ;
owl:inverseOf ilap:hasSpecification .
ilap:StaffTime a owl:Class ;
rdfs:label "staff time" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that is one or more people at work" ;
lcm:hasPersonInterpretableIdentifierLiteral
"staff time" .
ilap-view:addedOrRemoved
a owl:ObjectProperty ;
rdfs:domain lci:PairOfPeriodInTime ;
rdfs:label "added or removed" ;
rdfs:range lci:PeriodInTime .
ilap-view:finishNoEarlierThan
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "finish no earlier than" .
ilap-view:hasPlannedProjectLeader
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has planned current staff time usage" ;
rdfs:range ilap-view:PersonOrOrganization .
ilap-view:resourceHasActualCurrentExpenditure
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "resource has actual current expenditure" .
ilap:ClassOfShutdownByPriorScheduling
a owl:Class ;
rdfs:label "class of shutdown by prior scheduling"^^xsd:string ;
rdfs:subClassOf ilap:ClassOfShutdown ;
lci:definedByLiteral "class of shutdown according to whether or not it is the response to an emergency" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of shutdown by prior intent" .
ilap:DailyRepeatingPeriod
a ilap:ClassOfPeriodInTimeAccordingToRepeat , owl:Class ;
rdfs:label "daily repeating period" ;
rdfs:subClassOf ilap:RepeatingPeriodInTime ;
lci:definedByLiteral "period in time that repeats every day" ;
lcm:hasPersonInterpretableIdentifierLiteral
"daily repeating period" .
ilap:createsSpecification
a owl:ObjectProperty ;
rdfs:domain ilap:SpecificationCreation ;
rdfs:label "creates specification" ;
rdfs:range ilap:Specification ;
lci:definedByLiteral "a specification that the specification creation activity creates"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"creates specification" ;
owl:inverseOf ilap:specificationCreatedBy .
ilap:ClassOfActivityDefinition
a owl:Class ;
rdfs:label "class of activity definition" ;
rdfs:subClassOf ilap:ClassOfActivitySpecification ;
lci:definedByLiteral "power class of activity definition" ;
lcm:hasPersonInterpretableIdentifierLiteral
"class of activity definition" .
ilap:Level-3-ContractMasterPlan
a ilap:PlanLevel , owl:Class ;
rdfs:label "level 3 - contract master plan" ;
rdfs:subClassOf ilap:PlanForActivity ;
lci:definedByLiteral "plan for activity that is the master plan of a contractor's project" ;
lcm:hasPersonInterpretableIdentifierLiteral
"level 3 - contract master plan" .
ilap:hasSpecification
a owl:ObjectProperty ;
rdfs:domain ilap:RequiredIndividual ;
rdfs:label "has specification" ;
rdfs:range ilap:Specification ;
lci:definedByLiteral "a specification that is for the required individual" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has specification" ;
owl:inverseOf ilap:specificationFor .
ilap-view:hasPlannedTotalDuration
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has planned sub-contractor" .
ilap:ActivityThatInvolvesHotWork
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that involves hot work" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that involves work on hot equipment" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that involves hot work" .
ilap:AbandonedActivity
a ilap:ActivityCompletionStatus , owl:Class ;
rdfs:label "abandoned activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that has been abandoned" ;
lcm:hasPersonInterpretableIdentifierLiteral
"abandoned activity" .
ilap:UnplannedActivity
a ilap:ClassOfActivityByPriorPlanning , owl:Class ;
rdfs:label "unplanned activity" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that does not follow a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"unplanned activity" .
ilap:MakeRadicalChange
a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "make radical change" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that makes a radical change" ;
lcm:hasPersonInterpretableIdentifierLiteral
"make radical change" .
ilap-view:hasPlan a owl:ObjectProperty ;
rdfs:domain ilap:RequiredActivity ;
rdfs:label "has plan" ;
rdfs:range ilap:PlanForActivity .
ilap:ConnectedPeriodInTime
a owl:Class ;
rdfs:label "connected period in time"^^xsd:string ;
rdfs:subClassOf lci:PeriodInTime ;
lci:definedByLiteral "period in time that does not have gaps"^^xsd:string ;
lcm:hasPersonInterpretableIdentifierLiteral
"connected period in time"^^xsd:string .
ilap-view:hasActualAchievement
a owl:DatatypeProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "has actual achievement" .
ilap:UnscheduledShutdown
a ilap:ClassOfShutdownByPriorScheduling , owl:Class ;
rdfs:label "unscheduled shutdown" ;
rdfs:subClassOf ilap:Shutdown ;
lci:definedByLiteral "shutdown that is unscheduled" ;
lcm:hasPersonInterpretableIdentifierLiteral
"unscheduled shutdown" .
ilap:hasRevisedSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:Planning ;
rdfs:label "has revised schedule" ;
rdfs:range ilap:Schedule ;
lci:definedByLiteral "the schedule that is held by the planning activity as a revision of its current schedule" ;
lcm:hasPersonInterpretableIdentifierLiteral
"has revised schedule" ;
owl:inverseOf ilap:revisedScheduleFor .
ilap-view:hasOperatorsRequiredEndDate
a owl:DatatypeProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has operators required end date" .
ilap:ActivityBeforeShutdown
a ilap:ShutdownPhase , owl:Class ;
rdfs:label "activity before shutdown" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that takes place before a shutdown" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity before shutdown" .
ilap-view:hasPlannedCurrentActivityExpenditure
a owl:DatatypeProperty ;
rdfs:domain ilap:Schedule ;
rdfs:label "has plan resource" .
ilap:PreCosting a owl:Class ;
rdfs:label "pre-costing" ;
rdfs:subClassOf ilap:Planning ;
lci:definedByLiteral "planning activity that is estimating the cost of a plan for activity" ;
lcm:hasPersonInterpretableIdentifierLiteral
"pre-costing" .
ilap-view:eventHasCurrentSchedule
a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "event has current schedule" ;
rdfs:range ilap:ScheduleForEventInPlan .
ilap:PlanSuccessorLink
a owl:Class ;
rdfs:label "plan successor link" ;
rdfs:subClassOf ilap:PeriodInTimeInPlan ;
lci:definedByLiteral "class of period in time that constrains the temporal relationships between events in plan" ;
lcm:hasNoteOnScopeLiteral "The events in plan constrained by a plan successor link are usually the beginnings and ends of activities in plan." ;
lcm:hasPersonInterpretableIdentifierLiteral
"plan successor link" .
ilap-view:hasPlannedMainContractor
a owl:ObjectProperty ;
rdfs:domain ilap:PlanForActivity ;
rdfs:label "has planned current resource expenditure" ;
rdfs:range lci:Organization .
ilap-view:SS-PlanSuccessorLink
a owl:Class ;
rdfs:label "SS - plan successor link" ;
rdfs:subClassOf ilap:PlanSuccessorLink .
ilap:milestoneFor a owl:ObjectProperty ;
rdfs:domain ilap:EventInPlan ;
rdfs:label "milestone for" ;
rdfs:range ilap:Planning ;
lci:definedByLiteral "a planning activity that has the event in plan as a milestone" ;
lcm:hasPersonInterpretableIdentifierLiteral
"milestone for" ;
owl:inverseOf ilap:hasMilestone .
ilap-view:hasActualCurrentPercentageUsed
a owl:DatatypeProperty ;
rdfs:domain ilap:ResourceInPlan ;
rdfs:label "has actual current percentage used" .
ilap:MaintainBusinessAsUsual
a ilap:ClassOfActivityByManagementObjective , owl:Class ;
rdfs:label "maintain business as usual" ;
rdfs:subClassOf lci:Activity ;
lci:definedByLiteral "activity that maintains the normal operation of a business" ;
lcm:hasPersonInterpretableIdentifierLiteral
"maintain business as usual" .
ilap:SubjectInPlan a owl:Class ;
rdfs:label "subject in plan" ;
rdfs:subClassOf ilap:Specifiation , ilap:Occurrence , ilap:ClassOfSubject ;
lci:definedByLiteral "class of subject that is an occurrence and a specification, and that is within a plan" ;
lcm:hasNoteOnScopeLiteral "A subject in plan is often a subclass of product structure breakdown class, such as a member of NORSOK SCCS - PSB (Standard Cost Coding System - Product Structure Breakdown)." ;
lcm:hasPersonInterpretableIdentifierLiteral
"subject in plan" .
ilap-view:forProgrammeOfWork
a owl:ObjectProperty ;
rdfs:domain ilap-view:AvailableResource ;
rdfs:label "for programme of work" ;
rdfs:range ilap:RequiredActivity .
ilap:ActivityThatIsPOBReducing
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that is POB reducing" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that reduces the number of persons on board" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that is POB reducing" .
ilap:ActivityThatRequiresWorkOverOpenSea
a ilap:ActivityRiskFactor , owl:Class ;
rdfs:label "activity that requires work over open sea" ;
rdfs:subClassOf ilap:ActivityWithRisk ;
lci:definedByLiteral "activity with risk that requires work over open sea" ;
lcm:hasPersonInterpretableIdentifierLiteral
"activity that requires work over open sea" .