Tore Christiansen

Added three more milestone type subclasses to planning core

...@@ -14,50 +14,50 @@ ILAP: ...@@ -14,50 +14,50 @@ ILAP:
14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
15 15
16 ILAP:Activity 16 ILAP:Activity
17 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 17 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
18 rdfs:label "Activity"^^xsd:string ; 18 rdfs:label "Activity"^^xsd:string ;
19 rdfs:subClassOf 19 rdfs:subClassOf
20 [ rdf:type owl:Restriction ; 20 [ rdf:type owl:Restriction ;
21 - owl:allValuesFrom ILAP:Status ; 21 + owl:allValuesFrom ILAP:Discipline ;
22 - owl:onProperty ILAP:hasActivityStatus 22 + owl:onProperty ILAP:hasActivityDiscipline
23 ] ; 23 ] ;
24 rdfs:subClassOf 24 rdfs:subClassOf
25 [ rdf:type owl:Restriction ; 25 [ rdf:type owl:Restriction ;
26 - owl:onProperty ILAP:hasExternalReference ; 26 + owl:allValuesFrom ILAP:Calendar ;
27 - owl:someValuesFrom ILAP:ExternalReference 27 + owl:onProperty ILAP:hasActivityCalendar
28 ] ; 28 ] ;
29 rdfs:subClassOf 29 rdfs:subClassOf
30 [ rdf:type owl:Restriction ; 30 [ rdf:type owl:Restriction ;
31 - owl:allValuesFrom ILAP:Calendar ; 31 + owl:onProperty ILAP:hasExternalReference ;
32 - owl:onProperty ILAP:hasActivityCalendar 32 + owl:someValuesFrom ILAP:ExternalReference
33 ] ; 33 ] ;
34 rdfs:subClassOf 34 rdfs:subClassOf
35 [ rdf:type owl:Restriction ; 35 [ rdf:type owl:Restriction ;
36 - owl:allValuesFrom ILAP:Discipline ; 36 + owl:allValuesFrom ILAP:Status ;
37 - owl:onProperty ILAP:hasActivityDiscipline 37 + owl:onProperty ILAP:hasActivityStatus
38 ] . 38 ] .
39 39
40 ILAP:ActivityDependency 40 ILAP:ActivityDependency
41 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 41 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
42 rdfs:label "Activity Dependency"^^xsd:string ; 42 rdfs:label "Activity Dependency"^^xsd:string ;
43 rdfs:subClassOf ILAP:Constraint ; 43 rdfs:subClassOf ILAP:Constraint ;
44 rdfs:subClassOf 44 rdfs:subClassOf
45 [ rdf:type owl:Restriction ; 45 [ rdf:type owl:Restriction ;
46 owl:onClass ILAP:Activity ; 46 owl:onClass ILAP:Activity ;
47 - owl:onProperty ILAP:hasSuccessorActivity ; 47 + owl:onProperty ILAP:hasPredecessorActivity ;
48 owl:qualifiedCardinality 48 owl:qualifiedCardinality
49 "1"^^xsd:nonNegativeInteger 49 "1"^^xsd:nonNegativeInteger
50 ] ; 50 ] ;
51 rdfs:subClassOf 51 rdfs:subClassOf
52 [ rdf:type owl:Restriction ; 52 [ rdf:type owl:Restriction ;
53 owl:onClass ILAP:Activity ; 53 owl:onClass ILAP:Activity ;
54 - owl:onProperty ILAP:hasPredecessorActivity ; 54 + owl:onProperty ILAP:hasSuccessorActivity ;
55 owl:qualifiedCardinality 55 owl:qualifiedCardinality
56 "1"^^xsd:nonNegativeInteger 56 "1"^^xsd:nonNegativeInteger
57 ] . 57 ] .
58 58
59 ILAP:ActivityPlan 59 ILAP:ActivityPlan
60 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 60 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
61 rdfs:label "Activity Plan"^^xsd:string ; 61 rdfs:label "Activity Plan"^^xsd:string ;
62 rdfs:subClassOf ILAP:Network ; 62 rdfs:subClassOf ILAP:Network ;
63 rdfs:subClassOf 63 rdfs:subClassOf
...@@ -72,22 +72,22 @@ ILAP:ActivityStatus ...@@ -72,22 +72,22 @@ ILAP:ActivityStatus
72 rdfs:subClassOf ILAP:Status . 72 rdfs:subClassOf ILAP:Status .
73 73
74 ILAP:ActivityWBS 74 ILAP:ActivityWBS
75 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; 75 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ;
76 rdfs:label "Activity WBS"^^xsd:string ; 76 rdfs:label "Activity WBS"^^xsd:string ;
77 rdfs:subClassOf ILAP:Network . 77 rdfs:subClassOf ILAP:Network .
78 78
79 ILAP:Application 79 ILAP:Application
80 rdf:type owl:Class ; 80 rdf:type owl:Class ;
81 rdfs:label "Application"^^xsd:string ; 81 rdfs:label "Application"^^xsd:string ;
82 - rdfs:subClassOf owl:Thing , <http://data.posccaesar.org/rdl/RDS43165907246> . 82 + rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS43165907246> , owl:Thing .
83 83
84 ILAP:Asset 84 ILAP:Asset
85 rdf:type owl:Class ; 85 rdf:type owl:Class ;
86 rdfs:label "Asset"^^xsd:string ; 86 rdfs:label "Asset"^^xsd:string ;
87 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13318199> . 87 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS13318199> , owl:Thing .
88 88
89 ILAP:Baseline 89 ILAP:Baseline
90 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 90 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
91 rdfs:label "Baseline"^^xsd:string ; 91 rdfs:label "Baseline"^^xsd:string ;
92 rdfs:subClassOf ILAP:Network . 92 rdfs:subClassOf ILAP:Network .
93 93
...@@ -100,9 +100,9 @@ ILAP:CAPEX ...@@ -100,9 +100,9 @@ ILAP:CAPEX
100 rdfs:label "CAPEX"^^xsd:string . 100 rdfs:label "CAPEX"^^xsd:string .
101 101
102 ILAP:Calendar 102 ILAP:Calendar
103 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 103 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
104 rdfs:label "Calendar"^^xsd:string ; 104 rdfs:label "Calendar"^^xsd:string ;
105 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ; 105 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7014210> ;
106 rdfs:subClassOf 106 rdfs:subClassOf
107 [ rdf:type owl:Restriction ; 107 [ rdf:type owl:Restriction ;
108 owl:allValuesFrom ILAP:CalendarFreePeriod ; 108 owl:allValuesFrom ILAP:CalendarFreePeriod ;
...@@ -110,14 +110,14 @@ ILAP:Calendar ...@@ -110,14 +110,14 @@ ILAP:Calendar
110 ] . 110 ] .
111 111
112 ILAP:CalendarDay 112 ILAP:CalendarDay
113 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; 113 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
114 rdfs:label "Calendar day"^^xsd:string ; 114 rdfs:label "Calendar day"^^xsd:string ;
115 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , owl:Thing . 115 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> .
116 116
117 ILAP:CalendarFreePeriod 117 ILAP:CalendarFreePeriod
118 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; 118 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ;
119 rdfs:label "Calendar free period"^^xsd:string ; 119 rdfs:label "Calendar free period"^^xsd:string ;
120 - rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ; 120 + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ;
121 rdfs:subClassOf 121 rdfs:subClassOf
122 [ rdf:type owl:Restriction ; 122 [ rdf:type owl:Restriction ;
123 owl:onClass ILAP:Calendar ; 123 owl:onClass ILAP:Calendar ;
...@@ -129,28 +129,28 @@ ILAP:CalendarFreePeriod ...@@ -129,28 +129,28 @@ ILAP:CalendarFreePeriod
129 ] . 129 ] .
130 130
131 ILAP:CalendarFreePeriodWeekRepeat 131 ILAP:CalendarFreePeriodWeekRepeat
132 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; 132 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ;
133 rdfs:label "Free day"^^xsd:string ; 133 rdfs:label "Free day"^^xsd:string ;
134 - rdfs:subClassOf ILAP:CalendarFreePeriod , <http://posccaesar.org/rdl/page/RDS356215271> . 134 + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod .
135 135
136 ILAP:CalendarHour 136 ILAP:CalendarHour
137 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; 137 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
138 rdfs:label "calendar hour"^^xsd:string ; 138 rdfs:label "calendar hour"^^xsd:string ;
139 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> , owl:Thing . 139 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS380969> , <http://posccaesar.org/rdl/RDS1326734> .
140 140
141 ILAP:CalendarPeriod 141 ILAP:CalendarPeriod
142 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ; 142 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> ;
143 rdfs:label "Calendar period"^^xsd:string ; 143 rdfs:label "Calendar period"^^xsd:string ;
144 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ; 144 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS4316824755> , owl:Thing ;
145 rdfs:subClassOf 145 rdfs:subClassOf
146 [ rdf:type owl:Restriction ; 146 [ rdf:type owl:Restriction ;
147 - owl:allValuesFrom ILAP:CalendarHour ; 147 + owl:allValuesFrom ILAP:CalendarDay ;
148 - owl:onProperty ILAP:hasCalendarPeriodHour 148 + owl:onProperty ILAP:hasCalendarPeriodDay
149 ] ; 149 ] ;
150 rdfs:subClassOf 150 rdfs:subClassOf
151 [ rdf:type owl:Restriction ; 151 [ rdf:type owl:Restriction ;
152 - owl:allValuesFrom ILAP:CalendarDay ; 152 + owl:allValuesFrom ILAP:CalendarHour ;
153 - owl:onProperty ILAP:hasCalendarPeriodDay 153 + owl:onProperty ILAP:hasCalendarPeriodHour
154 ] . 154 ] .
155 155
156 ILAP:Category 156 ILAP:Category
...@@ -166,7 +166,7 @@ ILAP:CommissioningMilestone ...@@ -166,7 +166,7 @@ ILAP:CommissioningMilestone
166 ILAP:Constraint 166 ILAP:Constraint
167 rdf:type owl:Class ; 167 rdf:type owl:Class ;
168 rdfs:label "Constraint"^^xsd:string ; 168 rdfs:label "Constraint"^^xsd:string ;
169 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS330344> . 169 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS330344> , owl:Thing .
170 170
171 ILAP:ConstructionMilestone 171 ILAP:ConstructionMilestone
172 rdf:type owl:Class ; 172 rdf:type owl:Class ;
...@@ -176,7 +176,7 @@ ILAP:ConstructionMilestone ...@@ -176,7 +176,7 @@ ILAP:ConstructionMilestone
176 ILAP:Contract 176 ILAP:Contract
177 rdf:type owl:Class ; 177 rdf:type owl:Class ;
178 rdfs:label "Contract"^^xsd:string ; 178 rdfs:label "Contract"^^xsd:string ;
179 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7953078> . 179 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7953078> , owl:Thing .
180 180
181 ILAP:ContractMilestone 181 ILAP:ContractMilestone
182 rdf:type owl:Class ; 182 rdf:type owl:Class ;
...@@ -201,7 +201,7 @@ ILAP:ControlSchedule ...@@ -201,7 +201,7 @@ ILAP:ControlSchedule
201 ILAP:Cost 201 ILAP:Cost
202 rdf:type owl:Class ; 202 rdf:type owl:Class ;
203 rdfs:label "Cost"^^xsd:string ; 203 rdfs:label "Cost"^^xsd:string ;
204 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945027> . 204 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945027> , owl:Thing .
205 205
206 ILAP:CostBased 206 ILAP:CostBased
207 rdf:type owl:Class ; 207 rdf:type owl:Class ;
...@@ -209,14 +209,14 @@ ILAP:CostBased ...@@ -209,14 +209,14 @@ ILAP:CostBased
209 rdfs:subClassOf ILAP:Resource . 209 rdfs:subClassOf ILAP:Resource .
210 210
211 ILAP:CurrentSchedule 211 ILAP:CurrentSchedule
212 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 212 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
213 rdfs:label "Current schedule"^^xsd:string ; 213 rdfs:label "Current schedule"^^xsd:string ;
214 rdfs:subClassOf ILAP:Schedule . 214 rdfs:subClassOf ILAP:Schedule .
215 215
216 ILAP:Data 216 ILAP:Data
217 rdf:type owl:Class ; 217 rdf:type owl:Class ;
218 rdfs:label "Data"^^xsd:string ; 218 rdfs:label "Data"^^xsd:string ;
219 - rdfs:subClassOf ILAP:Information , <http://posccaesar.org/rdl/RDS11708918> ; 219 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS11708918> , ILAP:Information ;
220 rdfs:subClassOf 220 rdfs:subClassOf
221 [ rdf:type owl:Restriction ; 221 [ rdf:type owl:Restriction ;
222 owl:onClass ILAP:Project ; 222 owl:onClass ILAP:Project ;
...@@ -246,10 +246,15 @@ ILAP:DesignMilestone ...@@ -246,10 +246,15 @@ ILAP:DesignMilestone
246 rdfs:subClassOf ILAP:MilestoneType . 246 rdfs:subClassOf ILAP:MilestoneType .
247 247
248 ILAP:Discipline 248 ILAP:Discipline
249 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; 249 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
250 rdfs:label "Discipline"^^xsd:string ; 250 rdfs:label "Discipline"^^xsd:string ;
251 rdfs:subClassOf owl:Thing . 251 rdfs:subClassOf owl:Thing .
252 252
253 +ILAP:DrillingMilestone
254 + rdf:type owl:Class ;
255 + rdfs:label "Drilling milestone"^^xsd:string ;
256 + rdfs:subClassOf ILAP:MilestoneType .
257 +
253 ILAP:EndMilestone 258 ILAP:EndMilestone
254 rdf:type owl:Class ; 259 rdf:type owl:Class ;
255 rdfs:label "End milestone"^^xsd:string ; 260 rdfs:label "End milestone"^^xsd:string ;
...@@ -261,13 +266,15 @@ ILAP:EngineeringMilestone ...@@ -261,13 +266,15 @@ ILAP:EngineeringMilestone
261 rdfs:subClassOf ILAP:MilestoneType . 266 rdfs:subClassOf ILAP:MilestoneType .
262 267
263 ILAP:ExternalReference 268 ILAP:ExternalReference
264 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ; 269 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ;
265 rdfs:label "External Reference"^^xsd:string ; 270 rdfs:label "External Reference"^^xsd:string ;
266 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ; 271 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/page/RDS720105291> ;
267 rdfs:subClassOf 272 rdfs:subClassOf
268 [ rdf:type owl:Restriction ; 273 [ rdf:type owl:Restriction ;
269 - owl:allValuesFrom ILAP:Application ; 274 + owl:onDataRange xsd:string ;
270 - owl:onProperty ILAP:hasReferenceApplication 275 + owl:onProperty ILAP:hasObjectReferenceID ;
276 + owl:qualifiedCardinality
277 + "1"^^xsd:nonNegativeInteger
271 ] ; 278 ] ;
272 rdfs:subClassOf 279 rdfs:subClassOf
273 [ rdf:type owl:Restriction ; 280 [ rdf:type owl:Restriction ;
...@@ -276,10 +283,8 @@ ILAP:ExternalReference ...@@ -276,10 +283,8 @@ ILAP:ExternalReference
276 ] ; 283 ] ;
277 rdfs:subClassOf 284 rdfs:subClassOf
278 [ rdf:type owl:Restriction ; 285 [ rdf:type owl:Restriction ;
279 - owl:onDataRange xsd:string ; 286 + owl:allValuesFrom ILAP:Application ;
280 - owl:onProperty ILAP:hasObjectReferenceID ; 287 + owl:onProperty ILAP:hasReferenceApplication
281 - owl:qualifiedCardinality
282 - "1"^^xsd:nonNegativeInteger
283 ] . 288 ] .
284 289
285 ILAP:Facility 290 ILAP:Facility
...@@ -293,14 +298,14 @@ ILAP:Field ...@@ -293,14 +298,14 @@ ILAP:Field
293 rdfs:subClassOf owl:Thing . 298 rdfs:subClassOf owl:Thing .
294 299
295 ILAP:FinishToFinish 300 ILAP:FinishToFinish
296 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 301 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
297 rdfs:label "Finish to finish"^^xsd:string ; 302 rdfs:label "Finish to finish"^^xsd:string ;
298 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 303 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
299 304
300 ILAP:FinishToStart 305 ILAP:FinishToStart
301 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 306 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
302 rdfs:label "Finish to start"^^xsd:string ; 307 rdfs:label "Finish to start"^^xsd:string ;
303 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 308 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
304 309
305 ILAP:FunctionalLocation 310 ILAP:FunctionalLocation
306 rdf:type owl:Class ; 311 rdf:type owl:Class ;
...@@ -315,7 +320,7 @@ ILAP:GeographicLocation ...@@ -315,7 +320,7 @@ ILAP:GeographicLocation
315 ILAP:Information 320 ILAP:Information
316 rdf:type owl:Class ; 321 rdf:type owl:Class ;
317 rdfs:label "Information"^^xsd:string ; 322 rdfs:label "Information"^^xsd:string ;
318 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS11711488> . 323 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS11711488> , owl:Thing .
319 324
320 ILAP:Knowledge 325 ILAP:Knowledge
321 rdf:type owl:Class ; 326 rdf:type owl:Class ;
...@@ -333,14 +338,14 @@ ILAP:LifecyclePhase ...@@ -333,14 +338,14 @@ ILAP:LifecyclePhase
333 rdfs:subClassOf ILAP:Phase . 338 rdfs:subClassOf ILAP:Phase .
334 339
335 ILAP:LiveSchedule 340 ILAP:LiveSchedule
336 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 341 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
337 rdfs:label "Live schedule"^^xsd:string ; 342 rdfs:label "Live schedule"^^xsd:string ;
338 rdfs:subClassOf ILAP:Schedule . 343 rdfs:subClassOf ILAP:Schedule .
339 344
340 ILAP:Location 345 ILAP:Location
341 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ; 346 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ;
342 rdfs:label "Location"^^xsd:string ; 347 rdfs:label "Location"^^xsd:string ;
343 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing . 348 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS943618371> .
344 349
345 ILAP:MaterialOrderStatus 350 ILAP:MaterialOrderStatus
346 rdf:type owl:Class ; 351 rdf:type owl:Class ;
...@@ -348,7 +353,7 @@ ILAP:MaterialOrderStatus ...@@ -348,7 +353,7 @@ ILAP:MaterialOrderStatus
348 rdfs:subClassOf ILAP:Status . 353 rdfs:subClassOf ILAP:Status .
349 354
350 ILAP:Milestone 355 ILAP:Milestone
351 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ; 356 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> , owl:Class ;
352 rdfs:label "Milestone"^^xsd:string . 357 rdfs:label "Milestone"^^xsd:string .
353 358
354 ILAP:MilestoneType 359 ILAP:MilestoneType
...@@ -359,7 +364,7 @@ ILAP:MilestoneType ...@@ -359,7 +364,7 @@ ILAP:MilestoneType
359 ILAP:Network 364 ILAP:Network
360 rdf:type owl:Class ; 365 rdf:type owl:Class ;
361 rdfs:label "Network"^^xsd:string ; 366 rdfs:label "Network"^^xsd:string ;
362 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1293947091> . 367 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1293947091> , owl:Thing .
363 368
364 ILAP:OPEX 369 ILAP:OPEX
365 rdfs:label "OPEX"^^xsd:string . 370 rdfs:label "OPEX"^^xsd:string .
...@@ -390,49 +395,49 @@ ILAP:PhysicalLocation ...@@ -390,49 +395,49 @@ ILAP:PhysicalLocation
390 rdfs:subClassOf ILAP:Location . 395 rdfs:subClassOf ILAP:Location .
391 396
392 ILAP:PlanClassifier 397 ILAP:PlanClassifier
393 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; 398 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
394 rdfs:label "Plan classifier"^^xsd:string ; 399 rdfs:label "Plan classifier"^^xsd:string ;
395 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , owl:Thing . 400 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> .
396 401
397 ILAP:PlanContentType 402 ILAP:PlanContentType
398 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; 403 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
399 rdfs:label "Plan content type"^^xsd:string ; 404 rdfs:label "Plan content type"^^xsd:string ;
400 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS892484261> , ILAP:PlanClassifier . 405 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> .
401 406
402 ILAP:PlanContractType 407 ILAP:PlanContractType
403 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; 408 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
404 rdfs:label "Plan contract type"^^xsd:string ; 409 rdfs:label "Plan contract type"^^xsd:string ;
405 rdfs:subClassOf ILAP:PlanClassifier . 410 rdfs:subClassOf ILAP:PlanClassifier .
406 411
407 ILAP:PlanExpenseType 412 ILAP:PlanExpenseType
408 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; 413 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
409 rdfs:label "Plan expense type"^^xsd:string ; 414 rdfs:label "Plan expense type"^^xsd:string ;
410 rdfs:subClassOf ILAP:PlanClassifier . 415 rdfs:subClassOf ILAP:PlanClassifier .
411 416
412 ILAP:PlanGeoArea 417 ILAP:PlanGeoArea
413 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ; 418 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> ;
414 rdfs:label "Plan geographic area"^^xsd:string ; 419 rdfs:label "Plan geographic area"^^xsd:string ;
415 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . 420 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
416 421
417 ILAP:PlanLevel 422 ILAP:PlanLevel
418 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; 423 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
419 rdfs:label "Plan level"^^xsd:string ; 424 rdfs:label "Plan level"^^xsd:string ;
420 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . 425 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
421 426
422 ILAP:PlanLifecycleStage 427 ILAP:PlanLifecycleStage
423 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 428 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
424 rdfs:label "Plan lifecycle stage"^^xsd:string ; 429 rdfs:label "Plan lifecycle stage"^^xsd:string ;
425 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . 430 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
426 431
427 ILAP:PlanObjectiveType 432 ILAP:PlanObjectiveType
428 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ; 433 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> , owl:Class ;
429 rdfs:label "Plan objective type"^^xsd:string ; 434 rdfs:label "Plan objective type"^^xsd:string ;
430 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS43168516168> . 435 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier .
431 436
432 ILAP:PlanProjectType 437 ILAP:PlanProjectType
433 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; 438 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
434 rdfs:label "Plan project type"^^xsd:string ; 439 rdfs:label "Plan project type"^^xsd:string ;
435 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS10012097710> . 440 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier .
436 441
437 ILAP:PlannedActivity 442 ILAP:PlannedActivity
438 rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 443 rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
...@@ -440,6 +445,11 @@ ILAP:PlannedActivity ...@@ -440,6 +445,11 @@ ILAP:PlannedActivity
440 rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; 445 rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ;
441 rdfs:subClassOf 446 rdfs:subClassOf
442 [ rdf:type owl:Restriction ; 447 [ rdf:type owl:Restriction ;
448 + owl:allValuesFrom ILAP:ResourceProfile ;
449 + owl:onProperty ILAP:hasActivityResourceProfile
450 + ] ;
451 + rdfs:subClassOf
452 + [ rdf:type owl:Restriction ;
443 owl:maxQualifiedCardinality 453 owl:maxQualifiedCardinality
444 "1"^^xsd:nonNegativeInteger ; 454 "1"^^xsd:nonNegativeInteger ;
445 owl:onClass ILAP:Facility ; 455 owl:onClass ILAP:Facility ;
...@@ -447,13 +457,8 @@ ILAP:PlannedActivity ...@@ -447,13 +457,8 @@ ILAP:PlannedActivity
447 ] ; 457 ] ;
448 rdfs:subClassOf 458 rdfs:subClassOf
449 [ rdf:type owl:Restriction ; 459 [ rdf:type owl:Restriction ;
450 - owl:allValuesFrom ILAP:ActivityWBS ; 460 + owl:onProperty ILAP:hasActivityDiscipline ;
451 - owl:onProperty ILAP:hasActivityWBSelement 461 + owl:someValuesFrom ILAP:Discipline
452 - ] ;
453 - rdfs:subClassOf
454 - [ rdf:type owl:Restriction ;
455 - owl:allValuesFrom ILAP:ResourceProfile ;
456 - owl:onProperty ILAP:hasActivityResourceProfile
457 ] ; 462 ] ;
458 rdfs:subClassOf 463 rdfs:subClassOf
459 [ rdf:type owl:Restriction ; 464 [ rdf:type owl:Restriction ;
...@@ -464,28 +469,28 @@ ILAP:PlannedActivity ...@@ -464,28 +469,28 @@ ILAP:PlannedActivity
464 ] ; 469 ] ;
465 rdfs:subClassOf 470 rdfs:subClassOf
466 [ rdf:type owl:Restriction ; 471 [ rdf:type owl:Restriction ;
467 - owl:onProperty ILAP:hasActivityDiscipline ; 472 + owl:allValuesFrom ILAP:ActivityDependency ;
468 - owl:someValuesFrom ILAP:Discipline 473 + owl:onProperty ILAP:hasActivityPredecessor
469 ] ; 474 ] ;
470 rdfs:subClassOf 475 rdfs:subClassOf
471 [ rdf:type owl:Restriction ; 476 [ rdf:type owl:Restriction ;
472 - owl:allValuesFrom ILAP:ActivityDependency ; 477 + owl:allValuesFrom ILAP:ActivityWBS ;
473 - owl:onProperty ILAP:hasActivitySuccessor 478 + owl:onProperty ILAP:hasActivityWBSelement
474 ] ; 479 ] ;
475 rdfs:subClassOf 480 rdfs:subClassOf
476 [ rdf:type owl:Restriction ; 481 [ rdf:type owl:Restriction ;
477 - owl:allValuesFrom ILAP:ActivityDependency ; 482 + owl:allValuesFrom ILAP:ResponsiblePerson ;
478 - owl:onProperty ILAP:hasActivityPredecessor 483 + owl:onProperty ILAP:hasActivityResponsiblePerson
479 ] ; 484 ] ;
480 rdfs:subClassOf 485 rdfs:subClassOf
481 [ rdf:type owl:Restriction ; 486 [ rdf:type owl:Restriction ;
482 - owl:allValuesFrom ILAP:Location ; 487 + owl:allValuesFrom ILAP:ActivityDependency ;
483 - owl:onProperty ILAP:hasActivityLocation 488 + owl:onProperty ILAP:hasActivitySuccessor
484 ] ; 489 ] ;
485 rdfs:subClassOf 490 rdfs:subClassOf
486 [ rdf:type owl:Restriction ; 491 [ rdf:type owl:Restriction ;
487 - owl:allValuesFrom ILAP:ResponsiblePerson ; 492 + owl:allValuesFrom ILAP:Location ;
488 - owl:onProperty ILAP:hasActivityResponsiblePerson 493 + owl:onProperty ILAP:hasActivityLocation
489 ] ; 494 ] ;
490 rdfs:subClassOf 495 rdfs:subClassOf
491 [ rdf:type owl:Restriction ; 496 [ rdf:type owl:Restriction ;
...@@ -513,19 +518,29 @@ ILAP:ProcurementMilestone ...@@ -513,19 +518,29 @@ ILAP:ProcurementMilestone
513 rdfs:label "Procurement milestone"^^xsd:string ; 518 rdfs:label "Procurement milestone"^^xsd:string ;
514 rdfs:subClassOf ILAP:MilestoneType . 519 rdfs:subClassOf ILAP:MilestoneType .
515 520
521 +ILAP:ProductionMilestone
522 + rdf:type owl:Class ;
523 + rdfs:label "Production milestone"^^xsd:string ;
524 + rdfs:subClassOf ILAP:MilestoneType .
525 +
516 ILAP:Programme 526 ILAP:Programme
517 rdf:type owl:Class ; 527 rdf:type owl:Class ;
518 rdfs:label "Programme"^^xsd:string ; 528 rdfs:label "Programme"^^xsd:string ;
519 rdfs:subClassOf ILAP:Project . 529 rdfs:subClassOf ILAP:Project .
520 530
521 ILAP:Project 531 ILAP:Project
522 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 532 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
523 rdfs:label "Project"^^xsd:string ; 533 rdfs:label "Project"^^xsd:string ;
524 rdfs:subClassOf ILAP:Activity ; 534 rdfs:subClassOf ILAP:Activity ;
525 rdfs:subClassOf 535 rdfs:subClassOf
526 [ rdf:type owl:Restriction ; 536 [ rdf:type owl:Restriction ;
527 - owl:allValuesFrom BRREG:OilCompany ; 537 + owl:allValuesFrom ILAP:Project ;
528 - owl:onProperty ILAP:hasProjectResponsible 538 + owl:onProperty ILAP:hasProjectSubproject
539 + ] ;
540 + rdfs:subClassOf
541 + [ rdf:type owl:Restriction ;
542 + owl:allValuesFrom ILAP:ExternalReference ;
543 + owl:onProperty ILAP:hasExternalReference
529 ] ; 544 ] ;
530 rdfs:subClassOf 545 rdfs:subClassOf
531 [ rdf:type owl:Restriction ; 546 [ rdf:type owl:Restriction ;
...@@ -536,13 +551,8 @@ ILAP:Project ...@@ -536,13 +551,8 @@ ILAP:Project
536 ] ; 551 ] ;
537 rdfs:subClassOf 552 rdfs:subClassOf
538 [ rdf:type owl:Restriction ; 553 [ rdf:type owl:Restriction ;
539 - owl:allValuesFrom ILAP:ExternalReference ; 554 + owl:allValuesFrom BRREG:OilCompany ;
540 - owl:onProperty ILAP:hasExternalReference 555 + owl:onProperty ILAP:hasProjectResponsible
541 - ] ;
542 - rdfs:subClassOf
543 - [ rdf:type owl:Restriction ;
544 - owl:allValuesFrom ILAP:Project ;
545 - owl:onProperty ILAP:hasProjectSubproject
546 ] . 556 ] .
547 557
548 ILAP:ProjectEffectiveness 558 ILAP:ProjectEffectiveness
...@@ -563,70 +573,70 @@ ILAP:ProjectExecutionPlan ...@@ -563,70 +573,70 @@ ILAP:ProjectExecutionPlan
563 [ rdf:type owl:Restriction ; 573 [ rdf:type owl:Restriction ;
564 owl:maxQualifiedCardinality 574 owl:maxQualifiedCardinality
565 "1"^^xsd:nonNegativeInteger ; 575 "1"^^xsd:nonNegativeInteger ;
566 - owl:onClass ILAP:PlanLevel ; 576 + owl:onClass ILAP:Project ;
567 - owl:onProperty ILAP:hasPlanLevel 577 + owl:onProperty ILAP:hasPlanProject
568 ] ; 578 ] ;
569 rdfs:subClassOf 579 rdfs:subClassOf
570 [ rdf:type owl:Restriction ; 580 [ rdf:type owl:Restriction ;
571 - owl:allValuesFrom BRREG:LegalEntity ; 581 + owl:onProperty ILAP:hasPlanContentType ;
572 - owl:onProperty ILAP:hasPlanResponsible 582 + owl:someValuesFrom ILAP:PlanContentType
573 ] ; 583 ] ;
574 rdfs:subClassOf 584 rdfs:subClassOf
575 [ rdf:type owl:Restriction ; 585 [ rdf:type owl:Restriction ;
576 - owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; 586 + owl:allValuesFrom ILAP:PlanContractType ;
577 - owl:onProperty ILAP:hasPlanAsset 587 + owl:onProperty ILAP:hasPlanContractType
578 ] ; 588 ] ;
579 rdfs:subClassOf 589 rdfs:subClassOf
580 [ rdf:type owl:Restriction ; 590 [ rdf:type owl:Restriction ;
581 - owl:onProperty ILAP:hasPlanContentType ; 591 + owl:onProperty ILAP:hasPlanProjectType ;
582 - owl:someValuesFrom ILAP:PlanContentType 592 + owl:someValuesFrom ILAP:PlanProjectType
583 ] ; 593 ] ;
584 rdfs:subClassOf 594 rdfs:subClassOf
585 [ rdf:type owl:Restriction ; 595 [ rdf:type owl:Restriction ;
586 - owl:onProperty ILAP:hasPlanLevel ; 596 + owl:allValuesFrom BRREG:LegalEntity ;
587 - owl:someValuesFrom ILAP:PlanLevel 597 + owl:onProperty ILAP:hasPlanResponsible
588 ] ; 598 ] ;
589 rdfs:subClassOf 599 rdfs:subClassOf
590 [ rdf:type owl:Restriction ; 600 [ rdf:type owl:Restriction ;
591 - owl:onProperty ILAP:hasPlanGeoArea ; 601 + owl:allValuesFrom ILAP:PlanLifecycleStage ;
592 - owl:someValuesFrom ILAP:PlanGeoArea 602 + owl:onProperty ILAP:hasPlanLifecycleStage
593 ] ; 603 ] ;
594 rdfs:subClassOf 604 rdfs:subClassOf
595 [ rdf:type owl:Restriction ; 605 [ rdf:type owl:Restriction ;
596 - owl:allValuesFrom ILAP:PlanLifecycleStage ; 606 + owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ;
597 - owl:onProperty ILAP:hasPlanLifecycleStage 607 + owl:onProperty ILAP:hasPlanAsset
598 ] ; 608 ] ;
599 rdfs:subClassOf 609 rdfs:subClassOf
600 [ rdf:type owl:Restriction ; 610 [ rdf:type owl:Restriction ;
601 - owl:maxQualifiedCardinality 611 + owl:onProperty ILAP:hasPlanLevel ;
602 - "1"^^xsd:nonNegativeInteger ; 612 + owl:someValuesFrom ILAP:PlanLevel
603 - owl:onClass ILAP:Project ;
604 - owl:onProperty ILAP:hasPlanProject
605 ] ; 613 ] ;
606 rdfs:subClassOf 614 rdfs:subClassOf
607 [ rdf:type owl:Restriction ; 615 [ rdf:type owl:Restriction ;
608 - owl:allValuesFrom ILAP:ProjectExecutionPlan ; 616 + owl:allValuesFrom ILAP:PlanObjectiveType ;
609 - owl:onProperty ILAP:hasPlanRollUpPlan 617 + owl:onProperty ILAP:hasPlanObjectiveType
610 ] ; 618 ] ;
611 rdfs:subClassOf 619 rdfs:subClassOf
612 [ rdf:type owl:Restriction ; 620 [ rdf:type owl:Restriction ;
613 owl:allValuesFrom ILAP:ProjectExecutionPlan ; 621 owl:allValuesFrom ILAP:ProjectExecutionPlan ;
614 - owl:onProperty ILAP:hasPlanSubplan 622 + owl:onProperty ILAP:hasPlanRollUpPlan
615 ] ; 623 ] ;
616 rdfs:subClassOf 624 rdfs:subClassOf
617 [ rdf:type owl:Restriction ; 625 [ rdf:type owl:Restriction ;
618 - owl:onProperty ILAP:hasPlanProjectType ; 626 + owl:maxQualifiedCardinality
619 - owl:someValuesFrom ILAP:PlanProjectType 627 + "1"^^xsd:nonNegativeInteger ;
628 + owl:onClass ILAP:PlanLevel ;
629 + owl:onProperty ILAP:hasPlanLevel
620 ] ; 630 ] ;
621 rdfs:subClassOf 631 rdfs:subClassOf
622 [ rdf:type owl:Restriction ; 632 [ rdf:type owl:Restriction ;
623 - owl:allValuesFrom ILAP:PlanObjectiveType ; 633 + owl:onProperty ILAP:hasPlanGeoArea ;
624 - owl:onProperty ILAP:hasPlanObjectiveType 634 + owl:someValuesFrom ILAP:PlanGeoArea
625 ] ; 635 ] ;
626 rdfs:subClassOf 636 rdfs:subClassOf
627 [ rdf:type owl:Restriction ; 637 [ rdf:type owl:Restriction ;
628 - owl:allValuesFrom ILAP:PlanContractType ; 638 + owl:allValuesFrom ILAP:ProjectExecutionPlan ;
629 - owl:onProperty ILAP:hasPlanContractType 639 + owl:onProperty ILAP:hasPlanSubplan
630 ] . 640 ] .
631 641
632 ILAP:ProjectMilestone 642 ILAP:ProjectMilestone
...@@ -640,9 +650,9 @@ ILAP:ProjectPhase ...@@ -640,9 +650,9 @@ ILAP:ProjectPhase
640 rdfs:subClassOf ILAP:Phase . 650 rdfs:subClassOf ILAP:Phase .
641 651
642 ILAP:Regular8To16WorkingDayCalendar 652 ILAP:Regular8To16WorkingDayCalendar
643 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; 653 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
644 rdfs:label "Regular8To16Working day calendar"^^xsd:string ; 654 rdfs:label "Regular8To16Working day calendar"^^xsd:string ;
645 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> . 655 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS7014210> .
646 656
647 ILAP:Regulator 657 ILAP:Regulator
648 rdf:type owl:Class ; 658 rdf:type owl:Class ;
...@@ -650,9 +660,9 @@ ILAP:Regulator ...@@ -650,9 +660,9 @@ ILAP:Regulator
650 rdfs:subClassOf ILAP:ResponsibleOrganization . 660 rdfs:subClassOf ILAP:ResponsibleOrganization .
651 661
652 ILAP:Resource 662 ILAP:Resource
653 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; 663 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ;
654 rdfs:label "Resource"^^xsd:string ; 664 rdfs:label "Resource"^^xsd:string ;
655 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> . 665 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS47466180194> , owl:Thing .
656 666
657 ILAP:ResourceEstimate 667 ILAP:ResourceEstimate
658 rdf:type owl:Class ; 668 rdf:type owl:Class ;
...@@ -660,14 +670,14 @@ ILAP:ResourceEstimate ...@@ -660,14 +670,14 @@ ILAP:ResourceEstimate
660 rdfs:subClassOf ILAP:ResourceStructure . 670 rdfs:subClassOf ILAP:ResourceStructure .
661 671
662 ILAP:ResourceProfile 672 ILAP:ResourceProfile
663 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ; 673 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> , owl:Class ;
664 rdfs:label "Resource profile"^^xsd:string ; 674 rdfs:label "Resource profile"^^xsd:string ;
665 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1685084301> . 675 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing .
666 676
667 ILAP:ResourceProfilePoint 677 ILAP:ResourceProfilePoint
668 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; 678 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ;
669 rdfs:label "resource Profile point"^^xsd:string ; 679 rdfs:label "resource Profile point"^^xsd:string ;
670 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> . 680 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS2213258891> , owl:Thing .
671 681
672 ILAP:ResourceStructure 682 ILAP:ResourceStructure
673 rdf:type owl:Class ; 683 rdf:type owl:Class ;
...@@ -675,17 +685,17 @@ ILAP:ResourceStructure ...@@ -675,17 +685,17 @@ ILAP:ResourceStructure
675 rdfs:subClassOf ILAP:Network . 685 rdfs:subClassOf ILAP:Network .
676 686
677 ILAP:ResponsibleOrganization 687 ILAP:ResponsibleOrganization
678 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; 688 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
679 rdfs:label "Responsible organization"^^xsd:string ; 689 rdfs:label "Responsible organization"^^xsd:string ;
680 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS282149> . 690 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS282149> , owl:Thing .
681 691
682 ILAP:ResponsiblePerson 692 ILAP:ResponsiblePerson
683 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ; 693 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> , owl:Class ;
684 rdfs:label "Responsible"^^xsd:string ; 694 rdfs:label "Responsible"^^xsd:string ;
685 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS413954> . 695 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS413954> , owl:Thing .
686 696
687 ILAP:Result 697 ILAP:Result
688 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; 698 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
689 rdfs:label "Result"^^xsd:string ; 699 rdfs:label "Result"^^xsd:string ;
690 rdfs:subClassOf owl:Thing . 700 rdfs:subClassOf owl:Thing .
691 701
...@@ -705,9 +715,9 @@ ILAP:RiskType ...@@ -705,9 +715,9 @@ ILAP:RiskType
705 rdfs:subClassOf owl:Thing . 715 rdfs:subClassOf owl:Thing .
706 716
707 ILAP:Schedule 717 ILAP:Schedule
708 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 718 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
709 rdfs:label "Scheduled Activity Network"^^xsd:string ; 719 rdfs:label "Scheduled Activity Network"^^xsd:string ;
710 - rdfs:subClassOf ILAP:Network , <http://posccaesar.org/rdl/RDS333764> ; 720 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS333764> , ILAP:Network ;
711 rdfs:subClassOf 721 rdfs:subClassOf
712 [ rdf:type owl:Restriction ; 722 [ rdf:type owl:Restriction ;
713 owl:maxQualifiedCardinality 723 owl:maxQualifiedCardinality
...@@ -717,22 +727,22 @@ ILAP:Schedule ...@@ -717,22 +727,22 @@ ILAP:Schedule
717 ] . 727 ] .
718 728
719 ILAP:ScheduledActivity 729 ILAP:ScheduledActivity
720 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 730 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
721 rdfs:label "Activity in Network Schedule"^^xsd:string ; 731 rdfs:label "Activity in Network Schedule"^^xsd:string ;
722 rdfs:subClassOf ILAP:PlannedActivity ; 732 rdfs:subClassOf ILAP:PlannedActivity ;
723 rdfs:subClassOf 733 rdfs:subClassOf
724 [ rdf:type owl:Restriction ; 734 [ rdf:type owl:Restriction ;
725 owl:maxQualifiedCardinality 735 owl:maxQualifiedCardinality
726 "1"^^xsd:nonNegativeInteger ; 736 "1"^^xsd:nonNegativeInteger ;
727 - owl:onClass ILAP:PlannedActivity ; 737 + owl:onClass ILAP:Schedule ;
728 - owl:onProperty ILAP:hasActivityInScheduleActivityInPlan 738 + owl:onProperty ILAP:hasActivitySchedule
729 ] ; 739 ] ;
730 rdfs:subClassOf 740 rdfs:subClassOf
731 [ rdf:type owl:Restriction ; 741 [ rdf:type owl:Restriction ;
732 owl:maxQualifiedCardinality 742 owl:maxQualifiedCardinality
733 "1"^^xsd:nonNegativeInteger ; 743 "1"^^xsd:nonNegativeInteger ;
734 - owl:onClass ILAP:Schedule ; 744 + owl:onClass ILAP:PlannedActivity ;
735 - owl:onProperty ILAP:hasActivitySchedule 745 + owl:onProperty ILAP:hasActivityInScheduleActivityInPlan
736 ] . 746 ] .
737 747
738 ILAP:ScheduledMilestone 748 ILAP:ScheduledMilestone
...@@ -756,9 +766,9 @@ ILAP:ShutdownType ...@@ -756,9 +766,9 @@ ILAP:ShutdownType
756 rdfs:subClassOf owl:Thing . 766 rdfs:subClassOf owl:Thing .
757 767
758 ILAP:Source 768 ILAP:Source
759 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; 769 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ;
760 rdfs:label "Source"^^xsd:string ; 770 rdfs:label "Source"^^xsd:string ;
761 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> . 771 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS13103560> , owl:Thing .
762 772
763 ILAP:StartMilestone 773 ILAP:StartMilestone
764 rdf:type owl:Class ; 774 rdf:type owl:Class ;
...@@ -766,22 +776,22 @@ ILAP:StartMilestone ...@@ -766,22 +776,22 @@ ILAP:StartMilestone
766 rdfs:subClassOf ILAP:MilestoneType . 776 rdfs:subClassOf ILAP:MilestoneType .
767 777
768 ILAP:StartToFinish 778 ILAP:StartToFinish
769 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 779 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
770 rdfs:label "Start to finish"^^xsd:string ; 780 rdfs:label "Start to finish"^^xsd:string ;
771 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 781 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
772 782
773 ILAP:StartToStart 783 ILAP:StartToStart
774 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 784 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
775 rdfs:label "Start to start"^^xsd:string ; 785 rdfs:label "Start to start"^^xsd:string ;
776 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 786 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
777 787
778 ILAP:Status 788 ILAP:Status
779 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ; 789 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> ;
780 rdfs:label "Status"^^xsd:string ; 790 rdfs:label "Status"^^xsd:string ;
781 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing . 791 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS427322951> .
782 792
783 ILAP:TargetSchedule 793 ILAP:TargetSchedule
784 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 794 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
785 rdfs:label "Target schedule"^^xsd:string ; 795 rdfs:label "Target schedule"^^xsd:string ;
786 rdfs:subClassOf ILAP:Schedule . 796 rdfs:subClassOf ILAP:Schedule .
787 797
...@@ -798,12 +808,12 @@ ILAP:UnitBased ...@@ -798,12 +808,12 @@ ILAP:UnitBased
798 ILAP:Value 808 ILAP:Value
799 rdf:type owl:Class ; 809 rdf:type owl:Class ;
800 rdfs:label "Value"^^xsd:string ; 810 rdfs:label "Value"^^xsd:string ;
801 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945844> . 811 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945844> , owl:Thing .
802 812
803 ILAP:WeekendsFreeCalendar 813 ILAP:WeekendsFreeCalendar
804 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 814 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
805 rdfs:label "Weekends free calendar"^^xsd:string ; 815 rdfs:label "Weekends free calendar"^^xsd:string ;
806 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:Calendar . 816 + rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> .
807 817
808 ILAP:WorkOrder 818 ILAP:WorkOrder
809 rdf:type owl:Class ; 819 rdf:type owl:Class ;
...@@ -811,18 +821,18 @@ ILAP:WorkOrder ...@@ -811,18 +821,18 @@ ILAP:WorkOrder
811 rdfs:subClassOf ILAP:WorkTask . 821 rdfs:subClassOf ILAP:WorkTask .
812 822
813 ILAP:WorkTask 823 ILAP:WorkTask
814 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 824 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
815 rdfs:label "Work task"^^xsd:string ; 825 rdfs:label "Work task"^^xsd:string ;
816 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , owl:Thing ; 826 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS3149> ;
817 rdfs:subClassOf 827 rdfs:subClassOf
818 [ rdf:type owl:Restriction ; 828 [ rdf:type owl:Restriction ;
819 - owl:allValuesFrom BRREG:LegalEntity ; 829 + owl:onProperty ILAP:hasWorkTaskActivity ;
820 - owl:onProperty ILAP:hasWorkTaskResponsible 830 + owl:someValuesFrom ILAP:Activity
821 ] ; 831 ] ;
822 rdfs:subClassOf 832 rdfs:subClassOf
823 [ rdf:type owl:Restriction ; 833 [ rdf:type owl:Restriction ;
824 - owl:onProperty ILAP:hasWorkTaskActivity ; 834 + owl:allValuesFrom BRREG:LegalEntity ;
825 - owl:someValuesFrom ILAP:Activity 835 + owl:onProperty ILAP:hasWorkTaskResponsible
826 ] . 836 ] .
827 837
828 ILAP:WorkTaskStatus 838 ILAP:WorkTaskStatus
...@@ -947,7 +957,7 @@ ILAP:hasActivityPhysicalPercentComplete ...@@ -947,7 +957,7 @@ ILAP:hasActivityPhysicalPercentComplete
947 rdfs:range xsd:float . 957 rdfs:range xsd:float .
948 958
949 ILAP:hasActivityPlan 959 ILAP:hasActivityPlan
950 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 960 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
951 rdfs:domain ILAP:PlannedActivity ; 961 rdfs:domain ILAP:PlannedActivity ;
952 rdfs:label "has activity plan"^^xsd:string ; 962 rdfs:label "has activity plan"^^xsd:string ;
953 rdfs:range ILAP:ProjectExecutionPlan . 963 rdfs:range ILAP:ProjectExecutionPlan .
...@@ -997,7 +1007,7 @@ ILAP:hasActivityResponsibleOrganization ...@@ -997,7 +1007,7 @@ ILAP:hasActivityResponsibleOrganization
997 rdfs:range ILAP:ResponsibleOrganization . 1007 rdfs:range ILAP:ResponsibleOrganization .
998 1008
999 ILAP:hasActivityResponsiblePerson 1009 ILAP:hasActivityResponsiblePerson
1000 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1010 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1001 rdfs:domain ILAP:PlannedActivity ; 1011 rdfs:domain ILAP:PlannedActivity ;
1002 rdfs:label "has activity responsible"^^xsd:string ; 1012 rdfs:label "has activity responsible"^^xsd:string ;
1003 rdfs:range ILAP:ResponsiblePerson . 1013 rdfs:range ILAP:ResponsiblePerson .
...@@ -1032,7 +1042,7 @@ ILAP:hasActivityStatus ...@@ -1032,7 +1042,7 @@ ILAP:hasActivityStatus
1032 rdfs:range ILAP:Status . 1042 rdfs:range ILAP:Status .
1033 1043
1034 ILAP:hasActivitySuccessor 1044 ILAP:hasActivitySuccessor
1035 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1045 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1036 rdfs:domain ILAP:PlannedActivity ; 1046 rdfs:domain ILAP:PlannedActivity ;
1037 rdfs:label "has activity successor"^^xsd:string ; 1047 rdfs:label "has activity successor"^^xsd:string ;
1038 rdfs:range ILAP:ActivityDependency ; 1048 rdfs:range ILAP:ActivityDependency ;
...@@ -1093,7 +1103,7 @@ ILAP:hasCalendarDate ...@@ -1093,7 +1103,7 @@ ILAP:hasCalendarDate
1093 rdfs:label "has calendar date"^^xsd:string . 1103 rdfs:label "has calendar date"^^xsd:string .
1094 1104
1095 ILAP:hasCalendarFreePeriod 1105 ILAP:hasCalendarFreePeriod
1096 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1106 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1097 rdfs:domain ILAP:Calendar ; 1107 rdfs:domain ILAP:Calendar ;
1098 rdfs:label "has calendarcalendar free period"^^xsd:string ; 1108 rdfs:label "has calendarcalendar free period"^^xsd:string ;
1099 rdfs:range ILAP:CalendarFreePeriod . 1109 rdfs:range ILAP:CalendarFreePeriod .
...@@ -1394,7 +1404,7 @@ ILAP:hasPlanRegulator ...@@ -1394,7 +1404,7 @@ ILAP:hasPlanRegulator
1394 rdfs:subPropertyOf ILAP:hasPlanResponsible . 1404 rdfs:subPropertyOf ILAP:hasPlanResponsible .
1395 1405
1396 ILAP:hasPlanResponsible 1406 ILAP:hasPlanResponsible
1397 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1407 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1398 rdfs:domain ILAP:ProjectExecutionPlan ; 1408 rdfs:domain ILAP:ProjectExecutionPlan ;
1399 rdfs:label "has plan responsible"^^xsd:string ; 1409 rdfs:label "has plan responsible"^^xsd:string ;
1400 rdfs:range ILAP:ResponsibleOrganization . 1410 rdfs:range ILAP:ResponsibleOrganization .
...@@ -1589,7 +1599,7 @@ ILAP:hasSourceApplicaton ...@@ -1589,7 +1599,7 @@ ILAP:hasSourceApplicaton
1589 rdfs:range ILAP:Application . 1599 rdfs:range ILAP:Application .
1590 1600
1591 ILAP:hasSuccessorActivity 1601 ILAP:hasSuccessorActivity
1592 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1602 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1593 rdfs:domain ILAP:ActivityDependency ; 1603 rdfs:domain ILAP:ActivityDependency ;
1594 rdfs:label "has successor activity "^^xsd:string ; 1604 rdfs:label "has successor activity "^^xsd:string ;
1595 rdfs:range ILAP:PlannedActivity ; 1605 rdfs:range ILAP:PlannedActivity ;
...@@ -1617,7 +1627,7 @@ ILAP:hasTimeNow ...@@ -1617,7 +1627,7 @@ ILAP:hasTimeNow
1617 rdf:type owl:DatatypeProperty ; 1627 rdf:type owl:DatatypeProperty ;
1618 rdfs:domain ILAP:Schedule ; 1628 rdfs:domain ILAP:Schedule ;
1619 rdfs:label "has time now"^^xsd:string ; 1629 rdfs:label "has time now"^^xsd:string ;
1620 - rdfs:range xsd:date , xsd:dateTime . 1630 + rdfs:range xsd:dateTime , xsd:date .
1621 1631
1622 ILAP:hasWBScomponent 1632 ILAP:hasWBScomponent
1623 rdf:type owl:ObjectProperty ; 1633 rdf:type owl:ObjectProperty ;
......
...@@ -30,9 +30,9 @@ ILAP:ActivityWBS_1 ...@@ -30,9 +30,9 @@ ILAP:ActivityWBS_1
30 rdf:type ILAP:ActivityWBS ; 30 rdf:type ILAP:ActivityWBS ;
31 rdfs:label "Activity WBS 1"^^xsd:string ; 31 rdfs:label "Activity WBS 1"^^xsd:string ;
32 ILAP:hasWBScomponent 32 ILAP:hasWBScomponent
33 - SCCS:PBS_ACAA , ILAP:PBS_ACAA_1 ; 33 + ILAP:PBS_ACAA_1 , SCCS:PBS_ACAA ;
34 - ILAP:hasWBSphase SCCS:SAB_51 , ILAP:SAB_51_1 ; 34 + ILAP:hasWBSphase ILAP:SAB_51_1 , SCCS:SAB_51 ;
35 - ILAP:hasWBSresource SCCS:COR_KD , ILAP:COR_KD_1 . 35 + ILAP:hasWBSresource ILAP:COR_KD_1 , SCCS:COR_KD .
36 36
37 ILAP:AreaCode 37 ILAP:AreaCode
38 rdf:type USERFIELDS:FreeTextField ; 38 rdf:type USERFIELDS:FreeTextField ;
...@@ -60,6 +60,10 @@ ILAP:CostCenter ...@@ -60,6 +60,10 @@ ILAP:CostCenter
60 "COST CENTER B"^^xsd:string ; 60 "COST CENTER B"^^xsd:string ;
61 USERFIELDS:hasShort "CCB"^^xsd:string . 61 USERFIELDS:hasShort "CCB"^^xsd:string .
62 62
63 +ILAP:FinishToStart_1_2
64 + rdf:type ILAP:FinishToStart ;
65 + rdfs:label "Finish to start 1 2"^^xsd:string .
66 +
63 ILAP:Index_Code_Value 67 ILAP:Index_Code_Value
64 rdf:type USERFIELDS:FreeTextField ; 68 rdf:type USERFIELDS:FreeTextField ;
65 rdfs:label "Index Code" ; 69 rdfs:label "Index Code" ;
...@@ -79,6 +83,10 @@ ILAP:PBS_ACAA_1 ...@@ -79,6 +83,10 @@ ILAP:PBS_ACAA_1
79 rdf:type SCCS:PBS_ACAA ; 83 rdf:type SCCS:PBS_ACAA ;
80 rdfs:label "Production wells for Gravity Structure 24-7"^^xsd:string . 84 rdfs:label "Production wells for Gravity Structure 24-7"^^xsd:string .
81 85
86 +ILAP:PlannedActivity_1
87 + rdf:type ILAP:PlannedActivity ;
88 + rdfs:label "Planned activity 1"^^xsd:string .
89 +
82 ILAP:PlannedActivity_2 90 ILAP:PlannedActivity_2
83 rdf:type ILAP:PlannedActivity ; 91 rdf:type ILAP:PlannedActivity ;
84 rdfs:label "Planned activity 2"^^xsd:string ; 92 rdfs:label "Planned activity 2"^^xsd:string ;
...@@ -123,10 +131,6 @@ ILAP:PlannedActivity_2 ...@@ -123,10 +131,6 @@ ILAP:PlannedActivity_2
123 USERFIELDS:hasUserField 131 USERFIELDS:hasUserField
124 ILAP:UserField_for_PlannedActivity_2 . 132 ILAP:UserField_for_PlannedActivity_2 .
125 133
126 -ILAP:ProjectExecutionPlan_1
127 - rdf:type ILAP:ProjectExecutionPlan ;
128 - rdfs:label "Project execution plan 1"^^xsd:string .
129 -
130 ILAP:ProjectExecutionPlan_UC1 134 ILAP:ProjectExecutionPlan_UC1
131 rdf:type ILAP:ProjectExecutionPlan ; 135 rdf:type ILAP:ProjectExecutionPlan ;
132 rdfs:label "Project execution plan UC1"^^xsd:string ; 136 rdfs:label "Project execution plan UC1"^^xsd:string ;
...@@ -162,9 +166,9 @@ ILAP:ProjectExecutionPlan_UC1 ...@@ -162,9 +166,9 @@ ILAP:ProjectExecutionPlan_UC1
162 ILAP:hasPlanSupplier 166 ILAP:hasPlanSupplier
163 ILAP:ResponsibleOrganization . 167 ILAP:ResponsibleOrganization .
164 168
165 -ILAP:ProjectExecutionSubPlan_1 169 +ILAP:ProjectExecutionSubPlan_UC1
166 rdf:type ILAP:ProjectExecutionPlan ; 170 rdf:type ILAP:ProjectExecutionPlan ;
167 - rdfs:label "Project execution sub plan 1"^^xsd:string . 171 + rdfs:label "Project execution sub plan UC1"^^xsd:string .
168 172
169 ILAP:Project_1 173 ILAP:Project_1
170 rdf:type ILAP:Project ; 174 rdf:type ILAP:Project ;
...@@ -192,6 +196,10 @@ ILAP:ScheduledActivity_1 ...@@ -192,6 +196,10 @@ ILAP:ScheduledActivity_1
192 USERFIELDS:hasUserField 196 USERFIELDS:hasUserField
193 ILAP:UserField_for_Scheduled_Activity_1 . 197 ILAP:UserField_for_Scheduled_Activity_1 .
194 198
199 +ILAP:ScheduledActivity_2
200 + rdf:type ILAP:ScheduledActivity ;
201 + rdfs:label "Scheduled activity 1"^^xsd:string .
202 +
195 ILAP:ScheduledMilestone_1 203 ILAP:ScheduledMilestone_1
196 rdf:type ILAP:ScheduledMilestone ; 204 rdf:type ILAP:ScheduledMilestone ;
197 rdfs:label "Scheduled milestone 1"^^xsd:string . 205 rdfs:label "Scheduled milestone 1"^^xsd:string .
...@@ -213,7 +221,7 @@ ILAP:SummerShutdown_UC1 ...@@ -213,7 +221,7 @@ ILAP:SummerShutdown_UC1
213 ILAP:hasShutdownPriority 221 ILAP:hasShutdownPriority
214 ILAP:NormalPriority ; 222 ILAP:NormalPriority ;
215 ILAP:hasShutdownType 223 ILAP:hasShutdownType
216 - ILAP:SystemShutdown , ILAP:ScheduledShutdown , ILAP:ProductionShutdown . 224 + ILAP:ProductionShutdown , ILAP:ScheduledShutdown , ILAP:SystemShutdown .
217 225
218 ILAP:UseCaseAibelToCOPNO 226 ILAP:UseCaseAibelToCOPNO
219 rdf:type ILAP:Source ; 227 rdf:type ILAP:Source ;
...@@ -225,14 +233,14 @@ ILAP:UserField ...@@ -225,14 +233,14 @@ ILAP:UserField
225 rdfs:subClassOf 233 rdfs:subClassOf
226 [ rdf:type owl:Restriction ; 234 [ rdf:type owl:Restriction ;
227 owl:onDataRange xsd:string ; 235 owl:onDataRange xsd:string ;
228 - owl:onProperty ILAP:hasValueSource ; 236 + owl:onProperty ILAP:hasValue ;
229 owl:qualifiedCardinality 237 owl:qualifiedCardinality
230 "1"^^xsd:nonNegativeInteger 238 "1"^^xsd:nonNegativeInteger
231 ] ; 239 ] ;
232 rdfs:subClassOf 240 rdfs:subClassOf
233 [ rdf:type owl:Restriction ; 241 [ rdf:type owl:Restriction ;
234 owl:onDataRange xsd:string ; 242 owl:onDataRange xsd:string ;
235 - owl:onProperty ILAP:hasValue ; 243 + owl:onProperty ILAP:hasValueSource ;
236 owl:qualifiedCardinality 244 owl:qualifiedCardinality
237 "1"^^xsd:nonNegativeInteger 245 "1"^^xsd:nonNegativeInteger
238 ] . 246 ] .
......