PLANNING_CORE.ttl
98.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
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
# baseURI: http://data.posccaesar.org/ilap/
@prefix BRREG: <http://data.posccaesar.org/brreg/> .
@prefix ILAP: <http://data.posccaesar.org/ilap/> .
@prefix NPD: <http://data.posccaesar.org/npd/> .
@prefix NPD-interface: <http://data.posccaesar.org/npd/ontology/ilap-interface/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ILAP:
rdf:type owl:Ontology ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ILAP:Activity
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
rdfs:comment "A Thing that brings about (intended) change by events, operations or processes that consume time and possibly other resources (adapted from ISO 15926, PMI and BSI)."^^xsd:string ;
rdfs:label "Activity"^^xsd:string ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Status ;
owl:onProperty ILAP:hasActivityStatus
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty ILAP:hasExternalReference ;
owl:someValuesFrom ILAP:ExternalReference
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Discipline ;
owl:onProperty ILAP:hasActivityDiscipline
] .
ILAP:ActivityDependency
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
rdfs:comment "A Constraint in which an Activity or Milestone is linked to other Activities (or Milestones) that must be performed (completely or partially) before it can be performed."^^xsd:string ;
rdfs:label "Activity Dependency"^^xsd:string ;
rdfs:subClassOf ILAP:Constraint ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onClass ILAP:Activity ;
owl:onProperty ILAP:hasSuccessorActivity ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onClass ILAP:Activity ;
owl:onProperty ILAP:hasPredecessorActivity ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
] .
ILAP:ActivityPlan
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
rdfs:comment "A Network of Activities connected by Activity Dependencies, usually represented as a diagram or list of steps used to achieve an Objective."^^xsd:string ;
rdfs:label "Activity Plan (Planned Activity Network)"^^xsd:string ;
rdfs:subClassOf ILAP:ProjectExecutionPlan ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ExternalReference ;
owl:onProperty ILAP:hasExternalReference
] .
ILAP:ActivityStatus
rdf:type owl:Class ;
rdfs:comment "A Status of an Activity (which can have predefined enumeration values)."^^xsd:string ;
rdfs:label "Activity Status"^^xsd:string ;
rdfs:subClassOf ILAP:Status .
ILAP:ActivityWBS
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ;
rdfs:comment "A Network that consists of Work Breakdown Structure elements, a deliverable-oriented grouping of components that organizes and defines the scope of the project. Each Activity has a WBS elements assigned to it."^^xsd:string ;
rdfs:label "Activity WBS"^^xsd:string ;
rdfs:subClassOf ILAP:Network .
ILAP:Application
rdf:type owl:Class ;
rdfs:comment "A Thing that is a software program that creates, manipulates, stores and retrieves Data (adapted from eHow.com)."^^xsd:string ;
rdfs:label "Application"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://data.posccaesar.org/rdl/RDS43165907246> .
ILAP:Asset
rdf:type owl:Class ;
rdfs:comment "A Thing that is owned by a business entity from which future economic benefits may be obtained. In the context of ILAP, the focus is on physical assets."^^xsd:string ;
rdfs:label "Asset"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13318199> .
ILAP:Baseline
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
rdfs:comment "A Network that represents the latest approved version of the Execution Plan, Schedule Cost Estimate and other related documentation, used to provide an official reference level against which the Activity Plan is monitored and controlled (Adapted from PMI and BSI)."^^xsd:string ;
rdfs:label "Baseline"^^xsd:string ;
rdfs:subClassOf ILAP:Network .
ILAP:BaselineSchedule
rdf:type owl:Class ;
rdfs:comment "A decided Schedule that corresponds to the (latest) defined Baseline."^^xsd:string ;
rdfs:label "Baseline Schedule"^^xsd:string ;
rdfs:subClassOf ILAP:Schedule .
ILAP:CAPEX
rdfs:label "CAPEX"^^xsd:string .
ILAP:COR
rdf:type owl:Class ;
rdfs:comment "At large milestones in the project."^^xsd:string ;
rdfs:label "Certificate of Readiness"^^xsd:string ;
rdfs:subClassOf ILAP:CommissioningMilestone .
ILAP:Calendar
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
rdfs:comment "A Thing that defines holidays, weekends, regular working hours and shifts applicable to the duration of a Plan or Schedule. It is used in the planning process for developing the schedule."^^xsd:string ;
rdfs:label "Calendar"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:CalendarFreePeriod ;
owl:onProperty ILAP:hasCalendarPeriod
] .
ILAP:CalendarDay
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
rdfs:comment "A Thing that is a (working or free) day in a given Calendar."^^xsd:string ;
rdfs:label "Calendar Day"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> .
ILAP:CalendarFreePeriod
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
rdfs:comment "A Calendar Period that specifies free time."^^xsd:string ;
rdfs:label "Calendar Free Period"^^xsd:string ;
rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onClass ILAP:Calendar ;
owl:onProperty
[ owl:inverseOf ILAP:hasCalendarPeriod
] ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
] .
ILAP:CalendarFreePeriodWeekRepeat
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
rdfs:comment "A Calendar Free Period that specifies the same free period every week."^^xsd:string ;
rdfs:label "Calendar Free Period Week Repeat"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod .
ILAP:CalendarHour
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
rdfs:comment "A Thing that is a (working or free) hour in a given Calendar."^^xsd:string ;
rdfs:label "Calendar Hour"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> .
ILAP:CalendarPeriod
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ;
rdfs:comment "A Thing that defines the period in which the work (and free) hours apply, defined by a Calendar From-Time and a Calendar To-Time."^^xsd:string ;
rdfs:label "Calendar Period"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:CalendarHour ;
owl:onProperty ILAP:hasCalendarPeriodHour
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:CalendarDay ;
owl:onProperty ILAP:hasCalendarPeriodDay
] .
ILAP:Category
rdf:type owl:Class ;
rdfs:comment "A Thing that is a group of related competencies used to classify Disciplines according to Discipline Code Manuals (typically based on standards such as NORSOK COR codes)."^^xsd:string ;
rdfs:label "Category"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:CommissioningMilestone
rdf:type owl:Class ;
rdfs:label "Commissioning Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:Constraint
rdf:type owl:Class ;
rdfs:comment "A Thing that defines limitation or restrictions on relationships between Possible Individuals (adapted from ISO 15926 and Dictionary.com)."^^xsd:string ;
rdfs:label "Constraint"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS330344> , owl:Thing .
ILAP:ConstructionMilestone
rdf:type owl:Class ;
rdfs:label "Construction Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:Contract
rdf:type owl:Class ;
rdfs:comment "An agreement between two or more parties to accomplish a certain goal in a certain way.A project contract may take the form of an agreement between a builder and an asset owner in which the builder agrees to build necessary infrastructure by a certain time in a certain way, and, in exchange, the property owner makes certain remuneration (adapted from the Free Dictionary)"^^xsd:string ;
rdfs:label "Contract"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7953078> .
ILAP:ContractMilestone
rdf:type owl:Class ;
rdfs:label "Contract Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:ContractType
rdf:type owl:Class ;
rdfs:label "Contract Type"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:Contractor
rdf:type owl:Class ;
rdfs:comment "A Responsible Organization that has a contract related tone or more Activities in a Plan."^^xsd:string ;
rdfs:label "Contractor"^^xsd:string ;
rdfs:subClassOf ILAP:ResponsibleOrganization .
ILAP:ControlSchedule
rdf:type owl:Class ;
rdfs:comment "A Baseline that contains activity start and end dates corresponding to planned progress before execution is started. Corresponds to parts of an original agreed Baseline."^^xsd:string ;
rdfs:label "Control Schedule"^^xsd:string ;
rdfs:subClassOf ILAP:Baseline .
ILAP:Cost
rdf:type owl:Class ;
rdfs:comment "A Thing that is a monetary valuation of (1) effort, (2) material, (3) resources, (4) time and utilities consumed, (5) risks incurred, and (6) opportunity forgone in executing an activity. Costs can be both direct and indirect. All expenses are costs, but not all costs (such as those incurred in acquisition of an income-generating asset) are expenses."^^xsd:string ;
rdfs:label "Cost"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945027> .
ILAP:CostBased
rdf:type owl:Class ;
rdfs:comment "A Resource Type that is limited by its cost."^^xsd:string ;
rdfs:label "Cost Based"^^xsd:string ;
rdfs:subClassOf ILAP:ResourceType .
ILAP:Criticality
rdf:type owl:Class ;
rdfs:comment "A Thing that is a measure of the consequence of failure of (one or more) activities."^^xsd:string ;
rdfs:label "Criticality"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:CurrentSchedule
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
rdfs:comment "A calculated Schedule that contains actual Activity start and end times so far, and forecasted remaining Activity start and end times without mitigating effects."^^xsd:string ;
rdfs:label "Current Schedule"^^xsd:string ;
rdfs:subClassOf ILAP:Schedule .
ILAP:Data
rdf:type owl:Class ;
rdfs:comment "Information that is produced or stored by a computer in the context of a given Objective, used usually to calculate, analyze or plan something (adapted from Merriam-Webster)."^^xsd:string ;
rdfs:label "Data"^^xsd:string ;
rdfs:subClassOf ILAP:Information , <http://posccaesar.org/rdl/RDS11708918> ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onClass ILAP:Project ;
owl:onProperty ILAP:hasDataProject ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
] .
ILAP:DecisionGate
rdf:type owl:Class ;
rdfs:comment "A Milestone Type that represents the end of a Phase of the defined asset lifecycle."^^xsd:string ;
rdfs:label "Decision Gate"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:DecisionGate0
rdf:type owl:Class ;
rdfs:label "DG0: Approval to Start Appraisal/Business Planning"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate1
rdf:type owl:Class ;
rdfs:label "DG1: Approval to Start Concept Planning / Approval to Start Feasibility Study"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate2
rdf:type owl:Class ;
rdfs:label "DG2: Project Pre-sanction / Approval to Start Concept Selection"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate3
rdf:type owl:Class ;
rdfs:label "DG3: Project Sanction / Concept Approval"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate4
rdf:type owl:Class ;
rdfs:label "DG4: Start Operation / Final Capital Expenditure Approval"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate5
rdf:type owl:Class ;
rdfs:label "DG5: Acceptance by Operations"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate6
rdf:type owl:Class ;
rdfs:label "DG6: Decision to End Production / Hand-over to After Market"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGate7
rdf:type owl:Class ;
rdfs:label "DG7: End of Life / Decision to Decommission"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGateA
rdf:type owl:Class ;
rdfs:label "DGA: Approval to Develop a Business Opportunity"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGateB
rdf:type owl:Class ;
rdfs:label "DGB: Approval to Negotiate "^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DecisionGateC
rdf:type owl:Class ;
rdfs:label "DGC: Decision to Assess a New Exploration or Business Opportunity"^^xsd:string ;
rdfs:subClassOf ILAP:DecisionGate .
ILAP:DesignMilestone
rdf:type owl:Class ;
rdfs:label "Design Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:Discipline
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
rdfs:comment "A Thing that is the competence (area of knowledge and experience) required to carry out the work in one or more defined Activities, classified according to Discipline Code Manuals defined by participant organizations (typically by large Contractors, and based on standards such as NORSOK COR codes)."^^xsd:string ;
rdfs:label "Discipline"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:DrillingMilestone
rdf:type owl:Class ;
rdfs:label "Drilling Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:EndMilestone
rdf:type owl:Class ;
rdfs:label "End Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:EngineeringMilestone
rdf:type owl:Class ;
rdfs:label "Engineering Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:ExternalReference
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ;
rdfs:comment "A Thing that identifies a specific information object according to an identification scheme of an external application (i.e., other than the ILAP exchange representation itself). An External Reference can be assigned to any ILAP object, such as Activities, Activity Networks, Projects, Successors, Calendars, Calendar Periods, Resources, etc."^^xsd:string ;
rdfs:label "External Reference"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Application ;
owl:onProperty ILAP:hasReferenceApplication
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Source ;
owl:onProperty ILAP:hasReferenceSource
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty ILAP:hasObjectReferenceID ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
] .
ILAP:Facility
rdf:type owl:Class ;
rdfs:comment "An Asset that is designed, built and operated to serve a particular purpose, such as production of oil and gas."^^xsd:string ;
rdfs:label "Facility"^^xsd:string ;
rdfs:subClassOf ILAP:Asset .
ILAP:Field
rdf:type owl:Class ;
rdfs:comment "An Asset that is the location of reserves for production of oil and gas."^^xsd:string ;
rdfs:label "Field"^^xsd:string ;
rdfs:subClassOf ILAP:Asset .
ILAP:FinishToFinish
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
rdfs:comment "An Activity Dependency where the succeeding Activity cannot finish before the preceding Activity is finished."^^xsd:string ;
rdfs:label "Finish to Finish"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
ILAP:FinishToStart
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
rdfs:comment "An Activity Dependency where the succeeding Activity cannot start before the preceding Activity is finished."^^xsd:string ;
rdfs:label "Finish to Start"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
ILAP:FunctionalLocation
rdf:type owl:Class ;
rdfs:comment "A Location that is a logical position, typically used to specify where an Activity takes place, and normally described relative a functional breakdown of areas used for given types of Activities (e.g., the Drilling Are of an oil platform)."^^xsd:string ;
rdfs:label "Functional Location"^^xsd:string ;
rdfs:subClassOf ILAP:Location .
ILAP:GeographicLocation
rdf:type owl:Class ;
rdfs:comment "A Location that is a geographical position, typically used to specify where a Facility or Organization is located, and normally specified according to NPD for offshore facilities and BRREG for onshore activities."^^xsd:string ;
rdfs:label "Geographic Location"^^xsd:string ;
rdfs:subClassOf ILAP:Location .
ILAP:HighCriticality
rdf:type owl:Class ;
rdfs:comment "An amount of Risk that is classified as High."^^xsd:string ;
rdfs:label "High Criticality"^^xsd:string ;
rdfs:subClassOf ILAP:Criticality .
ILAP:HighPriority
rdf:type owl:Class ;
rdfs:comment "An amount of Priority that is classified as High."^^xsd:string ;
rdfs:label "High Priority"^^xsd:string ;
rdfs:subClassOf ILAP:Priority .
ILAP:Information
rdf:type owl:Class ;
rdfs:comment "A Thing that is facts provided or learned about something or someone (Oxford Dictionaries)."^^xsd:string ;
rdfs:label "Information"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS11711488> .
ILAP:Knowledge
rdf:type owl:Class ;
rdfs:comment "Information that has been put into action in order to achieve a given Objective (adapted from Merriam-Webster)."^^xsd:string ;
rdfs:label "Knowledge"^^xsd:string ;
rdfs:subClassOf ILAP:Information .
ILAP:License
rdf:type owl:Class ;
rdfs:comment "An Asset that is represents permission to explore and exploit petrochemical reserves in a defined area."^^xsd:string ;
rdfs:label "License"^^xsd:string ;
rdfs:subClassOf ILAP:Asset .
ILAP:LifecyclePhase
rdf:type owl:Class ;
rdfs:comment "A Phase that divides the asset lifecycle into parts according to achievement of defined progress or results as basis for making decisions at Decision Gates."^^xsd:string ;
rdfs:label "Lifecycle Phase"^^xsd:string ;
rdfs:subClassOf ILAP:Phase .
ILAP:LiveSchedule
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
rdfs:comment "A decided Schedule that mitigates any delays discovered in the Current Schedule."^^xsd:string ;
rdfs:label "Live Schedule"^^xsd:string ;
rdfs:subClassOf ILAP:Schedule .
ILAP:Location
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ;
rdfs:comment "A Thing that is the location (position) of an Asset."^^xsd:string ;
rdfs:label "Location"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing .
ILAP:LowCriticality
rdf:type owl:Class ;
rdfs:comment "An amount of Risk that is classified as Low."^^xsd:string ;
rdfs:label "Low Criticality"^^xsd:string ;
rdfs:subClassOf ILAP:Criticality .
ILAP:LowPriority
rdf:type owl:Class ;
rdfs:comment "An amount of Priority that is classified as Low."^^xsd:string ;
rdfs:label "Low Priority"^^xsd:string ;
rdfs:subClassOf ILAP:Priority .
ILAP:MCC
rdf:type owl:Class ;
rdfs:comment "Mechanical work is finished. Normally one MCC per MC Package"^^xsd:string ;
rdfs:label "Mechanical Completion Certificate "^^xsd:string ;
rdfs:subClassOf ILAP:ConstructionMilestone .
ILAP:MaterialOrderStatus
rdf:type owl:Class ;
rdfs:comment "A Status of an Order for Materials for (one or more) Activities in a Project"^^xsd:string ;
rdfs:label "Material Order Status"^^xsd:string ;
rdfs:subClassOf ILAP:Status .
ILAP:Milestone
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ;
rdfs:comment "A Thing that is specified in the Activity Network, with a 0-duration, and in many cases a fixed date. A milestone is normally a specified event within the project, often linked to contractual items."^^xsd:string ;
rdfs:label "Milestone"^^xsd:string .
ILAP:MilestoneType
rdf:type owl:Class ;
rdfs:label "Milestone Type"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:Network
rdf:type owl:Class ;
rdfs:comment "A Thing that defines how (a set of) Possible Individuals are connected by Constraints (adapted from Merriam-Webster)."^^xsd:string ;
rdfs:label "Network"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1293947091> .
ILAP:NormalCriticality
rdf:type owl:Class ;
rdfs:comment "An amount of Risk that is classified as Normal."^^xsd:string ;
rdfs:label "Medium Criticality"^^xsd:string ;
rdfs:subClassOf ILAP:Criticality .
ILAP:NormalPriority
rdf:type owl:Class ;
rdfs:comment "An amount of Priority that is classified as Normal."^^xsd:string ;
rdfs:label "Normal Priority"^^xsd:string ;
rdfs:subClassOf ILAP:Priority .
ILAP:NotRanked
rdf:type owl:Class ;
rdfs:label "Not ranked"^^xsd:string ;
rdfs:subClassOf ILAP:Criticality .
ILAP:OPEX
rdfs:label "OPEX"^^xsd:string .
ILAP:Objective
rdf:type owl:Class ;
rdfs:comment "A Thing that is the intended purpose and desired result of carrying out a Project (using Resources to carry out the Activities in a Schedule). A specific result that a person or system aims to achieve within a time frame and with available resources."^^xsd:string ;
rdfs:label "Objective"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:Operation
rdf:type owl:Class ;
rdfs:comment "A WorkTask that represents work carried out in Projects, and has (often detailed) descriptions of the actual work carried out"^^xsd:string ;
rdfs:label "Operation"^^xsd:string ;
rdfs:subClassOf ILAP:WorkTask .
ILAP:OperationStatus
rdf:type owl:Class ;
rdfs:comment "A Status of an Operation (which can have predefined enumeration values)."^^xsd:string ;
rdfs:label "Operation Status"^^xsd:string ;
rdfs:subClassOf ILAP:Status .
ILAP:Operator
rdf:type owl:Class ;
rdfs:comment "A Responsible Organization that operates a Facility in a Field in order to produce oil and gas."^^xsd:string ;
rdfs:label "Operator"^^xsd:string ;
rdfs:subClassOf ILAP:ResponsibleOrganization .
ILAP:PAC
rdf:type owl:Class ;
rdfs:comment "Not carried out systematically."^^xsd:string ;
rdfs:label "Facility Acceptance Certificate"^^xsd:string ;
rdfs:subClassOf ILAP:CommissioningMilestone .
ILAP:Phase
rdf:type owl:Class ;
rdfs:comment "A Thing that divides an Activity or set of Activities into parts according to some predefined set of criteria or measurements of progress."^^xsd:string ;
rdfs:label "Phase"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:PhysicalLocation
rdf:type owl:Class ;
rdfs:comment "A Location that is a physical position within a Geographical Location, typically use to specify the positon of an Asset and specified by coordinates relative to NPD for offshore facilities and BRREG for onshore activities."^^xsd:string ;
rdfs:label "Physical Location"^^xsd:string ;
rdfs:subClassOf ILAP:Location .
ILAP:PlanClassifier
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
rdfs:comment "A Thing that is a (set of) Classifier(s) used to categorize a Plan. The various Classifiers are assigned a value from a set of possible values that are representative for how “things are organized and executed” on the Norwegian Continental Shelf, (other sets of values may be appropriate for other areas of the world)."^^xsd:string ;
rdfs:label "Plan Classifier"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> .
ILAP:PlanContentType
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ;
rdfs:comment "A Plan Classifier according to content type (typically classified by NORSOK Z-014 PBS codes)."^^xsd:string ;
rdfs:label "Plan Content Type"^^xsd:string ;
rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> .
ILAP:PlanContractType
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
rdfs:comment "A Plan Classifier that categorizes a Plan according to the Contract that governs execution."^^xsd:string ;
rdfs:label "Plan Contract Type"^^xsd:string ;
rdfs:subClassOf ILAP:PlanClassifier .
ILAP:PlanExpenseType
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
rdfs:comment "A Plan Classifier that categorizes a Plan according to the type of Expense it incurrs."^^xsd:string ;
rdfs:label "Plan Expense Type"^^xsd:string ;
rdfs:subClassOf ILAP:PlanClassifier .
ILAP:PlanGeoArea
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ;
rdfs:comment "A Plan Classifier that categorizes a Plan according to the (size of the) geographic area it addresses."^^xsd:string ;
rdfs:label "Plan Geographic Area"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
ILAP:PlanLevel
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
rdfs:comment "A Plan Classifier that categorizes a Plan according to the detail it addresses (from Level 1 down to Level 6 or 7)."^^xsd:string ;
rdfs:label "Plan Level"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
ILAP:PlanLifecycleStage
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
rdfs:comment "A Plan Classifier according to the part(s) of the Asset Lifecycle relevant for the Plan (typically classified by NORSOK Z-014 SAB codes)."^^xsd:string ;
rdfs:label "Plan Lifecycle Stage"^^xsd:string ;
rdfs:subClassOf ILAP:LifecyclePhase , <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
ILAP:PlanObjectiveType
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ;
rdfs:comment "A Plan Classifier that categorizes a Plan according to the nature of its objectives."^^xsd:string ;
rdfs:label "Plan Objective Type"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier .
ILAP:PlanProjectType
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
rdfs:comment "A Plan Classifier that categorizes a Plan according to the type of prooject used to execute it."^^xsd:string ;
rdfs:label "Plan Project Type"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier .
ILAP:PlannedActivity
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
rdfs:comment "An Activity that is part of an Execution Plan, and for which the scope of work is defined."^^xsd:string ;
rdfs:label "Planned Activity (Activity in Activity Plan)"^^xsd:string ;
rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Location ;
owl:onProperty ILAP:hasActivityLocation
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ResourceProfile ;
owl:onProperty ILAP:hasActivityResourceProfile
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ActivityDependency ;
owl:onProperty ILAP:hasActivityPredecessor
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty ILAP:hasActivityDiscipline ;
owl:someValuesFrom ILAP:Discipline
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:ProjectExecutionPlan ;
owl:onProperty ILAP:hasActivityPlan
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Result ;
owl:onProperty ILAP:hasActivityResult
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Facility ;
owl:onProperty ILAP:hasActivityAsset
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ActivityDependency ;
owl:onProperty ILAP:hasActivitySuccessor
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Calendar ;
owl:onProperty ILAP:hasActivityCalendar
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ResponsiblePerson ;
owl:onProperty ILAP:hasActivityResponsiblePerson
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ActivityWBS ;
owl:onProperty ILAP:hasActivityWBSelement
] .
ILAP:PlannedMilestone
rdf:type owl:Class ;
rdfs:comment "A Milestone that is planned."^^xsd:string ;
rdfs:label "Planned Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:Milestone .
ILAP:PlanningApplication
rdf:type owl:Class ;
rdfs:comment "An Application used for generating, analyzing or communicating Data related to Activities, Constraints and Networks."^^xsd:string ;
rdfs:label "Planning Application"^^xsd:string ;
rdfs:subClassOf ILAP:Application .
ILAP:Portfolio
rdf:type owl:Class ;
rdfs:comment "An Activity that is a collection of Projects and Programmes (Portfolio components) grouped together to facilitate their management to meet strategic objectives (from ISO 21502)."^^xsd:string ;
rdfs:label "Portfolio"^^xsd:string ;
rdfs:subClassOf ILAP:Activity .
ILAP:Priority
rdf:type owl:Class ;
rdfs:comment "A Thing that is a measure of the importance of executing (one or more) activities r tasks."^^xsd:string ;
rdfs:label "Priority"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:ProcurementMilestone
rdf:type owl:Class ;
rdfs:label "Procurement Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:ProductionMilestone
rdf:type owl:Class ;
rdfs:label "Production Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:Programme
rdf:type owl:Class ;
rdfs:comment "An Activity that is a group of related Projects and related Activities (from ISO 21500)."^^xsd:string ;
rdfs:label "Programme"^^xsd:string ;
rdfs:subClassOf ILAP:Activity .
ILAP:Project
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
rdfs:comment "An Activity that is a temporary endeavor (in contrast with ongoing operations) with a defined beginning and end, constrained by available time, funding and resources, undertaken to achieve an objective conforming to specific requirements, meet unique objectives, and bring about beneficial change or added value (adapted from BSI and Wikipedia)."^^xsd:string ;
rdfs:label "Project"^^xsd:string ;
rdfs:subClassOf ILAP:Activity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom BRREG:OilCompany ;
owl:onProperty ILAP:hasProjectResponsible
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty ILAP:hasObjectName ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ExternalReference ;
owl:onProperty ILAP:hasExternalReference
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:Project ;
owl:onProperty ILAP:hasProjectSubproject
] .
ILAP:ProjectExecutionPlan
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
rdfs:comment "An early and general form of Network that describes a Project - including design basis, construction philosophy and contracting strategy - used as basis for preparing (first) an Activity Plan and (then) a (specific) BaselineSchedule."^^xsd:string ;
rdfs:label "Project Execution Plan"^^xsd:string ;
rdfs:subClassOf ILAP:Network ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Project ;
owl:onProperty ILAP:hasPlanProject
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ProjectExecutionPlan ;
owl:onProperty ILAP:hasPlanSubplan
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty ILAP:hasPlanContentType ;
owl:someValuesFrom ILAP:PlanContentType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ;
owl:onProperty ILAP:hasPlanAsset
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:PlanObjectiveType ;
owl:onProperty ILAP:hasPlanObjectiveType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:ProjectExecutionPlan ;
owl:onProperty ILAP:hasPlanRollUpPlan
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:PlanLifecycleStage ;
owl:onProperty ILAP:hasPlanLifecycleStage
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:PlanLevel ;
owl:onProperty ILAP:hasPlanLevel
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty ILAP:hasPlanProjectType ;
owl:someValuesFrom ILAP:PlanProjectType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty ILAP:hasPlanLevel ;
owl:someValuesFrom ILAP:PlanLevel
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty ILAP:hasPlanGeoArea ;
owl:someValuesFrom ILAP:PlanGeoArea
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom BRREG:LegalEntity ;
owl:onProperty ILAP:hasPlanResponsible
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom ILAP:PlanContractType ;
owl:onProperty ILAP:hasPlanContractType
] .
ILAP:ProjectMilestone
rdf:type owl:Class ;
rdfs:label "Project Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:ProjectPhase
rdf:type owl:Class ;
rdfs:comment "A Phase that divides a Proect into parts according to achievement of defined progress or results, typically agains the Project Execution Plan."^^xsd:string ;
rdfs:label "Project Phase"^^xsd:string ;
rdfs:subClassOf ILAP:Phase .
ILAP:RFCC
rdf:type owl:Class ;
rdfs:comment "Construction has been completed. Normally one RFCC per SubSystem"^^xsd:string ;
rdfs:label "Ready For Commissioning Certificate "^^xsd:string ;
rdfs:subClassOf ILAP:ConstructionMilestone .
ILAP:RFOCaccepted
rdf:type owl:Class ;
rdfs:comment "One per SubSystem"^^xsd:string ;
rdfs:label "Ready For Operation Certificate Accepted by Operations"^^xsd:string ;
rdfs:subClassOf ILAP:CommissioningMilestone .
ILAP:RFOCissued
rdf:type owl:Class ;
rdfs:comment "The project team has finished, but is awating final approval. Normally one Certificate per subssystem."^^xsd:string ;
rdfs:label "Ready For Operations Certificate Issued"^^xsd:string ;
rdfs:subClassOf ILAP:CommissioningMilestone .
ILAP:Regular8To16WorkingDayCalendar
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
rdfs:comment "A Weekends Free Calendar that specifies work only during normal working hours."^^xsd:string ;
rdfs:label "Regular 8 To 16 Working Day Calendar"^^xsd:string ;
rdfs:subClassOf ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> , <http://posccaesar.org/rdl/RDS7014210> .
ILAP:Regulator
rdf:type owl:Class ;
rdfs:comment "A Responsible Organization that regulates (by instruction and/or inspection) a the construction and operation of a Facility in a Field in order to produce oil and gas."^^xsd:string ;
rdfs:label "Regulator"^^xsd:string ;
rdfs:subClassOf ILAP:ResponsibleOrganization .
ILAP:Resource
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ;
rdfs:comment "A Thing that is items that can be measured with units. Resources are assigned to Activities and may consist of people (work hours), materials or physical items."^^xsd:string ;
rdfs:label "Resource"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> .
ILAP:ResourceEstimate
rdf:type owl:Class ;
rdfs:comment "A Thing that contains the estimate of the Resources of specified types required for a specified Schedule"^^xsd:string ;
rdfs:label "Resource Estimate"^^xsd:string .
ILAP:ResourceProfile
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ;
rdfs:comment "A Thing that distributes Resources according to pre-defined intervals."^^xsd:string ;
rdfs:label "Resource Profile"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing .
ILAP:ResourceProfilePoint
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ;
rdfs:comment "A Thing that is a specific point on a Resource Profile."^^xsd:string ;
rdfs:label "Resource Profile Point"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> .
ILAP:ResourceType
rdf:type owl:Class ;
rdfs:comment "A Thing that is used to classify Resources based on how they are valued and traded off agaisnt each other."^^xsd:string ;
rdfs:label "Resource Type"^^xsd:string .
ILAP:ResponsibleActor
rdf:type owl:Class ;
rdfs:comment "A Thing that carries Responsibility for carrying out (the whole or part of) a Plan."^^xsd:string ;
rdfs:label "Responsible Actor"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:ResponsibleOrganization
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
rdfs:comment "A Responsible Actor that is an organizational entity (according to the regulations of an official company register)"^^xsd:string ;
rdfs:label "Responsible Organization"^^xsd:string ;
rdfs:subClassOf ILAP:ResponsibleActor .
ILAP:ResponsiblePerson
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ;
rdfs:comment "A Responsible Actor that is a person responsible for carrying out a specified part of the Schedule. Classified according to the Person On Board register."^^xsd:string ;
rdfs:label "Responsible Person"^^xsd:string ;
rdfs:subClassOf ILAP:ResponsibleActor .
ILAP:Result
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
rdfs:comment "A Thing that is the outcome deliverable from an Activity or Plan (typically classified by NORSOK Z-014 PBS elements)."^^xsd:string ;
rdfs:label "Result"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:RevisedSchedule
rdf:type owl:Class ;
rdfs:comment "A Schedule that has Activity start and end times revised from the Current Schedule."^^xsd:string ;
rdfs:label "Revised schedule"^^xsd:string ;
rdfs:subClassOf ILAP:Schedule .
ILAP:Risk
rdf:type owl:Class ;
rdfs:comment "A Thing that is the probability or threat of damage, injury, liability, loss, or any other negative occurrence that is caused by external or internal vulnerabilities, and that may be avoided through preemptive action (adapted from Business Dictionary)"^^xsd:string ;
rdfs:label "Risk"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:RiskType
rdf:type owl:Class ;
rdfs:comment "A Thing that is the classification of Risk Factors according to the reason for the risk."^^xsd:string ;
rdfs:label "Risk Type"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:SACaccepted
rdf:type owl:Class ;
rdfs:label "System Acceptance Certificate Accepted by Operations "^^xsd:string ;
rdfs:subClassOf ILAP:CommissioningMilestone .
ILAP:SACissued
rdf:type owl:Class ;
rdfs:comment "Used for Systems, or Groups of Subsystems (typically in Telecom)"^^xsd:string ;
rdfs:label "System Acceptance Certificate Issued"^^xsd:string ;
rdfs:subClassOf ILAP:CommissioningMilestone .
ILAP:Schedule
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
rdfs:comment "A Network of Activities with planned (start and end) Dates, Durations, and Milestones, which can be used to track and monitor work, and provide Resources against which Results are managed and controlled (Adapted from PMI)."^^xsd:string ;
rdfs:label "Schedule (Scheduled Activity Network)"^^xsd:string ;
rdfs:subClassOf ILAP:ActivityPlan ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:ProjectExecutionPlan ;
owl:onProperty ILAP:hasSchedulePlan
] .
ILAP:ScheduledActivity
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
rdfs:comment "A Planned Activity that is part of a Schedule, with defined time, effort, duration and resources."^^xsd:string ;
rdfs:label "Scheduled Activity (Activity in Schedule)"^^xsd:string ;
rdfs:subClassOf ILAP:PlannedActivity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:PlannedActivity ;
owl:onProperty ILAP:hasActivityInScheduleActivityInPlan
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass ILAP:Schedule ;
owl:onProperty ILAP:hasActivitySchedule
] .
ILAP:ScheduledMilestone
rdf:type owl:Class ;
rdfs:comment "A Milestone that is scheduled."^^xsd:string ;
rdfs:label "Scheduled Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:PlannedMilestone .
ILAP:Shutdown
rdf:type owl:Class ;
rdfs:comment "A Thing that is the (total or partial) discontinuation of one or more activities or functionalities associated with production of oil and gas."^^xsd:string ;
rdfs:label "Shutdown"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:ShutdownPhase
rdf:type owl:Class ;
rdfs:comment "A Thing that places an Activity relative to a given Shutdown (i.e., to be carried out before, during or after shutdown, etc.)."^^xsd:string ;
rdfs:label "Shutdown Phase"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:ShutdownType
rdf:type owl:Class ;
rdfs:comment "A Thing that is the type of a given Shutdown."^^xsd:string ;
rdfs:label "Shutdown Type"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ILAP:Source
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
rdfs:comment "A Thing that is the originator of an ILAP information object, which may be a Planning Application or a Responsible Organization classified according to BRREG (Brønnøysund Register) as a legal entity."^^xsd:string ;
rdfs:label "Source"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> .
ILAP:StartMilestone
rdf:type owl:Class ;
rdfs:label "Start Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:StartToFinish
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
rdfs:comment "An Activity Dependency where the succeeding Activity cannot finish before the preceding Activity has started."^^xsd:string ;
rdfs:label "Start to Finish"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
ILAP:StartToStart
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
rdfs:comment "An Activity Dependency where the succeeding Activity cannot start before the preceding Activity has started."^^xsd:string ;
rdfs:label "Start to Start"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
ILAP:Status
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ;
rdfs:comment "A Thing that holds information about what is currently happening. Status values describe whether to a Project or Activity is started, in progress or completed, and can also say something about resource availability."^^xsd:string ;
rdfs:label "Status"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing .
ILAP:TargetSchedule
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
rdfs:comment "A decided Schedule that reflects the current target start and finish Dates."^^xsd:string ;
rdfs:label "Target Schedule"^^xsd:string ;
rdfs:subClassOf ILAP:Schedule .
ILAP:TaskMilestone
rdf:type owl:Class ;
rdfs:label "Task Milestone"^^xsd:string ;
rdfs:subClassOf ILAP:MilestoneType .
ILAP:Timebased
rdf:type owl:Class ;
rdfs:comment "A ResourceType that is limited by the time it is available."^^xsd:string ;
rdfs:label "Time Based"^^xsd:string ;
rdfs:subClassOf ILAP:ResourceType .
ILAP:UnitBased
rdf:type owl:Class ;
rdfs:comment "A Resource Type that is limited by the amount which is available."^^xsd:string ;
rdfs:label "Unit Based"^^xsd:string ;
rdfs:subClassOf ILAP:ResourceType .
ILAP:Value
rdf:type owl:Class ;
rdfs:comment "A Thing that is the material or monetary worth of something relative to the price asked for it (from Oxford dictionaries.com)."^^xsd:string ;
rdfs:label "Value"^^xsd:string ;
rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945844> .
ILAP:WeekendsFreeCalendar
rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
rdfs:comment "A Calendar that leaves all weekends as free time (only work during workdays)."^^xsd:string ;
rdfs:label "Weekends Free Calendar"^^xsd:string ;
rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> .
ILAP:WorkOrder
rdf:type owl:Class ;
rdfs:comment "A type of Network consisting (often) used to describe work , such as detailed Operations in ERP systems or Events in logistics chains."^^xsd:string ;
rdfs:label "Work Order"^^xsd:string ;
rdfs:subClassOf ILAP:Network .
ILAP:WorkTask
rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
rdfs:comment "A type of Activity which holds a description of the work content of (part of) the Activity. Typically, there are more than one Work Task related to an Activity, and for each Work Task there are start and end dates as well as clear assignments to a Responsible Actor."^^xsd:string ;
rdfs:label "Work Task"^^xsd:string ;
rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , ILAP:Activity ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom BRREG:LegalEntity ;
owl:onProperty ILAP:hasWorkTaskResponsible
] .
ILAP:WorkTaskStatus
rdf:type owl:Class ;
rdfs:comment "A Status of a Work Order (which can have predefined enumeration values)."^^xsd:string ;
rdfs:label "Work Task Status"^^xsd:string ;
rdfs:subClassOf ILAP:Status .
ILAP:hasActivityActiveStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Status relationship that is currently active."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Active Status"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasActivityStatus .
ILAP:hasActivityActualProgressPercent
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the percentage of actual progress of an activity wrt. its total work volume."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Actual Progress Percent"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasActivityActualWeight
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Activity Weight relationship involving the Actual Weight."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Activity Actual Weight"^^xsd:string ;
rdfs:range xsd:float ;
rdfs:subPropertyOf ILAP:hasActivityWeight .
ILAP:hasActivityAsset
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and its Asset (Facility, Field, License - typically classified by NPD Facility)."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Asset"^^xsd:string ;
rdfs:range ILAP:Asset .
ILAP:hasActivityBaselineSchedule
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Scheduled Activity and the Control Schedule that is the current Baseline."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Activity Baseline Schedule"^^xsd:string ;
rdfs:range ILAP:ControlSchedule .
ILAP:hasActivityCalendar
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and its assigned Calendar."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Activity Calendar"^^xsd:string ;
rdfs:range ILAP:Calendar .
ILAP:hasActivityContractor
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Responsible Organization relationship with a Contractor as responsible."^^xsd:string ;
rdfs:label "has Activity Contractor"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasActivityResponsibleOrganization .
ILAP:hasActivityDiscipline
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and its Discipline Code (typically classified by NORSOK Z-014 COR elements)."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Discipline"^^xsd:string ;
rdfs:range ILAP:Discipline .
ILAP:hasActivityDuration
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the duration of an Activity (unit based on Calendar)."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Activity Duration"^^xsd:string ;
rdfs:range xsd:duration .
ILAP:hasActivityEstimatedWeight
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Activity Weight relationship involving the Estimated Weight."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Estimated Weight"^^xsd:string ;
rdfs:range xsd:float ;
rdfs:subPropertyOf ILAP:hasActivityWeight .
ILAP:hasActivityInScheduleActivityInPlan
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Scheduled Activity and the corresponding Planned Activity (note that in general a plan will be scheduled many times during execution, and thus a Planned Activity will typically have a set of Scheduled Activities)."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Activity in Schedule Activity in Plan"^^xsd:string ;
rdfs:range ILAP:PlannedActivity .
ILAP:hasActivityLocation
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and its Location."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Location"^^xsd:string ;
rdfs:range ILAP:Location .
ILAP:hasActivityMaterialActualArrivalTime
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the actual time of arrival of ordered material."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Actual Arrival Time"^^xsd:string ;
rdfs:range xsd:dateTime .
ILAP:hasActivityMaterialEstimatedArrivalTime
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the estimated time of arrival of ordered material"^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Material Estimated Arrival Time"^^xsd:string ;
rdfs:range xsd:dateTime .
ILAP:hasActivityMaterialOrderStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and the Status of Ordered Material."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Material Order Status"^^xsd:string ;
rdfs:range ILAP:MaterialOrderStatus .
ILAP:hasActivityOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Responsible Organization relationship with a Operator as responsible."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Operator"^^xsd:string ;
rdfs:range ILAP:Operator ;
rdfs:subPropertyOf ILAP:hasActivityResponsibleOrganization .
ILAP:hasActivityPartActivity
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and a part of the same Planned Activity (e.g., between the complete Activity and the completed and remaining parts of the Activity during project execution)."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Part Activity"^^xsd:string ;
rdfs:range ILAP:PlannedActivity .
ILAP:hasActivityPhase
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and the Phase of which it is a part (typically classified by NORSOK Z-014 SAB elements)."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Phase"^^xsd:string ;
rdfs:range ILAP:Phase .
ILAP:hasActivityPhysicalPercentComplete
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the percentage that represents the actual physical progress based on the documentary evidence of the deliverable produced. Is often used as basis for calculating Value of Work Done."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Physical Percent Complete"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasActivityPlan
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:comment "A Relationship between a Planned Activity and the Execution Plan of which it is a part."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Plan"^^xsd:string ;
rdfs:range ILAP:ActivityPlan .
ILAP:hasActivityPlannedProgressPercent
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the percentage planned progress of an activity up to the current cut-off date wrt. its total work volume."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Planned Progress Percentage"^^xsd:string ;
rdfs:range xsd:integer .
ILAP:hasActivityPredecessor
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and the Activity Dependency object that precedes it."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Predecessor"^^xsd:string ;
rdfs:range ILAP:ActivityDependency ;
owl:inverseOf ILAP:hasSuccessorActivity .
ILAP:hasActivityPreviousStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Status relationship that is no longer currently active."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Previous Status"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasActivityStatus .
ILAP:hasActivityRegulator
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Responsible Organization relationship with a Responsible Organization as responsible."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Regulator"^^xsd:string ;
rdfs:range ILAP:ResponsibleOrganization ;
rdfs:subPropertyOf ILAP:hasActivityResponsibleOrganization .
ILAP:hasActivityResource
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and a Resource that is assigned to it (typically classified by NORSOK Z-014 COR elements)."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Resource"^^xsd:string ;
rdfs:range ILAP:Resource .
ILAP:hasActivityResourceProfile
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and the Resource Profile used for its Resource assignment."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Resource Profile"^^xsd:string ;
rdfs:range ILAP:ResourceProfile .
ILAP:hasActivityResponsibleOrganization
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and a Responsible Organization for that Activity."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Responsible Organization"^^xsd:string ;
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasActivityResponsiblePerson
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:comment "A Relationship between an Activity and an individual Person that has been assigned responsibility."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Responsible Actor"^^xsd:string ;
rdfs:range ILAP:ResponsiblePerson .
ILAP:hasActivityResult
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and its Result (typically classified by NORSOK Z-014 PBS elements)."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Result"^^xsd:string ;
rdfs:range ILAP:Result .
ILAP:hasActivityRisk
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and a Risk Factor."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Risk"^^xsd:string ;
rdfs:range ILAP:Risk .
ILAP:hasActivitySchedule
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Scheduled Activity and the Schedule of which it is a part."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Activity Schedule"^^xsd:string ;
rdfs:range ILAP:Schedule .
ILAP:hasActivityShutdown
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and a Shutdown."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Shutdown"^^xsd:string ;
rdfs:range ILAP:ShutdownPhase .
ILAP:hasActivityStatus
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity and its Status setting."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity Status"^^xsd:string ;
rdfs:range ILAP:Status .
ILAP:hasActivitySuccessor
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:comment "A Relationship between a Planned Activity and the Activity Dependency object that follows it."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Successor"^^xsd:string ;
rdfs:range ILAP:ActivityDependency ;
owl:inverseOf ILAP:hasPredecessorActivity .
ILAP:hasActivitySupplier
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Responsible Organization relationship with a Responsible Organization as responsible."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Supplier"^^xsd:string ;
rdfs:range ILAP:ResponsibleOrganization ;
rdfs:subPropertyOf ILAP:hasActivityResponsibleOrganization .
ILAP:hasActivityTaskLeader
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Responsible Person relationship that specifies a Task Leader."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Task Leader"^^xsd:string ;
rdfs:range ILAP:ResponsiblePerson ;
rdfs:subPropertyOf ILAP:hasActivityResponsiblePerson .
ILAP:hasActivityVendor
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Activity Responsible Organization relationship that specifies a Responsible Organization as responsible."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Vendor"^^xsd:string ;
rdfs:range ILAP:ResponsibleOrganization ;
rdfs:subPropertyOf ILAP:hasActivityResponsibleOrganization .
ILAP:hasActivityWBSelement
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Planned Activity and its Work Breakdown Structure element."^^xsd:string ;
rdfs:domain ILAP:Activity ;
rdfs:label "has Activity WBS Element"^^xsd:string ;
rdfs:range ILAP:ActivityWBS .
ILAP:hasActivityWeight
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the weight of the object associated with an Activity."^^xsd:string ;
rdfs:label "has Activity Weight"^^xsd:string .
ILAP:hasActivityWorkVolume
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the work volume of an Activity. Typically given in person-hours."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Activity Work Volume"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasBaselineActivityDuration
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Activity Duration relationship that holds the current Control Estimate for the Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Baseline Activity Duration"^^xsd:string ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf ILAP:hasActivityDuration .
ILAP:hasBaselineCreatedDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the date a Baseline was created."^^xsd:string ;
rdfs:domain ILAP:Baseline ;
rdfs:label "has Baseline Created Date"^^xsd:string ;
rdfs:range xsd:date .
ILAP:hasCalendarDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds a Date in a Calendar."^^xsd:string ;
rdfs:label "has Calendar Date"^^xsd:string .
ILAP:hasCalendarPeriod
rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
rdfs:comment "A Relationship between a Calendar and its Free Period."^^xsd:string ;
rdfs:domain ILAP:Calendar ;
rdfs:label "has Calendar Period"^^xsd:string ;
rdfs:range ILAP:CalendarFreePeriod .
ILAP:hasCalendarPeriodDay
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Calendar Period and its Days."^^xsd:string ;
rdfs:domain ILAP:CalendarPeriod ;
rdfs:label "has Calendar Period Day"^^xsd:string ;
rdfs:range ILAP:CalendarDay .
ILAP:hasCalendarPeriodFreeDay
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Calendar Period Day that specifies Free Days in that Period."^^xsd:string ;
rdfs:domain ILAP:CalendarFreePeriod ;
rdfs:label "has Calendar Period Free Day"^^xsd:string ;
rdfs:range ILAP:CalendarDay ;
rdfs:subPropertyOf ILAP:hasCalendarPeriodDay .
ILAP:hasCalendarPeriodFreeHour
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Calendar Period Hour that specifies Free Hours in that Period."^^xsd:string ;
rdfs:domain ILAP:CalendarFreePeriod ;
rdfs:label "has Calendar Period Free Hour"^^xsd:string ;
rdfs:range ILAP:CalendarHour ;
rdfs:subPropertyOf ILAP:hasCalendarPeriodHour .
ILAP:hasCalendarPeriodHour
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Calendar Period and its Hours."^^xsd:string ;
rdfs:domain ILAP:CalendarPeriod ;
rdfs:label "has Calendar Period Hour"^^xsd:string ;
rdfs:range ILAP:CalendarHour .
ILAP:hasCalendarTime
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds a Time."^^xsd:string ;
rdfs:label "has Calendar Time"^^xsd:string .
ILAP:hasContractType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Contract and its Type (i.e., what type of contract it is)."^^xsd:string ;
rdfs:domain ILAP:Contract ;
rdfs:label "has Contract Type"^^xsd:string ;
rdfs:range ILAP:ContractType .
ILAP:hasCurrentActivityDuration
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Activity Duration relationship that holds the current estimate or the Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Current Activity Duration"^^xsd:string ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf ILAP:hasActivityDuration .
ILAP:hasDataProject
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a general Data object and the Project it belongs."^^xsd:string ;
rdfs:domain ILAP:Data ;
rdfs:label "has Data Project"^^xsd:string ;
rdfs:range ILAP:Project .
ILAP:hasEarlyFinish
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the earliest finish date of an Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Early Finish"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasEarlyStart
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the earliest start date of an Activity according to network analysis, forward pass."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Early Start"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasEarlyStartActual
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the Earliest Finish Date minus Duration (Safran-specific, transfer if calculated to avoid differences between planning programs)."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Early Start Actual "^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasExternalReference
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Data object and its External Reference."^^xsd:string ;
rdfs:domain ILAP:Data ;
rdfs:label "has External Reference"^^xsd:string ;
rdfs:range ILAP:ExternalReference .
ILAP:hasFixedFinish
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes a fixed finish date of an Activity."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Fixed Finish"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasFixedStart
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes a fixed start date of an Activity."^^xsd:string ;
rdfs:domain ILAP:PlannedActivity ;
rdfs:label "has Fixed Start"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasFreePeriodEndDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Calendar Date relationship involving the End date of a Free Period."^^xsd:string ;
rdfs:domain ILAP:CalendarFreePeriod ;
rdfs:label "has Free Period End Date"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasCalendarDate .
ILAP:hasFreePeriodEndTime
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Calendar Time property which describes the End Time of a Free Period."^^xsd:string ;
rdfs:domain ILAP:CalendarFreePeriod ;
rdfs:label "has Free Period End Time"^^xsd:string ;
rdfs:range xsd:time ;
rdfs:subPropertyOf ILAP:hasCalendarTime .
ILAP:hasFreePeriodStartDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Calendar Date relationship involving the End date of a Free Period."^^xsd:string ;
rdfs:domain ILAP:CalendarFreePeriod ;
rdfs:label "has Free Period Start Date"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasCalendarDate .
ILAP:hasFreePeriodStartTime
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Calendar Time property which describes the Start Time of a Free Period."^^xsd:string ;
rdfs:domain ILAP:CalendarFreePeriod ;
rdfs:label "has Free Period Start Time"^^xsd:string ;
rdfs:range xsd:time ;
rdfs:subPropertyOf ILAP:hasCalendarTime .
ILAP:hasLateFinish
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the latest finish date of an Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Late Finish"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasLateStart
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the latest start date of an Activity according to network analysis, backward pass."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Late Start"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasLocationLatitude
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Latitude of a Location."^^xsd:string ;
rdfs:domain ILAP:Location ;
rdfs:label "has Location Latitude"^^xsd:string ;
rdfs:range xsd:integer .
ILAP:hasLocationLongitude
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Longitude of a Location."^^xsd:string ;
rdfs:domain ILAP:Location ;
rdfs:label "has Location Longitude"^^xsd:string ;
rdfs:range xsd:integer .
ILAP:hasMilestonePredecessor
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Milestone and the Successor object that precedes it."^^xsd:string ;
rdfs:domain ILAP:Milestone ;
rdfs:label "has Milestone Predecessor"^^xsd:string ;
rdfs:range ILAP:ActivityDependency .
ILAP:hasMilestoneSuccessor
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Milestone and the Successor object that follows it."^^xsd:string ;
rdfs:domain ILAP:Milestone ;
rdfs:label "has Milestone Successor"^^xsd:string ;
rdfs:range ILAP:ActivityDependency .
ILAP:hasMilestoneType
rdf:type owl:ObjectProperty ;
rdfs:comment "Relationship between a Milestone and its Type (i.e., what type of milestone it is)."^^xsd:string ;
rdfs:domain ILAP:Milestone ;
rdfs:label "has Milestone Type"^^xsd:string ;
rdfs:range ILAP:MilestoneType .
ILAP:hasObjectDescription
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Description of an ILAP information object."^^xsd:string ;
rdfs:domain owl:Thing ;
rdfs:label "has Object Description"^^xsd:string ;
rdfs:range xsd:string .
ILAP:hasObjectName
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Name of an ILAP information object."^^xsd:string ;
rdfs:domain owl:Thing ;
rdfs:label "has Object Name"^^xsd:string ;
rdfs:range xsd:string .
ILAP:hasObjectReferenceID
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the value of an External Identifier of an ILAP information object."^^xsd:string ;
rdfs:domain owl:Thing ;
rdfs:label "has Object Reference ID"^^xsd:string ;
rdfs:range xsd:string .
ILAP:hasOriginalActivityDuration
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Activity Duration relationship that holds the initial estimate for the Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Original Activity Duration"^^xsd:string ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf ILAP:hasActivityDuration .
ILAP:hasPhaseDecisionGate
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Phase and its associated Decision Gate(s)."^^xsd:string ;
rdfs:domain ILAP:Phase ;
rdfs:label "has Phase Decision Gate"^^xsd:string ;
rdfs:range ILAP:DecisionGate .
ILAP:hasPlanAsset
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Network (Plan) and the associated Asset produced or enhanced by executing the Plan."^^xsd:string ;
rdfs:domain ILAP:Network ;
rdfs:label "has Plan Asset"^^xsd:string ;
rdfs:range ILAP:Asset .
ILAP:hasPlanAssetOwner
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Plan Participant relationship involving Responsible Organization."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Asset Plan Owner"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasPlanResponsible .
ILAP:hasPlanContentType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Content Classification."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Content Type"^^xsd:string ;
rdfs:range ILAP:PlanContentType .
ILAP:hasPlanContractType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Contract Classification."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Contract Type"^^xsd:string ;
rdfs:range ILAP:PlanContractType .
ILAP:hasPlanContractor
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Plan Participant relationship involving a Contractor."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Contractor"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasPlanResponsible .
ILAP:hasPlanExpenseType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Expense Classification."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Expense Type"^^xsd:string ;
rdfs:range ILAP:PlanExpenseType .
ILAP:hasPlanFacility
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Facility (typically defined by NPD:Facility)."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Facility"^^xsd:string ;
rdfs:range ILAP:Facility .
ILAP:hasPlanField
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Field (typically defined by NPD:Field)."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Field"^^xsd:string ;
rdfs:range ILAP:Field .
ILAP:hasPlanGeoArea
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Geographic Area Classification."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Geographic Area"^^xsd:string ;
rdfs:range ILAP:PlanGeoArea .
ILAP:hasPlanLevel
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Plan and its Plan Level Classification."^^xsd:string ;
rdfs:domain ILAP:ActivityPlan ;
rdfs:label "has Plan Level"^^xsd:string ;
rdfs:range ILAP:PlanLevel .
ILAP:hasPlanLicense
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its License (typically defined by NPD:License)."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan License"^^xsd:string ;
rdfs:range ILAP:License .
ILAP:hasPlanLicensePartner
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Plan Participant relationship involving Responsible Organization."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan License Partner"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasPlanResponsible .
ILAP:hasPlanLifecycleStage
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its Lifecycle Phase Classification."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Lifecycle Stage"^^xsd:string ;
rdfs:range ILAP:PlanLifecycleStage .
ILAP:hasPlanObjectiveType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and its type of Objective."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Objective Type"^^xsd:string ;
rdfs:range ILAP:PlanObjectiveType .
ILAP:hasPlanOperator
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Plan Participant relationship involving an Operator."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Operator"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasPlanResponsible .
ILAP:hasPlanProject
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Plan and the Project it describes."^^xsd:string ;
rdfs:domain ILAP:ActivityPlan ;
rdfs:label "has Plan Project"^^xsd:string ;
rdfs:range ILAP:Project .
ILAP:hasPlanProjectType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project Execution Plan and the Project Type it describes."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Project Type"^^xsd:string ;
rdfs:range ILAP:PlanProjectType .
ILAP:hasPlanRegulator
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Plan Participant relationship involving a Responsible Organization."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Regulator"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasPlanResponsible .
ILAP:hasPlanResponsible
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:comment "A Relationship between an Activity Plan and a Responsible Organization."^^xsd:string ;
rdfs:domain ILAP:ActivityPlan ;
rdfs:label "has Plan Responsible"^^xsd:string ;
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasPlanRollUpPlan
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Plan and the same Plan at the next higher Plan Level."^^xsd:string ;
rdfs:domain ILAP:ActivityPlan ;
rdfs:label "has Plan Roll Up Plan"^^xsd:string ;
rdfs:range ILAP:ProjectExecutionPlan .
ILAP:hasPlanShutdown
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Plan and a Shutdown."^^xsd:string ;
rdfs:domain ILAP:ActivityPlan ;
rdfs:label "has Plan Shutdown"^^xsd:string ;
rdfs:range ILAP:Shutdown .
ILAP:hasPlanSubplan
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Plan and a partial Plan at the same Plan Level."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Subplan"^^xsd:string ;
rdfs:range ILAP:ProjectExecutionPlan .
ILAP:hasPlanSupplier
rdf:type owl:ObjectProperty ;
rdfs:comment "A has Plan Participant relationship involving a Responsible Organization."^^xsd:string ;
rdfs:domain ILAP:ProjectExecutionPlan ;
rdfs:label "has Plan Supplier"^^xsd:string ;
rdfs:subPropertyOf ILAP:hasPlanResponsible .
ILAP:hasPredecessorActivity
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Successor and its preceding Planned Activity."^^xsd:string ;
rdfs:domain ILAP:ActivityDependency ;
rdfs:label "has Predecessor Activity"^^xsd:string ;
rdfs:range ILAP:PlannedActivity ;
owl:inverseOf ILAP:hasActivitySuccessor .
ILAP:hasPredecessorMilestone
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Predecessor and a Milestone that precedes it."^^xsd:string ;
rdfs:domain ILAP:ActivityDependency ;
rdfs:label "has Predecessor Milestone"^^xsd:string ;
rdfs:range ILAP:Milestone .
ILAP:hasProfilePoint
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Profile curve and a Point on that curve."^^xsd:string ;
rdfs:domain ILAP:ResourceProfile ;
rdfs:label "has Profile Point"^^xsd:string ;
rdfs:range ILAP:ResourceProfilePoint .
ILAP:hasProfilePointXValue
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the X coordinate of a Profile Point."^^xsd:string ;
rdfs:domain ILAP:ResourceProfilePoint ;
rdfs:label "has Profile Point X Value"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasProfilePointYValue
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Y coordinate of a Profile Point."^^xsd:string ;
rdfs:domain ILAP:ResourceProfilePoint ;
rdfs:label "has Profile Point Y Value"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasProjectContract
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project and a Contract."^^xsd:string ;
rdfs:domain ILAP:Project ;
rdfs:label "has Project Contract"^^xsd:string ;
rdfs:range ILAP:Contract .
ILAP:hasProjectResponsible
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project and a Responsible Organization."^^xsd:string ;
rdfs:domain ILAP:Project ;
rdfs:label "has Project Responsible"^^xsd:string ;
rdfs:range ILAP:ResponsibleOrganization .
ILAP:hasProjectSubproject
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Project and a subproject within that project."^^xsd:string ;
rdfs:domain ILAP:Project ;
rdfs:label "has Project Subproject"^^xsd:string ;
rdfs:range ILAP:Project .
ILAP:hasReferenceApplication
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an External Reference and the Application used to define the information object it identifies."^^xsd:string ;
rdfs:domain ILAP:ExternalReference ;
rdfs:label "has Reference Application"^^xsd:string ;
rdfs:range ILAP:Application .
ILAP:hasReferenceSource
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an External Reference and the Source of the information object it identifies."^^xsd:string ;
rdfs:domain ILAP:ExternalReference ;
rdfs:label "has Reference Source"^^xsd:string ;
rdfs:range ILAP:Source .
ILAP:hasRemainingActivityDuration
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Activity Duration relationship that holds the estimate for the remaining part of the Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Remaining Activity Duration"^^xsd:string ;
rdfs:range xsd:duration ;
rdfs:subPropertyOf ILAP:hasActivityDuration .
ILAP:hasResourceCalendar
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between Resource and a Calendar set for that Resource."^^xsd:string ;
rdfs:domain ILAP:Resource ;
rdfs:label "has Resource Calendar"^^xsd:string ;
rdfs:range ILAP:Calendar .
ILAP:hasResourceEarnedQuantity
rdf:type owl:DatatypeProperty ;
rdfs:comment "Current progress times quantity."^^xsd:string ;
rdfs:domain ILAP:Resource ;
rdfs:label "has Resource Earned Quantity"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasResourceExpendedQuantity
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds part of a Resource that has been expended."^^xsd:string ;
rdfs:domain ILAP:Resource ;
rdfs:label "has Resource Expended Quantity"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasResourceProfile
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between Resource and its Profile."^^xsd:string ;
rdfs:domain ILAP:Resource ;
rdfs:label "has Resource Profile"^^xsd:string ;
rdfs:range ILAP:ResourceProfile .
ILAP:hasResourceRemainingQuantity
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Resource quantity that remains to be used according to the budget."^^xsd:string ;
rdfs:domain ILAP:Resource ;
rdfs:label "has Resource Remaining Quantity"^^xsd:string ;
rdfs:range xsd:float .
ILAP:hasResourceType
rdf:type owl:ObjectProperty ;
rdfs:comment "Relationship between a Resource and its Type (i.e., what type of resource it is)."^^xsd:string ;
rdfs:domain ILAP:Resource ;
rdfs:label "has Resource Type"^^xsd:string ;
rdfs:range ILAP:ResourceType .
ILAP:hasRiskCriticality
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Risk and its level of Criticality"^^xsd:string ;
rdfs:domain ILAP:Risk ;
rdfs:label "has Risk Criticality"^^xsd:string ;
rdfs:range ILAP:Criticality .
ILAP:hasRiskType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Risk Factor and the type of Risk that causes it."^^xsd:string ;
rdfs:domain ILAP:Risk ;
rdfs:label "has Risk Type"^^xsd:string ;
rdfs:range ILAP:RiskType .
ILAP:hasScheduleBaseline
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Schedule and a Baseline set from that Schedule."^^xsd:string ;
rdfs:domain ILAP:Schedule ;
rdfs:label "has Schedule Baseline"^^xsd:string ;
rdfs:range ILAP:Baseline .
ILAP:hasScheduleDate
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds a Date in a Schedule for an Activity."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Schedule Date"^^xsd:string ;
rdfs:range xsd:date .
ILAP:hasSchedulePlan
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Network Schedule and the Project Execution Plan from which it was derived."^^xsd:string ;
rdfs:domain ILAP:Schedule ;
rdfs:label "has Schedule Plan "^^xsd:string ;
rdfs:range ILAP:ProjectExecutionPlan .
ILAP:hasScheduledFinish
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the date which an Activity is aimed to end."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Scheduled Finish"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasScheduledStart
rdf:type owl:DatatypeProperty ;
rdfs:comment "A has Schedule Date property which describes the date which an Activity is aimed to start."^^xsd:string ;
rdfs:domain ILAP:ScheduledActivity ;
rdfs:label "has Scheduled Start"^^xsd:string ;
rdfs:range xsd:date ;
rdfs:subPropertyOf ILAP:hasScheduleDate .
ILAP:hasShutdownActivity
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Shutdown and the Activity it is tied to"^^xsd:string ;
rdfs:domain ILAP:Shutdown ;
rdfs:label "has Shutdown Activity"^^xsd:string ;
rdfs:range ILAP:PlannedActivity .
ILAP:hasShutdownPeriod
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the name of the Shutdown Period for a Shutdown."^^xsd:string ;
rdfs:domain ILAP:Shutdown ;
rdfs:label "has Shutdown Period"^^xsd:string ;
rdfs:range xsd:string .
ILAP:hasShutdownPriority
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Shutdown and Degree of Priority."^^xsd:string ;
rdfs:domain ILAP:Shutdown ;
rdfs:label "has Shutdown Priority"^^xsd:string ;
rdfs:range ILAP:Priority .
ILAP:hasShutdownType
rdf:type owl:ObjectProperty ;
rdfs:comment "Relationship between a Shutdown and its Type (i.e., what type of shutdown it is)."^^xsd:string ;
rdfs:domain ILAP:Shutdown ;
rdfs:label "has Shutdown Type"^^xsd:string ;
rdfs:range ILAP:ShutdownType .
ILAP:hasSourceApplication
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Source of a dataset and the Application producing it."^^xsd:string ;
rdfs:domain ILAP:Source ;
rdfs:label "has Source Applicaton"^^xsd:string ;
rdfs:range ILAP:Application .
ILAP:hasSourceData
rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship between a Data element and its Source"^^xsd:string ;
rdfs:domain ILAP:Source ;
rdfs:label "has Source Data"^^xsd:string ;
rdfs:range ILAP:Data .
ILAP:hasSourceInformation
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Source of a dataset and the Information contained by the dataset"^^xsd:string ;
rdfs:domain ILAP:Source ;
rdfs:label "has Source Information"^^xsd:string ;
rdfs:range ILAP:Information .
ILAP:hasSourceUserField
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Source of a dataset and the User Fields represented by the dataset."^^xsd:string ;
rdfs:domain ILAP:Source ;
rdfs:label "has Source User Field"^^xsd:string .
ILAP:hasSuccessorActivity
rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
rdfs:comment "A Relationship between an Activity Dependency and a Planned Activity that follows it."^^xsd:string ;
rdfs:domain ILAP:ActivityDependency ;
rdfs:label "has Successor Activity "^^xsd:string ;
rdfs:range ILAP:PlannedActivity ;
owl:inverseOf ILAP:hasActivityPredecessor .
ILAP:hasSuccessorCalendar
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Dependency relationship and a Calendar that has been set for that same Activity Dependency relationship."^^xsd:string ;
rdfs:domain ILAP:ActivityDependency ;
rdfs:label "has Successor Calendar"^^xsd:string ;
rdfs:range ILAP:Calendar .
ILAP:hasSuccessorLag
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the lag associated with successors between Activities."^^xsd:string ;
rdfs:domain ILAP:ActivityDependency ;
rdfs:label "has Successor Lag"^^xsd:string ;
rdfs:range xsd:integer .
ILAP:hasSuccessorMilestone
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity Dependency and a Milestone that follows it."^^xsd:string ;
rdfs:domain ILAP:ActivityDependency ;
rdfs:label "has Successor Milestone"^^xsd:string ;
rdfs:range ILAP:Milestone .
ILAP:hasTimeNow
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Time of calculation for the latest Schedule."^^xsd:string ;
rdfs:domain ILAP:Schedule ;
rdfs:label "has Time Now"^^xsd:string ;
rdfs:range xsd:dateTime , xsd:date .
ILAP:hasValueAsset
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Value and the Asset it belongs to."^^xsd:string ;
rdfs:domain ILAP:Value ;
rdfs:label "has Value Asset"^^xsd:string ;
rdfs:range ILAP:Asset .
ILAP:hasWBSphase
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity WBS and the Phase it specifies (typically classified by a subclass of SCCS:SAB_Thing)."^^xsd:string ;
rdfs:domain ILAP:ActivityWBS ;
rdfs:label "has WBS Phase"^^xsd:string ;
rdfs:range ILAP:Phase .
ILAP:hasWBSprojectExpenseType
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity WBS and its Expense Type."^^xsd:string ;
rdfs:domain ILAP:ActivityWBS ;
rdfs:label "has WBS Project Expense Type"^^xsd:string ;
rdfs:range ILAP:PlanExpenseType .
ILAP:hasWBSresource
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity WBS and the Resource it specifies (typically classified by a subclass of SCCS:COR_Thing)."^^xsd:string ;
rdfs:domain ILAP:ActivityWBS ;
rdfs:label "has WBS Resource"^^xsd:string ;
rdfs:range ILAP:Resource .
ILAP:hasWBSresult
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between an Activity WBS and the Result it specifies (typically classified by a subclass of SCCS:PBS_Thing)."^^xsd:string ;
rdfs:domain ILAP:ActivityWBS ;
rdfs:label "has WBS Result"^^xsd:string ;
rdfs:range ILAP:Result .
ILAP:hasWorkOrderActivity
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a WorkOrder and the Activity it corresponds to."^^xsd:string ;
rdfs:domain ILAP:WorkOrder ;
rdfs:label "has Work Order Activity"^^xsd:string ;
rdfs:range ILAP:Activity .
ILAP:hasWorkTaskPriority
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Work Task its level of Priority."^^xsd:string ;
rdfs:domain ILAP:WorkTask ;
rdfs:label "has Work Task Priority"^^xsd:string ;
rdfs:range ILAP:Priority .
ILAP:hasWorkTaskResponsible
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Work Task and a Responsible person."^^xsd:string ;
rdfs:domain ILAP:WorkTask ;
rdfs:label "has Work Task Responsible"^^xsd:string .
ILAP:hasWorkTaskSupplier
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Work Task and a Supplier."^^xsd:string ;
rdfs:domain ILAP:WorkTask ;
rdfs:label "has Work Task Supplier"^^xsd:string ;
rdfs:range BRREG:Contractor ;
rdfs:subPropertyOf ILAP:hasWorkTaskResponsible .
ILAP:hasWorkTaskVendor
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Work Task and a Vendor."^^xsd:string ;
rdfs:domain ILAP:WorkTask ;
rdfs:label "has Work Task Vendor"^^xsd:string ;
rdfs:range BRREG:Contractor ;
rdfs:subPropertyOf ILAP:hasWorkTaskResponsible .
ILAP:hasWorkTaskWorkOrder
rdf:type owl:ObjectProperty ;
rdfs:comment "A Relationship between a Work Task and the Work Order it is part of."^^xsd:string ;
rdfs:domain ILAP:WorkTask ;
rdfs:label "has Work Task Work Order"^^xsd:string ;
rdfs:range ILAP:WorkOrder .
<http://data.posccaesar.org/ilap/riskfactor/hasRiskType>
rdfs:range ILAP:RiskType .