Tore Christiansen

Major restructuring of ontology

...@@ -26,44 +26,44 @@ ILAP: ...@@ -26,44 +26,44 @@ ILAP:
26 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 26 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
27 27
28 ILAP:Activity 28 ILAP:Activity
29 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 29 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
30 rdfs:label "Activity"^^xsd:string ; 30 rdfs:label "Activity"^^xsd:string ;
31 rdfs:subClassOf 31 rdfs:subClassOf
32 [ rdf:type owl:Restriction ; 32 [ rdf:type owl:Restriction ;
33 - owl:allValuesFrom ILAP:Discipline ; 33 + owl:allValuesFrom ILAP:Status ;
34 - owl:onProperty ILAP:hasActivityDiscipline 34 + owl:onProperty ILAP:hasActivityStatus
35 ] ; 35 ] ;
36 rdfs:subClassOf 36 rdfs:subClassOf
37 [ rdf:type owl:Restriction ; 37 [ rdf:type owl:Restriction ;
38 - owl:allValuesFrom ILAP:Calendar ; 38 + owl:onProperty ILAP:hasExternalReference ;
39 - owl:onProperty ILAP:hasActivityCalendar 39 + owl:someValuesFrom ILAP:ExternalReference
40 ] ; 40 ] ;
41 rdfs:subClassOf 41 rdfs:subClassOf
42 [ rdf:type owl:Restriction ; 42 [ rdf:type owl:Restriction ;
43 - owl:onProperty ILAP:hasExternalReference ; 43 + owl:allValuesFrom ILAP:Calendar ;
44 - owl:someValuesFrom ILAP:ExternalReference 44 + owl:onProperty ILAP:hasActivityCalendar
45 ] ; 45 ] ;
46 rdfs:subClassOf 46 rdfs:subClassOf
47 [ rdf:type owl:Restriction ; 47 [ rdf:type owl:Restriction ;
48 - owl:allValuesFrom ILAP:Status ; 48 + owl:allValuesFrom ILAP:Discipline ;
49 - owl:onProperty ILAP:hasActivityStatus 49 + owl:onProperty ILAP:hasActivityDiscipline
50 ] . 50 ] .
51 51
52 ILAP:ActivityDependency 52 ILAP:ActivityDependency
53 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 53 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
54 rdfs:label "Activity Dependency"^^xsd:string ; 54 rdfs:label "Activity Dependency"^^xsd:string ;
55 rdfs:subClassOf ILAP:Constraint ; 55 rdfs:subClassOf ILAP:Constraint ;
56 rdfs:subClassOf 56 rdfs:subClassOf
57 [ rdf:type owl:Restriction ; 57 [ rdf:type owl:Restriction ;
58 owl:onClass ILAP:Activity ; 58 owl:onClass ILAP:Activity ;
59 - owl:onProperty ILAP:hasPredecessorActivity ; 59 + owl:onProperty ILAP:hasSuccessorActivity ;
60 owl:qualifiedCardinality 60 owl:qualifiedCardinality
61 "1"^^xsd:nonNegativeInteger 61 "1"^^xsd:nonNegativeInteger
62 ] ; 62 ] ;
63 rdfs:subClassOf 63 rdfs:subClassOf
64 [ rdf:type owl:Restriction ; 64 [ rdf:type owl:Restriction ;
65 owl:onClass ILAP:Activity ; 65 owl:onClass ILAP:Activity ;
66 - owl:onProperty ILAP:hasSuccessorActivity ; 66 + owl:onProperty ILAP:hasPredecessorActivity ;
67 owl:qualifiedCardinality 67 owl:qualifiedCardinality
68 "1"^^xsd:nonNegativeInteger 68 "1"^^xsd:nonNegativeInteger
69 ] . 69 ] .
...@@ -136,7 +136,7 @@ ILAP:ActivityInPlan_1 ...@@ -136,7 +136,7 @@ ILAP:ActivityInPlan_1
136 "Specific object ID"^^xsd:string . 136 "Specific object ID"^^xsd:string .
137 137
138 ILAP:ActivityPlan 138 ILAP:ActivityPlan
139 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 139 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
140 rdfs:label "Activity Plan"^^xsd:string ; 140 rdfs:label "Activity Plan"^^xsd:string ;
141 rdfs:subClassOf ILAP:Network ; 141 rdfs:subClassOf ILAP:Network ;
142 rdfs:subClassOf 142 rdfs:subClassOf
...@@ -151,7 +151,7 @@ ILAP:ActivityStatus ...@@ -151,7 +151,7 @@ ILAP:ActivityStatus
151 rdfs:subClassOf ILAP:Status . 151 rdfs:subClassOf ILAP:Status .
152 152
153 ILAP:ActivityWBS 153 ILAP:ActivityWBS
154 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; 154 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ;
155 rdfs:label "Activity WBS"^^xsd:string ; 155 rdfs:label "Activity WBS"^^xsd:string ;
156 rdfs:subClassOf ILAP:Network . 156 rdfs:subClassOf ILAP:Network .
157 157
...@@ -159,18 +159,22 @@ ILAP:ActivityWBS_1 ...@@ -159,18 +159,22 @@ ILAP:ActivityWBS_1
159 rdf:type ILAP:ActivityWBS ; 159 rdf:type ILAP:ActivityWBS ;
160 rdfs:label "Activity WBS 1"^^xsd:string . 160 rdfs:label "Activity WBS 1"^^xsd:string .
161 161
162 +ILAP:After_Shutdown
163 + rdf:type ILAP:ShutdownOperation ;
164 + rdfs:label "After Shutdown"^^xsd:string .
165 +
162 ILAP:Application 166 ILAP:Application
163 rdf:type owl:Class ; 167 rdf:type owl:Class ;
164 rdfs:label "Application"^^xsd:string ; 168 rdfs:label "Application"^^xsd:string ;
165 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS43165907246> , owl:Thing . 169 + rdfs:subClassOf owl:Thing , <http://data.posccaesar.org/rdl/RDS43165907246> .
166 170
167 ILAP:Asset 171 ILAP:Asset
168 rdf:type owl:Class ; 172 rdf:type owl:Class ;
169 rdfs:label "Asset"^^xsd:string ; 173 rdfs:label "Asset"^^xsd:string ;
170 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13318199> , owl:Thing . 174 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13318199> .
171 175
172 ILAP:Baseline 176 ILAP:Baseline
173 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 177 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
174 rdfs:label "Baseline"^^xsd:string ; 178 rdfs:label "Baseline"^^xsd:string ;
175 rdfs:subClassOf ILAP:Network . 179 rdfs:subClassOf ILAP:Network .
176 180
...@@ -179,14 +183,18 @@ ILAP:BaselineSchedule ...@@ -179,14 +183,18 @@ ILAP:BaselineSchedule
179 rdfs:label "Baseline schedule"^^xsd:string ; 183 rdfs:label "Baseline schedule"^^xsd:string ;
180 rdfs:subClassOf ILAP:Schedule . 184 rdfs:subClassOf ILAP:Schedule .
181 185
186 +ILAP:Before_Shutdown
187 + rdf:type ILAP:ShutdownOperation ;
188 + rdfs:label "Before Shutdown"^^xsd:string .
189 +
182 ILAP:CAPEX 190 ILAP:CAPEX
183 rdf:type ILAP:ProjectType ; 191 rdf:type ILAP:ProjectType ;
184 rdfs:label "CAPEX"^^xsd:string . 192 rdfs:label "CAPEX"^^xsd:string .
185 193
186 ILAP:Calendar 194 ILAP:Calendar
187 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 195 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
188 rdfs:label "Calendar"^^xsd:string ; 196 rdfs:label "Calendar"^^xsd:string ;
189 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7014210> ; 197 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ;
190 rdfs:subClassOf 198 rdfs:subClassOf
191 [ rdf:type owl:Restriction ; 199 [ rdf:type owl:Restriction ;
192 owl:allValuesFrom ILAP:CalendarFreePeriod ; 200 owl:allValuesFrom ILAP:CalendarFreePeriod ;
...@@ -194,14 +202,14 @@ ILAP:Calendar ...@@ -194,14 +202,14 @@ ILAP:Calendar
194 ] . 202 ] .
195 203
196 ILAP:CalendarDay 204 ILAP:CalendarDay
197 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; 205 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
198 rdfs:label "Calendar day"^^xsd:string ; 206 rdfs:label "Calendar day"^^xsd:string ;
199 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> . 207 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , owl:Thing .
200 208
201 ILAP:CalendarFreePeriod 209 ILAP:CalendarFreePeriod
202 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; 210 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
203 rdfs:label "Calendar free period"^^xsd:string ; 211 rdfs:label "Calendar free period"^^xsd:string ;
204 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ; 212 + rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ;
205 rdfs:subClassOf 213 rdfs:subClassOf
206 [ rdf:type owl:Restriction ; 214 [ rdf:type owl:Restriction ;
207 owl:onClass ILAP:Calendar ; 215 owl:onClass ILAP:Calendar ;
...@@ -213,44 +221,56 @@ ILAP:CalendarFreePeriod ...@@ -213,44 +221,56 @@ ILAP:CalendarFreePeriod
213 ] . 221 ] .
214 222
215 ILAP:CalendarFreePeriodWeekRepeat 223 ILAP:CalendarFreePeriodWeekRepeat
216 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; 224 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
217 rdfs:label "Free day"^^xsd:string ; 225 rdfs:label "Free day"^^xsd:string ;
218 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod . 226 + rdfs:subClassOf ILAP:CalendarFreePeriod , <http://posccaesar.org/rdl/page/RDS356215271> .
219 227
220 ILAP:CalendarHour 228 ILAP:CalendarHour
221 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; 229 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
222 rdfs:label "calendar hour"^^xsd:string ; 230 rdfs:label "calendar hour"^^xsd:string ;
223 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS380969> , <http://posccaesar.org/rdl/RDS1326734> . 231 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> , owl:Thing .
224 232
225 ILAP:CalendarPeriod 233 ILAP:CalendarPeriod
226 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> ; 234 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ;
227 rdfs:label "Calendar period"^^xsd:string ; 235 rdfs:label "Calendar period"^^xsd:string ;
228 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS4316824755> , owl:Thing ; 236 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ;
229 rdfs:subClassOf 237 rdfs:subClassOf
230 [ rdf:type owl:Restriction ; 238 [ rdf:type owl:Restriction ;
231 - owl:allValuesFrom ILAP:CalendarDay ; 239 + owl:allValuesFrom ILAP:CalendarHour ;
232 - owl:onProperty ILAP:hasCalendarPeriodDay 240 + owl:onProperty ILAP:hasCalendarPeriodHour
233 ] ; 241 ] ;
234 rdfs:subClassOf 242 rdfs:subClassOf
235 [ rdf:type owl:Restriction ; 243 [ rdf:type owl:Restriction ;
236 - owl:allValuesFrom ILAP:CalendarHour ; 244 + owl:allValuesFrom ILAP:CalendarDay ;
237 - owl:onProperty ILAP:hasCalendarPeriodHour 245 + owl:onProperty ILAP:hasCalendarPeriodDay
238 ] . 246 ] .
239 247
248 +ILAP:Campaign
249 + rdf:type ILAP:ShutdownType ;
250 + rdfs:label "Campaign"^^xsd:string .
251 +
240 ILAP:Category 252 ILAP:Category
241 rdf:type owl:Class ; 253 rdf:type owl:Class ;
242 rdfs:label "Category"^^xsd:string ; 254 rdfs:label "Category"^^xsd:string ;
243 rdfs:subClassOf owl:Thing . 255 rdfs:subClassOf owl:Thing .
244 256
257 +ILAP:Change_Order_Living_Quarter
258 + rdf:type ILAP:ShutdownContent ;
259 + rdfs:label "Change Order Living Quarter"^^xsd:string .
260 +
261 +ILAP:Change_over
262 + rdf:type ILAP:ShutdownType ;
263 + rdfs:label "Change over"^^xsd:string .
264 +
245 ILAP:Constraint 265 ILAP:Constraint
246 rdf:type owl:Class ; 266 rdf:type owl:Class ;
247 rdfs:label "Constraint"^^xsd:string ; 267 rdfs:label "Constraint"^^xsd:string ;
248 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS330344> , owl:Thing . 268 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS330344> .
249 269
250 ILAP:Contract 270 ILAP:Contract
251 rdf:type owl:Class ; 271 rdf:type owl:Class ;
252 rdfs:label "Contract"^^xsd:string ; 272 rdfs:label "Contract"^^xsd:string ;
253 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7953078> , owl:Thing . 273 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7953078> .
254 274
255 ILAP:ControlSchedule 275 ILAP:ControlSchedule
256 rdf:type owl:Class ; 276 rdf:type owl:Class ;
...@@ -260,22 +280,26 @@ ILAP:ControlSchedule ...@@ -260,22 +280,26 @@ ILAP:ControlSchedule
260 ILAP:Cost 280 ILAP:Cost
261 rdf:type owl:Class ; 281 rdf:type owl:Class ;
262 rdfs:label "Cost"^^xsd:string ; 282 rdfs:label "Cost"^^xsd:string ;
263 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945027> , owl:Thing . 283 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945027> .
264 284
265 ILAP:CostBased 285 ILAP:CostBased
266 rdf:type owl:Class ; 286 rdf:type owl:Class ;
267 rdfs:label "Cost based"^^xsd:string ; 287 rdfs:label "Cost based"^^xsd:string ;
268 rdfs:subClassOf ILAP:Resource . 288 rdfs:subClassOf ILAP:Resource .
269 289
290 +ILAP:Critical
291 + rdf:type ILAP:ShutdownPriority ;
292 + rdfs:label "Critical"^^xsd:string .
293 +
270 ILAP:CurrentSchedule 294 ILAP:CurrentSchedule
271 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 295 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
272 rdfs:label "Current schedule"^^xsd:string ; 296 rdfs:label "Current schedule"^^xsd:string ;
273 rdfs:subClassOf ILAP:Schedule . 297 rdfs:subClassOf ILAP:Schedule .
274 298
275 ILAP:Data 299 ILAP:Data
276 rdf:type owl:Class ; 300 rdf:type owl:Class ;
277 rdfs:label "Data"^^xsd:string ; 301 rdfs:label "Data"^^xsd:string ;
278 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS11708918> , ILAP:Information ; 302 + rdfs:subClassOf ILAP:Information , <http://posccaesar.org/rdl/RDS11708918> ;
279 rdfs:subClassOf 303 rdfs:subClassOf
280 [ rdf:type owl:Restriction ; 304 [ rdf:type owl:Restriction ;
281 owl:onClass ILAP:Project ; 305 owl:onClass ILAP:Project ;
...@@ -299,21 +323,39 @@ ILAP:DegreeOfPriority ...@@ -299,21 +323,39 @@ ILAP:DegreeOfPriority
299 rdfs:label "Degree of Priority"^^xsd:string ; 323 rdfs:label "Degree of Priority"^^xsd:string ;
300 rdfs:subClassOf owl:Thing . 324 rdfs:subClassOf owl:Thing .
301 325
326 +ILAP:Dependent_on_Shutdown
327 + rdf:type ILAP:ShutdownOperation ;
328 + rdfs:label "Dependent on Shutdown"^^xsd:string .
329 +
302 ILAP:Discipline 330 ILAP:Discipline
303 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; 331 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
304 rdfs:label "Discipline"^^xsd:string ; 332 rdfs:label "Discipline"^^xsd:string ;
305 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS6811233> , owl:Thing . 333 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS6811233> .
334 +
335 +ILAP:Drilling_Shutdown
336 + rdf:type ILAP:ShutdownContent ;
337 + rdfs:label "Drilling shutdown"^^xsd:string .
338 +
339 +ILAP:During_Normal_Operation
340 + rdf:type ILAP:ShutdownOperation ;
341 + rdfs:label "During Normal Operation"^^xsd:string .
342 +
343 +ILAP:During_Shutdown
344 + rdf:type ILAP:ShutdownOperation ;
345 + rdfs:label "During Shutdown"^^xsd:string .
346 +
347 +ILAP:Equipment_Shutdown
348 + rdf:type ILAP:ShutdownContent ;
349 + rdfs:label "Equipment Shutdown"^^xsd:string .
306 350
307 ILAP:ExternalReference 351 ILAP:ExternalReference
308 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ; 352 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ;
309 rdfs:label "External Reference"^^xsd:string ; 353 rdfs:label "External Reference"^^xsd:string ;
310 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/page/RDS720105291> ; 354 + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ;
311 rdfs:subClassOf 355 rdfs:subClassOf
312 [ rdf:type owl:Restriction ; 356 [ rdf:type owl:Restriction ;
313 - owl:onDataRange xsd:string ; 357 + owl:allValuesFrom ILAP:Application ;
314 - owl:onProperty ILAP:hasObjectReferenceID ; 358 + owl:onProperty ILAP:hasReferenceApplication
315 - owl:qualifiedCardinality
316 - "1"^^xsd:nonNegativeInteger
317 ] ; 359 ] ;
318 rdfs:subClassOf 360 rdfs:subClassOf
319 [ rdf:type owl:Restriction ; 361 [ rdf:type owl:Restriction ;
...@@ -322,30 +364,57 @@ ILAP:ExternalReference ...@@ -322,30 +364,57 @@ ILAP:ExternalReference
322 ] ; 364 ] ;
323 rdfs:subClassOf 365 rdfs:subClassOf
324 [ rdf:type owl:Restriction ; 366 [ rdf:type owl:Restriction ;
325 - owl:allValuesFrom ILAP:Application ; 367 + owl:onDataRange xsd:string ;
326 - owl:onProperty ILAP:hasReferenceApplication 368 + owl:onProperty ILAP:hasObjectReferenceID ;
369 + owl:qualifiedCardinality
370 + "1"^^xsd:nonNegativeInteger
327 ] . 371 ] .
328 372
373 +ILAP:Facility
374 + rdf:type owl:Class ;
375 + rdfs:label "Facility"^^xsd:string ;
376 + rdfs:subClassOf owl:Thing .
377 +
378 +ILAP:Field_Shutdown
379 + rdf:type ILAP:ShutdownContent ;
380 + rdfs:label "Field Shutdown"^^xsd:string .
381 +
329 ILAP:FinishToFinish 382 ILAP:FinishToFinish
330 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 383 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
331 rdfs:label "Finish to finish"^^xsd:string ; 384 rdfs:label "Finish to finish"^^xsd:string ;
332 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . 385 + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> .
333 386
334 ILAP:FinishToStart 387 ILAP:FinishToStart
335 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 388 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
336 rdfs:label "Finish to start"^^xsd:string ; 389 rdfs:label "Finish to start"^^xsd:string ;
337 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . 390 + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> .
338 391
339 ILAP:FunctionalLocation 392 ILAP:FunctionalLocation
340 rdf:type owl:Class ; 393 rdf:type owl:Class ;
341 rdfs:label "Functional location"^^xsd:string ; 394 rdfs:label "Functional location"^^xsd:string ;
342 rdfs:subClassOf ILAP:Location . 395 rdfs:subClassOf ILAP:Location .
343 396
397 +ILAP:Gas_Export_Shutdown
398 + rdf:type ILAP:ShutdownContent ;
399 + rdfs:label "Gas Export Shutdown"^^xsd:string .
400 +
401 +ILAP:Gas_Injection_Shutdown
402 + rdf:type ILAP:ShutdownContent ;
403 + rdfs:label "Gas Injection Shutdown"^^xsd:string .
404 +
344 ILAP:GeographicLocation 405 ILAP:GeographicLocation
345 rdf:type owl:Class ; 406 rdf:type owl:Class ;
346 rdfs:label "Geographic location"^^xsd:string ; 407 rdfs:label "Geographic location"^^xsd:string ;
347 rdfs:subClassOf ILAP:Location . 408 rdfs:subClassOf ILAP:Location .
348 409
410 +ILAP:HCsystemsWork
411 + rdf:type ILAP:RiskType ;
412 + rdfs:label "HC systems work"^^xsd:string .
413 +
414 +ILAP:HeightWork
415 + rdf:type ILAP:RiskType ;
416 + rdfs:label "Height work"^^xsd:string .
417 +
349 ILAP:HighCriticality 418 ILAP:HighCriticality
350 rdf:type ILAP:DegreeOfCriticality ; 419 rdf:type ILAP:DegreeOfCriticality ;
351 rdfs:label "High criticality"^^xsd:string . 420 rdfs:label "High criticality"^^xsd:string .
...@@ -354,25 +423,45 @@ ILAP:HighPriority ...@@ -354,25 +423,45 @@ ILAP:HighPriority
354 rdf:type ILAP:DegreeOfPriority ; 423 rdf:type ILAP:DegreeOfPriority ;
355 rdfs:label "High priority"^^xsd:string . 424 rdfs:label "High priority"^^xsd:string .
356 425
426 +ILAP:High_Activity_Period
427 + rdf:type ILAP:ShutdownPeriod ;
428 + rdfs:label "High Activity Period"^^xsd:string .
429 +
430 +ILAP:HotWork
431 + rdf:type ILAP:RiskType ;
432 + rdfs:label "Hot work"^^xsd:string .
433 +
434 +ILAP:IndependentOfOperation
435 + rdf:type ILAP:ShutdownOperation ;
436 + rdfs:label "Independent of operation"^^xsd:string .
437 +
357 ILAP:Information 438 ILAP:Information
358 rdf:type owl:Class ; 439 rdf:type owl:Class ;
359 rdfs:label "Information"^^xsd:string ; 440 rdfs:label "Information"^^xsd:string ;
360 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS11711488> , owl:Thing . 441 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS11711488> .
361 442
362 ILAP:Knowledge 443 ILAP:Knowledge
363 rdf:type owl:Class ; 444 rdf:type owl:Class ;
364 rdfs:label "Knowledge"^^xsd:string ; 445 rdfs:label "Knowledge"^^xsd:string ;
365 rdfs:subClassOf ILAP:Information . 446 rdfs:subClassOf ILAP:Information .
366 447
448 +ILAP:LiftingOperation
449 + rdf:type ILAP:RiskType ;
450 + rdfs:label "Lifting operation"^^xsd:string .
451 +
367 ILAP:LiveSchedule 452 ILAP:LiveSchedule
368 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 453 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
369 rdfs:label "Live schedule"^^xsd:string ; 454 rdfs:label "Live schedule"^^xsd:string ;
370 rdfs:subClassOf ILAP:Schedule . 455 rdfs:subClassOf ILAP:Schedule .
371 456
457 +ILAP:Living_Quarter_Shutdown
458 + rdf:type ILAP:ShutdownContent ;
459 + rdfs:label "Living Quarter Shutdown"^^xsd:string .
460 +
372 ILAP:Location 461 ILAP:Location
373 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ; 462 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ;
374 rdfs:label "Location"^^xsd:string ; 463 rdfs:label "Location"^^xsd:string ;
375 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS943618371> . 464 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing .
376 465
377 ILAP:LowCriticality 466 ILAP:LowCriticality
378 rdf:type ILAP:DegreeOfCriticality ; 467 rdf:type ILAP:DegreeOfCriticality ;
...@@ -383,13 +472,17 @@ ILAP:LowPriority ...@@ -383,13 +472,17 @@ ILAP:LowPriority
383 rdfs:label "Low priority"^^xsd:string . 472 rdfs:label "Low priority"^^xsd:string .
384 473
385 ILAP:Milestone 474 ILAP:Milestone
386 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> , owl:Class ; 475 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ;
387 rdfs:label "Milestone"^^xsd:string . 476 rdfs:label "Milestone"^^xsd:string .
388 477
389 ILAP:Network 478 ILAP:Network
390 rdf:type owl:Class ; 479 rdf:type owl:Class ;
391 rdfs:label "Network"^^xsd:string ; 480 rdfs:label "Network"^^xsd:string ;
392 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1293947091> , owl:Thing . 481 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1293947091> .
482 +
483 +ILAP:Non-Scheduled_Shutdown
484 + rdf:type ILAP:ShutdownType ;
485 + rdfs:label "Non-Scheduled Shutdown"^^xsd:string .
393 486
394 ILAP:NormalCriticality 487 ILAP:NormalCriticality
395 rdf:type ILAP:DegreeOfCriticality ; 488 rdf:type ILAP:DegreeOfCriticality ;
...@@ -399,6 +492,10 @@ ILAP:NormalPriority ...@@ -399,6 +492,10 @@ ILAP:NormalPriority
399 rdf:type ILAP:DegreeOfPriority ; 492 rdf:type ILAP:DegreeOfPriority ;
400 rdfs:label "Normal priority"^^xsd:string . 493 rdfs:label "Normal priority"^^xsd:string .
401 494
495 +ILAP:Not_Critical
496 + rdf:type ILAP:ShutdownPriority ;
497 + rdfs:label "Not Critical"^^xsd:string .
498 +
402 ILAP:OPEX 499 ILAP:OPEX
403 rdf:type ILAP:ProjectType ; 500 rdf:type ILAP:ProjectType ;
404 rdfs:label "OPEX"^^xsd:string . 501 rdfs:label "OPEX"^^xsd:string .
...@@ -424,49 +521,49 @@ ILAP:PhysicalLocation ...@@ -424,49 +521,49 @@ ILAP:PhysicalLocation
424 rdfs:subClassOf ILAP:Location . 521 rdfs:subClassOf ILAP:Location .
425 522
426 ILAP:PlanClassifier 523 ILAP:PlanClassifier
427 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; 524 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
428 rdfs:label "Plan classifier"^^xsd:string ; 525 rdfs:label "Plan classifier"^^xsd:string ;
429 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> . 526 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , owl:Thing .
430 527
431 ILAP:PlanContentType 528 ILAP:PlanContentType
432 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; 529 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ;
433 rdfs:label "Plan content type"^^xsd:string ; 530 rdfs:label "Plan content type"^^xsd:string ;
434 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> . 531 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS892484261> , ILAP:PlanClassifier .
435 532
436 ILAP:PlanContractType 533 ILAP:PlanContractType
437 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; 534 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
438 rdfs:label "Plan contract type"^^xsd:string ; 535 rdfs:label "Plan contract type"^^xsd:string ;
439 rdfs:subClassOf ILAP:PlanClassifier . 536 rdfs:subClassOf ILAP:PlanClassifier .
440 537
441 ILAP:PlanExpenseType 538 ILAP:PlanExpenseType
442 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; 539 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
443 rdfs:label "Plan expense type"^^xsd:string ; 540 rdfs:label "Plan expense type"^^xsd:string ;
444 rdfs:subClassOf ILAP:PlanClassifier . 541 rdfs:subClassOf ILAP:PlanClassifier .
445 542
446 ILAP:PlanGeoArea 543 ILAP:PlanGeoArea
447 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> ; 544 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ;
448 rdfs:label "Plan geographic area"^^xsd:string ; 545 rdfs:label "Plan geographic area"^^xsd:string ;
449 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . 546 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> .
450 547
451 ILAP:PlanLevel 548 ILAP:PlanLevel
452 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; 549 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
453 rdfs:label "Plan level"^^xsd:string ; 550 rdfs:label "Plan level"^^xsd:string ;
454 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . 551 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> .
455 552
456 ILAP:PlanLifecycleStage 553 ILAP:PlanLifecycleStage
457 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 554 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
458 rdfs:label "Plan lifecycle stage"^^xsd:string ; 555 rdfs:label "Plan lifecycle stage"^^xsd:string ;
459 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . 556 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> .
460 557
461 ILAP:PlanObjectiveType 558 ILAP:PlanObjectiveType
462 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> , owl:Class ; 559 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ;
463 rdfs:label "Plan objective type"^^xsd:string ; 560 rdfs:label "Plan objective type"^^xsd:string ;
464 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier . 561 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS43168516168> .
465 562
466 ILAP:PlanProjectType 563 ILAP:PlanProjectType
467 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; 564 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
468 rdfs:label "Plan project type"^^xsd:string ; 565 rdfs:label "Plan project type"^^xsd:string ;
469 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier . 566 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS10012097710> .
470 567
471 ILAP:PlannedActivity 568 ILAP:PlannedActivity
472 rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 569 rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
...@@ -474,13 +571,20 @@ ILAP:PlannedActivity ...@@ -474,13 +571,20 @@ ILAP:PlannedActivity
474 rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; 571 rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ;
475 rdfs:subClassOf 572 rdfs:subClassOf
476 [ rdf:type owl:Restriction ; 573 [ rdf:type owl:Restriction ;
477 - owl:allValuesFrom ILAP:ResourceProfile ; 574 + owl:maxQualifiedCardinality
478 - owl:onProperty ILAP:hasActivityResourceProfile 575 + "1"^^xsd:nonNegativeInteger ;
576 + owl:onClass ILAP:ProjectExecutionPlan ;
577 + owl:onProperty ILAP:hasActivityPlan
479 ] ; 578 ] ;
480 rdfs:subClassOf 579 rdfs:subClassOf
481 [ rdf:type owl:Restriction ; 580 [ rdf:type owl:Restriction ;
482 - owl:allValuesFrom ILAP:ActivityDependency ; 581 + owl:allValuesFrom ILAP:Location ;
483 - owl:onProperty ILAP:hasActivityPredecessor 582 + owl:onProperty ILAP:hasActivityLocation
583 + ] ;
584 + rdfs:subClassOf
585 + [ rdf:type owl:Restriction ;
586 + owl:allValuesFrom ILAP:ResourceProfile ;
587 + owl:onProperty ILAP:hasActivityResourceProfile
484 ] ; 588 ] ;
485 rdfs:subClassOf 589 rdfs:subClassOf
486 [ rdf:type owl:Restriction ; 590 [ rdf:type owl:Restriction ;
...@@ -489,8 +593,10 @@ ILAP:PlannedActivity ...@@ -489,8 +593,10 @@ ILAP:PlannedActivity
489 ] ; 593 ] ;
490 rdfs:subClassOf 594 rdfs:subClassOf
491 [ rdf:type owl:Restriction ; 595 [ rdf:type owl:Restriction ;
492 - owl:allValuesFrom ILAP:ResponsiblePerson ; 596 + owl:maxQualifiedCardinality
493 - owl:onProperty ILAP:hasActivityResponsiblePerson 597 + "1"^^xsd:nonNegativeInteger ;
598 + owl:onClass ILAP:Facility ;
599 + owl:onProperty ILAP:hasPlatform
494 ] ; 600 ] ;
495 rdfs:subClassOf 601 rdfs:subClassOf
496 [ rdf:type owl:Restriction ; 602 [ rdf:type owl:Restriction ;
...@@ -499,13 +605,8 @@ ILAP:PlannedActivity ...@@ -499,13 +605,8 @@ ILAP:PlannedActivity
499 ] ; 605 ] ;
500 rdfs:subClassOf 606 rdfs:subClassOf
501 [ rdf:type owl:Restriction ; 607 [ rdf:type owl:Restriction ;
502 - owl:allValuesFrom ILAP:Location ;
503 - owl:onProperty ILAP:hasActivityLocation
504 - ] ;
505 - rdfs:subClassOf
506 - [ rdf:type owl:Restriction ;
507 owl:allValuesFrom ILAP:ActivityDependency ; 608 owl:allValuesFrom ILAP:ActivityDependency ;
508 - owl:onProperty ILAP:hasActivitySuccessor 609 + owl:onProperty ILAP:hasActivityPredecessor
509 ] ; 610 ] ;
510 rdfs:subClassOf 611 rdfs:subClassOf
511 [ rdf:type owl:Restriction ; 612 [ rdf:type owl:Restriction ;
...@@ -514,15 +615,18 @@ ILAP:PlannedActivity ...@@ -514,15 +615,18 @@ ILAP:PlannedActivity
514 ] ; 615 ] ;
515 rdfs:subClassOf 616 rdfs:subClassOf
516 [ rdf:type owl:Restriction ; 617 [ rdf:type owl:Restriction ;
517 - owl:maxQualifiedCardinality 618 + owl:allValuesFrom ILAP:ResponsiblePerson ;
518 - "1"^^xsd:nonNegativeInteger ; 619 + owl:onProperty ILAP:hasActivityResponsiblePerson
519 - owl:onClass ILAP:ProjectExecutionPlan ; 620 + ] ;
520 - owl:onProperty ILAP:hasActivityPlan 621 + rdfs:subClassOf
622 + [ rdf:type owl:Restriction ;
623 + owl:allValuesFrom ILAP:ActivityDependency ;
624 + owl:onProperty ILAP:hasActivitySuccessor
521 ] . 625 ] .
522 626
523 ILAP:PlannedMilestone 627 ILAP:PlannedMilestone
524 rdf:type owl:Class ; 628 rdf:type owl:Class ;
525 - rdfs:label "Planned milestone"^^xsd:string ; 629 + rdfs:label "Planned Milestone"^^xsd:string ;
526 rdfs:subClassOf ILAP:Milestone . 630 rdfs:subClassOf ILAP:Milestone .
527 631
528 ILAP:PlanningApplication 632 ILAP:PlanningApplication
...@@ -535,24 +639,23 @@ ILAP:Portfolio ...@@ -535,24 +639,23 @@ ILAP:Portfolio
535 rdfs:label "Portfolio"^^xsd:string ; 639 rdfs:label "Portfolio"^^xsd:string ;
536 rdfs:subClassOf ILAP:Project . 640 rdfs:subClassOf ILAP:Project .
537 641
642 +ILAP:ProductionShutdown
643 + rdf:type ILAP:ShutdownContent ;
644 + rdfs:label "Production Shutdown"^^xsd:string .
645 +
538 ILAP:Programme 646 ILAP:Programme
539 rdf:type owl:Class ; 647 rdf:type owl:Class ;
540 rdfs:label "Programme"^^xsd:string ; 648 rdfs:label "Programme"^^xsd:string ;
541 rdfs:subClassOf ILAP:Project . 649 rdfs:subClassOf ILAP:Project .
542 650
543 ILAP:Project 651 ILAP:Project
544 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 652 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
545 rdfs:label "Project"^^xsd:string ; 653 rdfs:label "Project"^^xsd:string ;
546 rdfs:subClassOf ILAP:Activity ; 654 rdfs:subClassOf ILAP:Activity ;
547 rdfs:subClassOf 655 rdfs:subClassOf
548 [ rdf:type owl:Restriction ; 656 [ rdf:type owl:Restriction ;
549 - owl:allValuesFrom ILAP:Project ; 657 + owl:allValuesFrom BRREG:OilCompany ;
550 - owl:onProperty ILAP:hasProjectSubproject 658 + owl:onProperty ILAP:hasProjectResponsible
551 - ] ;
552 - rdfs:subClassOf
553 - [ rdf:type owl:Restriction ;
554 - owl:allValuesFrom ILAP:ExternalReference ;
555 - owl:onProperty ILAP:hasExternalReference
556 ] ; 659 ] ;
557 rdfs:subClassOf 660 rdfs:subClassOf
558 [ rdf:type owl:Restriction ; 661 [ rdf:type owl:Restriction ;
...@@ -563,8 +666,13 @@ ILAP:Project ...@@ -563,8 +666,13 @@ ILAP:Project
563 ] ; 666 ] ;
564 rdfs:subClassOf 667 rdfs:subClassOf
565 [ rdf:type owl:Restriction ; 668 [ rdf:type owl:Restriction ;
566 - owl:allValuesFrom BRREG:OilCompany ; 669 + owl:allValuesFrom ILAP:ExternalReference ;
567 - owl:onProperty ILAP:hasProjectResponsible 670 + owl:onProperty ILAP:hasExternalReference
671 + ] ;
672 + rdfs:subClassOf
673 + [ rdf:type owl:Restriction ;
674 + owl:allValuesFrom ILAP:Project ;
675 + owl:onProperty ILAP:hasProjectSubproject
568 ] . 676 ] .
569 677
570 ILAP:ProjectExecutionPlan 678 ILAP:ProjectExecutionPlan
...@@ -573,72 +681,72 @@ ILAP:ProjectExecutionPlan ...@@ -573,72 +681,72 @@ ILAP:ProjectExecutionPlan
573 rdfs:subClassOf ILAP:Network ; 681 rdfs:subClassOf ILAP:Network ;
574 rdfs:subClassOf 682 rdfs:subClassOf
575 [ rdf:type owl:Restriction ; 683 [ rdf:type owl:Restriction ;
576 - owl:onProperty ILAP:hasPlanLevel ; 684 + owl:allValuesFrom ILAP:PlanContractType ;
577 - owl:someValuesFrom ILAP:PlanLevel 685 + owl:onProperty ILAP:hasPlanContractType
578 ] ; 686 ] ;
579 rdfs:subClassOf 687 rdfs:subClassOf
580 [ rdf:type owl:Restriction ; 688 [ rdf:type owl:Restriction ;
581 - owl:allValuesFrom ILAP:PlanObjectiveType ; 689 + owl:maxQualifiedCardinality
582 - owl:onProperty ILAP:hasPlanObjectiveType 690 + "1"^^xsd:nonNegativeInteger ;
691 + owl:onClass ILAP:PlanLevel ;
692 + owl:onProperty ILAP:hasPlanLevel
583 ] ; 693 ] ;
584 rdfs:subClassOf 694 rdfs:subClassOf
585 [ rdf:type owl:Restriction ; 695 [ rdf:type owl:Restriction ;
586 - owl:maxQualifiedCardinality 696 + owl:onProperty ILAP:hasPlanProjectType ;
587 - "1"^^xsd:nonNegativeInteger ; 697 + owl:someValuesFrom ILAP:PlanProjectType
588 - owl:onClass ILAP:Project ;
589 - owl:onProperty ILAP:hasPlanProject
590 ] ; 698 ] ;
591 rdfs:subClassOf 699 rdfs:subClassOf
592 [ rdf:type owl:Restriction ; 700 [ rdf:type owl:Restriction ;
593 - owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; 701 + owl:allValuesFrom BRREG:LegalEntity ;
594 - owl:onProperty ILAP:hasPlanAsset 702 + owl:onProperty ILAP:hasPlanResponsible
595 ] ; 703 ] ;
596 rdfs:subClassOf 704 rdfs:subClassOf
597 [ rdf:type owl:Restriction ; 705 [ rdf:type owl:Restriction ;
598 - owl:onProperty ILAP:hasPlanContentType ; 706 + owl:allValuesFrom ILAP:PlanLifecycleStage ;
599 - owl:someValuesFrom ILAP:PlanContentType 707 + owl:onProperty ILAP:hasPlanLifecycleStage
600 ] ; 708 ] ;
601 rdfs:subClassOf 709 rdfs:subClassOf
602 [ rdf:type owl:Restriction ; 710 [ rdf:type owl:Restriction ;
603 - owl:allValuesFrom ILAP:ProjectExecutionPlan ; 711 + owl:onProperty ILAP:hasPlanGeoArea ;
604 - owl:onProperty ILAP:hasPlanRollUpPlan 712 + owl:someValuesFrom ILAP:PlanGeoArea
605 ] ; 713 ] ;
606 rdfs:subClassOf 714 rdfs:subClassOf
607 [ rdf:type owl:Restriction ; 715 [ rdf:type owl:Restriction ;
608 - owl:allValuesFrom BRREG:LegalEntity ; 716 + owl:onProperty ILAP:hasPlanContentType ;
609 - owl:onProperty ILAP:hasPlanResponsible 717 + owl:someValuesFrom ILAP:PlanContentType
610 ] ; 718 ] ;
611 rdfs:subClassOf 719 rdfs:subClassOf
612 [ rdf:type owl:Restriction ; 720 [ rdf:type owl:Restriction ;
613 - owl:allValuesFrom ILAP:ProjectExecutionPlan ; 721 + owl:allValuesFrom ILAP:PlanObjectiveType ;
614 - owl:onProperty ILAP:hasPlanSubplan 722 + owl:onProperty ILAP:hasPlanObjectiveType
615 ] ; 723 ] ;
616 rdfs:subClassOf 724 rdfs:subClassOf
617 [ rdf:type owl:Restriction ; 725 [ rdf:type owl:Restriction ;
618 - owl:onProperty ILAP:hasPlanProjectType ; 726 + owl:maxQualifiedCardinality
619 - owl:someValuesFrom ILAP:PlanProjectType 727 + "1"^^xsd:nonNegativeInteger ;
728 + owl:onClass ILAP:Project ;
729 + owl:onProperty ILAP:hasPlanProject
620 ] ; 730 ] ;
621 rdfs:subClassOf 731 rdfs:subClassOf
622 [ rdf:type owl:Restriction ; 732 [ rdf:type owl:Restriction ;
623 - owl:onProperty ILAP:hasPlanGeoArea ; 733 + owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ;
624 - owl:someValuesFrom ILAP:PlanGeoArea 734 + owl:onProperty ILAP:hasPlanAsset
625 ] ; 735 ] ;
626 rdfs:subClassOf 736 rdfs:subClassOf
627 [ rdf:type owl:Restriction ; 737 [ rdf:type owl:Restriction ;
628 - owl:allValuesFrom ILAP:PlanContractType ; 738 + owl:onProperty ILAP:hasPlanLevel ;
629 - owl:onProperty ILAP:hasPlanContractType 739 + owl:someValuesFrom ILAP:PlanLevel
630 ] ; 740 ] ;
631 rdfs:subClassOf 741 rdfs:subClassOf
632 [ rdf:type owl:Restriction ; 742 [ rdf:type owl:Restriction ;
633 - owl:allValuesFrom ILAP:PlanLifecycleStage ; 743 + owl:allValuesFrom ILAP:ProjectExecutionPlan ;
634 - owl:onProperty ILAP:hasPlanLifecycleStage 744 + owl:onProperty ILAP:hasPlanSubplan
635 ] ; 745 ] ;
636 rdfs:subClassOf 746 rdfs:subClassOf
637 [ rdf:type owl:Restriction ; 747 [ rdf:type owl:Restriction ;
638 - owl:maxQualifiedCardinality 748 + owl:allValuesFrom ILAP:ProjectExecutionPlan ;
639 - "1"^^xsd:nonNegativeInteger ; 749 + owl:onProperty ILAP:hasPlanRollUpPlan
640 - owl:onClass ILAP:PlanLevel ;
641 - owl:onProperty ILAP:hasPlanLevel
642 ] . 750 ] .
643 751
644 ILAP:ProjectType 752 ILAP:ProjectType
...@@ -647,14 +755,22 @@ ILAP:ProjectType ...@@ -647,14 +755,22 @@ ILAP:ProjectType
647 rdfs:subClassOf owl:Thing . 755 rdfs:subClassOf owl:Thing .
648 756
649 ILAP:Regular8To16WorkingDayCalendar 757 ILAP:Regular8To16WorkingDayCalendar
650 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; 758 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
651 rdfs:label "Regular8To16Working day calendar"^^xsd:string ; 759 rdfs:label "Regular8To16Working day calendar"^^xsd:string ;
652 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS7014210> . 760 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> .
761 +
762 +ILAP:RemovalOfBarriers
763 + rdf:type ILAP:RiskType ;
764 + rdfs:label "Removal of barriers"^^xsd:string .
765 +
766 +ILAP:ReservoirDrillingOperation
767 + rdf:type ILAP:RiskType ;
768 + rdfs:label "Reservoir drilling operation"^^xsd:string .
653 769
654 ILAP:Resource 770 ILAP:Resource
655 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ; 771 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ;
656 rdfs:label "Resource"^^xsd:string ; 772 rdfs:label "Resource"^^xsd:string ;
657 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS47466180194> , owl:Thing . 773 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> .
658 774
659 ILAP:ResourceEstimate 775 ILAP:ResourceEstimate
660 rdf:type owl:Class ; 776 rdf:type owl:Class ;
...@@ -662,14 +778,14 @@ ILAP:ResourceEstimate ...@@ -662,14 +778,14 @@ ILAP:ResourceEstimate
662 rdfs:subClassOf ILAP:ResourceStructure . 778 rdfs:subClassOf ILAP:ResourceStructure .
663 779
664 ILAP:ResourceProfile 780 ILAP:ResourceProfile
665 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> , owl:Class ; 781 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ;
666 rdfs:label "Resource profile"^^xsd:string ; 782 rdfs:label "Resource profile"^^xsd:string ;
667 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing . 783 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1685084301> .
668 784
669 ILAP:ResourceProfilePoint 785 ILAP:ResourceProfilePoint
670 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ; 786 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ;
671 rdfs:label "resource Profile point"^^xsd:string ; 787 rdfs:label "resource Profile point"^^xsd:string ;
672 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2213258891> , owl:Thing . 788 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> .
673 789
674 ILAP:ResourceStructure 790 ILAP:ResourceStructure
675 rdf:type owl:Class ; 791 rdf:type owl:Class ;
...@@ -677,17 +793,17 @@ ILAP:ResourceStructure ...@@ -677,17 +793,17 @@ ILAP:ResourceStructure
677 rdfs:subClassOf ILAP:Network . 793 rdfs:subClassOf ILAP:Network .
678 794
679 ILAP:ResponsibleOrganization 795 ILAP:ResponsibleOrganization
680 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; 796 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
681 rdfs:label "Responsible organization"^^xsd:string ; 797 rdfs:label "Responsible organization"^^xsd:string ;
682 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS282149> , owl:Thing . 798 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS282149> .
683 799
684 ILAP:ResponsiblePerson 800 ILAP:ResponsiblePerson
685 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> , owl:Class ; 801 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ;
686 rdfs:label "Responsible"^^xsd:string ; 802 rdfs:label "Responsible"^^xsd:string ;
687 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS413954> , owl:Thing . 803 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS413954> .
688 804
689 ILAP:Result 805 ILAP:Result
690 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; 806 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
691 rdfs:label "Result"^^xsd:string ; 807 rdfs:label "Result"^^xsd:string ;
692 rdfs:subClassOf owl:Thing . 808 rdfs:subClassOf owl:Thing .
693 809
...@@ -696,15 +812,28 @@ ILAP:RevisedSchedule ...@@ -696,15 +812,28 @@ ILAP:RevisedSchedule
696 rdfs:label "Revised schedule"^^xsd:string ; 812 rdfs:label "Revised schedule"^^xsd:string ;
697 rdfs:subClassOf ILAP:Schedule . 813 rdfs:subClassOf ILAP:Schedule .
698 814
815 +ILAP:Revision_Shutdown
816 + rdf:type ILAP:ShutdownType ;
817 + rdfs:label "Revision Shutdown"^^xsd:string .
818 +
699 ILAP:RiskFactor 819 ILAP:RiskFactor
700 rdf:type owl:Class ; 820 rdf:type owl:Class ;
701 rdfs:label "Risk factor"^^xsd:string ; 821 rdfs:label "Risk factor"^^xsd:string ;
702 rdfs:subClassOf owl:Thing . 822 rdfs:subClassOf owl:Thing .
703 823
824 +ILAP:RiskType
825 + rdf:type owl:Class ;
826 + rdfs:label "Risk type"^^xsd:string ;
827 + rdfs:subClassOf owl:Thing .
828 +
829 +ILAP:Safety_Test_Shutdown
830 + rdf:type ILAP:ShutdownContent ;
831 + rdfs:label "Safety Test Shutdown"^^xsd:string .
832 +
704 ILAP:Schedule 833 ILAP:Schedule
705 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 834 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
706 rdfs:label "Scheduled Activity Network"^^xsd:string ; 835 rdfs:label "Scheduled Activity Network"^^xsd:string ;
707 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS333764> , ILAP:Network ; 836 + rdfs:subClassOf ILAP:Network , <http://posccaesar.org/rdl/RDS333764> ;
708 rdfs:subClassOf 837 rdfs:subClassOf
709 [ rdf:type owl:Restriction ; 838 [ rdf:type owl:Restriction ;
710 owl:maxQualifiedCardinality 839 owl:maxQualifiedCardinality
...@@ -714,41 +843,74 @@ ILAP:Schedule ...@@ -714,41 +843,74 @@ ILAP:Schedule
714 ] . 843 ] .
715 844
716 ILAP:ScheduledActivity 845 ILAP:ScheduledActivity
717 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 846 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
718 rdfs:label "Activity in Network Schedule"^^xsd:string ; 847 rdfs:label "Activity in Network Schedule"^^xsd:string ;
719 rdfs:subClassOf ILAP:PlannedActivity ; 848 rdfs:subClassOf ILAP:PlannedActivity ;
720 rdfs:subClassOf 849 rdfs:subClassOf
721 [ rdf:type owl:Restriction ; 850 [ rdf:type owl:Restriction ;
722 owl:maxQualifiedCardinality 851 owl:maxQualifiedCardinality
723 "1"^^xsd:nonNegativeInteger ; 852 "1"^^xsd:nonNegativeInteger ;
724 - owl:onClass ILAP:Schedule ; 853 + owl:onClass ILAP:PlannedActivity ;
725 - owl:onProperty ILAP:hasActivitySchedule 854 + owl:onProperty ILAP:hasActivityInScheduleActivityInPlan
726 ] ; 855 ] ;
727 rdfs:subClassOf 856 rdfs:subClassOf
728 [ rdf:type owl:Restriction ; 857 [ rdf:type owl:Restriction ;
729 owl:maxQualifiedCardinality 858 owl:maxQualifiedCardinality
730 "1"^^xsd:nonNegativeInteger ; 859 "1"^^xsd:nonNegativeInteger ;
731 - owl:onClass ILAP:PlannedActivity ; 860 + owl:onClass ILAP:Schedule ;
732 - owl:onProperty ILAP:hasActivityInScheduleActivityInPlan 861 + owl:onProperty ILAP:hasActivitySchedule
733 ] . 862 ] .
734 863
735 ILAP:ScheduledMilestone 864 ILAP:ScheduledMilestone
736 rdf:type owl:Class ; 865 rdf:type owl:Class ;
737 - rdfs:label "Scheduled milestone"^^xsd:string ; 866 + rdfs:label "Scheduled Milestone"^^xsd:string ;
738 rdfs:subClassOf ILAP:PlannedMilestone . 867 rdfs:subClassOf ILAP:PlannedMilestone .
739 868
869 +ILAP:Scheduled_Shutdown
870 + rdf:type ILAP:ShutdownType ;
871 + rdfs:label "Scheduled Shutdown"^^xsd:string .
872 +
873 +ILAP:ShallowGasOperation
874 + rdf:type ILAP:RiskType ;
875 + rdfs:label "Shallow gas operation"^^xsd:string .
876 +
740 ILAP:Shutdown 877 ILAP:Shutdown
741 rdf:type owl:Class ; 878 rdf:type owl:Class ;
742 rdfs:label "Shutdown"^^xsd:string ; 879 rdfs:label "Shutdown"^^xsd:string ;
743 rdfs:subClassOf owl:Thing . 880 rdfs:subClassOf owl:Thing .
744 881
882 +ILAP:ShutdownContent
883 + rdf:type owl:Class ;
884 + rdfs:label "Shutdown content"^^xsd:string ;
885 + rdfs:subClassOf owl:Thing .
886 +
887 +ILAP:ShutdownOperation
888 + rdf:type owl:Class ;
889 + rdfs:label "Shutdown operation"^^xsd:string ;
890 + rdfs:subClassOf owl:Thing .
891 +
892 +ILAP:ShutdownPeriod
893 + rdf:type owl:Class ;
894 + rdfs:label "Shutdown period"^^xsd:string ;
895 + rdfs:subClassOf owl:Thing .
896 +
897 +ILAP:ShutdownPriority
898 + rdf:type owl:Class ;
899 + rdfs:label "Shutdown priority"^^xsd:string ;
900 + rdfs:subClassOf owl:Thing .
901 +
902 +ILAP:ShutdownType
903 + rdf:type owl:Class ;
904 + rdfs:label "Shutdown type"^^xsd:string ;
905 + rdfs:subClassOf owl:Thing .
906 +
745 ILAP:Shutdown_1 907 ILAP:Shutdown_1
746 rdf:type ILAP:Shutdown ; 908 rdf:type ILAP:Shutdown ;
747 rdfs:label "Shutdown 1"^^xsd:string ; 909 rdfs:label "Shutdown 1"^^xsd:string ;
748 <http://data.posccaesar.org/ilap/shutdown/hasShutdownContent> 910 <http://data.posccaesar.org/ilap/shutdown/hasShutdownContent>
749 <http://data.posccaesar.org/ilap/shutdown/ProductionShutdown> ; 911 <http://data.posccaesar.org/ilap/shutdown/ProductionShutdown> ;
750 <http://data.posccaesar.org/ilap/shutdown/hasShutdownOperation> 912 <http://data.posccaesar.org/ilap/shutdown/hasShutdownOperation>
751 - <http://data.posccaesar.org/ilap/shutdown/Dependent_on_Shutdown> , <http://data.posccaesar.org/ilap/shutdown/During_Shutdown> ; 913 + <http://data.posccaesar.org/ilap/shutdown/During_Shutdown> , <http://data.posccaesar.org/ilap/shutdown/Dependent_on_Shutdown> ;
752 <http://data.posccaesar.org/ilap/shutdown/hasShutdownPeriod> 914 <http://data.posccaesar.org/ilap/shutdown/hasShutdownPeriod>
753 <http://data.posccaesar.org/ilap/shutdown/Shutdown_Period> ; 915 <http://data.posccaesar.org/ilap/shutdown/Shutdown_Period> ;
754 <http://data.posccaesar.org/ilap/shutdown/hasShutdownPriority> 916 <http://data.posccaesar.org/ilap/shutdown/hasShutdownPriority>
...@@ -756,10 +918,18 @@ ILAP:Shutdown_1 ...@@ -756,10 +918,18 @@ ILAP:Shutdown_1
756 <http://data.posccaesar.org/ilap/shutdown/hasShutdownType> 918 <http://data.posccaesar.org/ilap/shutdown/hasShutdownType>
757 <http://data.posccaesar.org/ilap/shutdown/Scheduled_Shutdown> . 919 <http://data.posccaesar.org/ilap/shutdown/Scheduled_Shutdown> .
758 920
921 +ILAP:Shutdown_Period
922 + rdf:type ILAP:ShutdownPeriod ;
923 + rdfs:label "Shutdown Period"^^xsd:string .
924 +
925 +ILAP:Shutdown_not_evaluated
926 + rdf:type ILAP:ShutdownOperation ;
927 + rdfs:label "Shutdown not evaluated"^^xsd:string .
928 +
759 ILAP:Source 929 ILAP:Source
760 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; 930 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
761 rdfs:label "Source"^^xsd:string ; 931 rdfs:label "Source"^^xsd:string ;
762 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13103560> , owl:Thing . 932 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> .
763 933
764 ILAP:SourceSpecifiedUserField 934 ILAP:SourceSpecifiedUserField
765 rdf:type owl:Class ; 935 rdf:type owl:Class ;
...@@ -772,22 +942,26 @@ ILAP:SpecifiedUserField ...@@ -772,22 +942,26 @@ ILAP:SpecifiedUserField
772 rdfs:subClassOf ILAP:UserField . 942 rdfs:subClassOf ILAP:UserField .
773 943
774 ILAP:StartToFinish 944 ILAP:StartToFinish
775 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 945 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
776 rdfs:label "Start to finish"^^xsd:string ; 946 rdfs:label "Start to finish"^^xsd:string ;
777 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . 947 + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> .
778 948
779 ILAP:StartToStart 949 ILAP:StartToStart
780 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 950 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
781 rdfs:label "Start to start"^^xsd:string ; 951 rdfs:label "Start to start"^^xsd:string ;
782 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . 952 + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> .
783 953
784 ILAP:Status 954 ILAP:Status
785 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> ; 955 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ;
786 rdfs:label "Status"^^xsd:string ; 956 rdfs:label "Status"^^xsd:string ;
787 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS427322951> . 957 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing .
958 +
959 +ILAP:System_Shutdown
960 + rdf:type ILAP:ShutdownContent ;
961 + rdfs:label "System Shutdown"^^xsd:string .
788 962
789 ILAP:TargetSchedule 963 ILAP:TargetSchedule
790 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 964 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
791 rdfs:label "Target schedule"^^xsd:string ; 965 rdfs:label "Target schedule"^^xsd:string ;
792 rdfs:subClassOf ILAP:Schedule . 966 rdfs:subClassOf ILAP:Schedule .
793 967
...@@ -796,13 +970,17 @@ ILAP:Timebased ...@@ -796,13 +970,17 @@ ILAP:Timebased
796 rdfs:label "Timebased"^^xsd:string ; 970 rdfs:label "Timebased"^^xsd:string ;
797 rdfs:subClassOf ILAP:Resource . 971 rdfs:subClassOf ILAP:Resource .
798 972
973 +ILAP:Train_Shutdown
974 + rdf:type ILAP:ShutdownContent ;
975 + rdfs:label "Train Shutdown"^^xsd:string .
976 +
799 ILAP:UnitBased 977 ILAP:UnitBased
800 rdf:type owl:Class ; 978 rdf:type owl:Class ;
801 rdfs:label "Unit based"^^xsd:string ; 979 rdfs:label "Unit based"^^xsd:string ;
802 rdfs:subClassOf ILAP:Resource . 980 rdfs:subClassOf ILAP:Resource .
803 981
804 ILAP:UserField 982 ILAP:UserField
805 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; 983 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ;
806 rdfs:label "User field"^^xsd:string ; 984 rdfs:label "User field"^^xsd:string ;
807 rdfs:subClassOf ILAP:Data ; 985 rdfs:subClassOf ILAP:Data ;
808 rdfs:subClassOf 986 rdfs:subClassOf
...@@ -816,12 +994,28 @@ ILAP:UserField ...@@ -816,12 +994,28 @@ ILAP:UserField
816 ILAP:Value 994 ILAP:Value
817 rdf:type owl:Class ; 995 rdf:type owl:Class ;
818 rdfs:label "Value"^^xsd:string ; 996 rdfs:label "Value"^^xsd:string ;
819 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945844> , owl:Thing . 997 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945844> .
998 +
999 +ILAP:VesselOperation
1000 + rdf:type ILAP:RiskType ;
1001 + rdfs:label "Vessel operation"^^xsd:string .
1002 +
1003 +ILAP:Water_Injection_Shutdown
1004 + rdf:type ILAP:ShutdownContent ;
1005 + rdfs:label "Water Injection Shutdown"^^xsd:string .
1006 +
1007 +ILAP:Water_Production_Shutdown
1008 + rdf:type ILAP:ShutdownContent ;
1009 + rdfs:label "Water Production Shutdown"^^xsd:string .
820 1010
821 ILAP:WeekendsFreeCalendar 1011 ILAP:WeekendsFreeCalendar
822 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 1012 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
823 rdfs:label "Weekends free calendar"^^xsd:string ; 1013 rdfs:label "Weekends free calendar"^^xsd:string ;
824 - rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> . 1014 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:Calendar .
1015 +
1016 +ILAP:Well_Transfer
1017 + rdf:type ILAP:ShutdownContent ;
1018 + rdfs:label "Well Transfer "^^xsd:string .
825 1019
826 ILAP:WorkOrder 1020 ILAP:WorkOrder
827 rdf:type owl:Class ; 1021 rdf:type owl:Class ;
...@@ -829,18 +1023,18 @@ ILAP:WorkOrder ...@@ -829,18 +1023,18 @@ ILAP:WorkOrder
829 rdfs:subClassOf ILAP:WorkTask . 1023 rdfs:subClassOf ILAP:WorkTask .
830 1024
831 ILAP:WorkTask 1025 ILAP:WorkTask
832 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 1026 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
833 rdfs:label "Work task"^^xsd:string ; 1027 rdfs:label "Work task"^^xsd:string ;
834 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS3149> ; 1028 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , owl:Thing ;
835 rdfs:subClassOf 1029 rdfs:subClassOf
836 [ rdf:type owl:Restriction ; 1030 [ rdf:type owl:Restriction ;
837 - owl:onProperty ILAP:hasWorkTaskActivity ; 1031 + owl:allValuesFrom BRREG:LegalEntity ;
838 - owl:someValuesFrom ILAP:Activity 1032 + owl:onProperty ILAP:hasWorkTaskResponsible
839 ] ; 1033 ] ;
840 rdfs:subClassOf 1034 rdfs:subClassOf
841 [ rdf:type owl:Restriction ; 1035 [ rdf:type owl:Restriction ;
842 - owl:allValuesFrom BRREG:LegalEntity ; 1036 + owl:onProperty ILAP:hasWorkTaskActivity ;
843 - owl:onProperty ILAP:hasWorkTaskResponsible 1037 + owl:someValuesFrom ILAP:Activity
844 ] . 1038 ] .
845 1039
846 ILAP:WorkTaskStatus 1040 ILAP:WorkTaskStatus
...@@ -936,7 +1130,7 @@ ILAP:hasActivityPhysicalPercentComplete ...@@ -936,7 +1130,7 @@ ILAP:hasActivityPhysicalPercentComplete
936 rdfs:range xsd:float . 1130 rdfs:range xsd:float .
937 1131
938 ILAP:hasActivityPlan 1132 ILAP:hasActivityPlan
939 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1133 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
940 rdfs:domain ILAP:PlannedActivity ; 1134 rdfs:domain ILAP:PlannedActivity ;
941 rdfs:label "has activity plan"^^xsd:string ; 1135 rdfs:label "has activity plan"^^xsd:string ;
942 rdfs:range ILAP:ProjectExecutionPlan . 1136 rdfs:range ILAP:ProjectExecutionPlan .
...@@ -984,7 +1178,7 @@ ILAP:hasActivityResponsibleOrganization ...@@ -984,7 +1178,7 @@ ILAP:hasActivityResponsibleOrganization
984 rdfs:range ILAP:ResponsibleOrganization . 1178 rdfs:range ILAP:ResponsibleOrganization .
985 1179
986 ILAP:hasActivityResponsiblePerson 1180 ILAP:hasActivityResponsiblePerson
987 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1181 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
988 rdfs:domain ILAP:PlannedActivity ; 1182 rdfs:domain ILAP:PlannedActivity ;
989 rdfs:label "has activity responsible"^^xsd:string ; 1183 rdfs:label "has activity responsible"^^xsd:string ;
990 rdfs:range ILAP:ResponsiblePerson . 1184 rdfs:range ILAP:ResponsiblePerson .
...@@ -1019,7 +1213,7 @@ ILAP:hasActivityStatus ...@@ -1019,7 +1213,7 @@ ILAP:hasActivityStatus
1019 rdfs:range ILAP:Status . 1213 rdfs:range ILAP:Status .
1020 1214
1021 ILAP:hasActivitySuccessor 1215 ILAP:hasActivitySuccessor
1022 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1216 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
1023 rdfs:domain ILAP:PlannedActivity ; 1217 rdfs:domain ILAP:PlannedActivity ;
1024 rdfs:label "has activity successor"^^xsd:string ; 1218 rdfs:label "has activity successor"^^xsd:string ;
1025 rdfs:range ILAP:ActivityDependency ; 1219 rdfs:range ILAP:ActivityDependency ;
...@@ -1080,7 +1274,7 @@ ILAP:hasCalendarDate ...@@ -1080,7 +1274,7 @@ ILAP:hasCalendarDate
1080 rdfs:label "has calendar date"^^xsd:string . 1274 rdfs:label "has calendar date"^^xsd:string .
1081 1275
1082 ILAP:hasCalendarFreePeriod 1276 ILAP:hasCalendarFreePeriod
1083 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1277 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
1084 rdfs:domain ILAP:Calendar ; 1278 rdfs:domain ILAP:Calendar ;
1085 rdfs:label "has calendarcalendar free period"^^xsd:string ; 1279 rdfs:label "has calendarcalendar free period"^^xsd:string ;
1086 rdfs:range ILAP:CalendarFreePeriod . 1280 rdfs:range ILAP:CalendarFreePeriod .
...@@ -1222,7 +1416,7 @@ ILAP:hasLocationLongitude ...@@ -1222,7 +1416,7 @@ ILAP:hasLocationLongitude
1222 ILAP:hasMilestonePredecessor 1416 ILAP:hasMilestonePredecessor
1223 rdf:type owl:ObjectProperty ; 1417 rdf:type owl:ObjectProperty ;
1224 rdfs:domain ILAP:Milestone ; 1418 rdfs:domain ILAP:Milestone ;
1225 - rdfs:label "has Milestone Predecessor"^^xsd:string ; 1419 + rdfs:label "has milestone predecessor"^^xsd:string ;
1226 rdfs:range ILAP:ActivityDependency . 1420 rdfs:range ILAP:ActivityDependency .
1227 1421
1228 ILAP:hasMilestoneSuccessor 1422 ILAP:hasMilestoneSuccessor
...@@ -1363,7 +1557,7 @@ ILAP:hasPlanRegulator ...@@ -1363,7 +1557,7 @@ ILAP:hasPlanRegulator
1363 rdfs:subPropertyOf ILAP:hasPlanResponsible . 1557 rdfs:subPropertyOf ILAP:hasPlanResponsible .
1364 1558
1365 ILAP:hasPlanResponsible 1559 ILAP:hasPlanResponsible
1366 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1560 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
1367 rdfs:domain ILAP:ResponsibleOrganization ; 1561 rdfs:domain ILAP:ResponsibleOrganization ;
1368 rdfs:label "has plan responsible"^^xsd:string . 1562 rdfs:label "has plan responsible"^^xsd:string .
1369 1563
...@@ -1392,6 +1586,10 @@ ILAP:hasPlanUserField ...@@ -1392,6 +1586,10 @@ ILAP:hasPlanUserField
1392 rdfs:label "has plan user field"^^xsd:string ; 1586 rdfs:label "has plan user field"^^xsd:string ;
1393 rdfs:range ILAP:UserField . 1587 rdfs:range ILAP:UserField .
1394 1588
1589 +ILAP:hasPlatform
1590 + rdf:type owl:ObjectProperty ;
1591 + rdfs:label "has platform"^^xsd:string .
1592 +
1395 ILAP:hasPredecessorActivity 1593 ILAP:hasPredecessorActivity
1396 rdf:type owl:ObjectProperty ; 1594 rdf:type owl:ObjectProperty ;
1397 rdfs:domain ILAP:ActivityDependency ; 1595 rdfs:domain ILAP:ActivityDependency ;
...@@ -1522,7 +1720,7 @@ ILAP:hasScheduledStart ...@@ -1522,7 +1720,7 @@ ILAP:hasScheduledStart
1522 rdfs:subPropertyOf ILAP:hasScheduleDate . 1720 rdfs:subPropertyOf ILAP:hasScheduleDate .
1523 1721
1524 ILAP:hasSuccessorActivity 1722 ILAP:hasSuccessorActivity
1525 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1723 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
1526 rdfs:domain ILAP:ActivityDependency ; 1724 rdfs:domain ILAP:ActivityDependency ;
1527 rdfs:label "has successor activity "^^xsd:string ; 1725 rdfs:label "has successor activity "^^xsd:string ;
1528 rdfs:range ILAP:PlannedActivity ; 1726 rdfs:range ILAP:PlannedActivity ;
...@@ -1550,7 +1748,7 @@ ILAP:hasTimeNow ...@@ -1550,7 +1748,7 @@ ILAP:hasTimeNow
1550 rdf:type owl:DatatypeProperty ; 1748 rdf:type owl:DatatypeProperty ;
1551 rdfs:domain ILAP:Schedule ; 1749 rdfs:domain ILAP:Schedule ;
1552 rdfs:label "has time now"^^xsd:string ; 1750 rdfs:label "has time now"^^xsd:string ;
1553 - rdfs:range xsd:dateTime , xsd:date . 1751 + rdfs:range xsd:date , xsd:dateTime .
1554 1752
1555 ILAP:hasUserFieldName 1753 ILAP:hasUserFieldName
1556 rdf:type owl:DatatypeProperty ; 1754 rdf:type owl:DatatypeProperty ;
...@@ -1615,3 +1813,30 @@ ILAP:hasWorkTaskVendor ...@@ -1615,3 +1813,30 @@ ILAP:hasWorkTaskVendor
1615 rdfs:label "has work task vendor"^^xsd:string ; 1813 rdfs:label "has work task vendor"^^xsd:string ;
1616 rdfs:range BRREG:Contractor ; 1814 rdfs:range BRREG:Contractor ;
1617 rdfs:subPropertyOf ILAP:hasWorkTaskResponsible . 1815 rdfs:subPropertyOf ILAP:hasWorkTaskResponsible .
1816 +
1817 +<http://data.posccaesar.org/ilap/riskfactor/RiskType>
1818 + rdf:type owl:Thing .
1819 +
1820 +<http://data.posccaesar.org/ilap/riskfactor/hasRiskType>
1821 + rdfs:range ILAP:RiskType .
1822 +
1823 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownContent>
1824 + rdfs:range ILAP:ShutdownContent .
1825 +
1826 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownEnd>
1827 + rdfs:domain ILAP:ShutdownOperation .
1828 +
1829 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownOperation>
1830 + rdfs:range ILAP:ShutdownOperation .
1831 +
1832 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownPeriod>
1833 + rdfs:range ILAP:ShutdownPeriod .
1834 +
1835 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownPriority>
1836 + rdfs:range ILAP:ShutdownPriority .
1837 +
1838 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownStart>
1839 + rdfs:domain ILAP:ShutdownOperation .
1840 +
1841 +<http://data.posccaesar.org/ilap/shutdown/hasShutdownType>
1842 + rdfs:range ILAP:ShutdownType .
......
1 # baseURI: http://data.posccaesar.org/NCS_PLANNING/ 1 # baseURI: http://data.posccaesar.org/NCS_PLANNING/
2 -# imports: http:///data.posccaesar.org/ilap/PLANNING_STANDARD
3 -# imports: http://data.posccaesar.org/brreg/
4 -# imports: http://data.posccaesar.org/ccu/
5 -# imports: http://data.posccaesar.org/diskos/
6 -# imports: http://data.posccaesar.org/epcis/
7 # imports: http://data.posccaesar.org/ilap/ 2 # imports: http://data.posccaesar.org/ilap/
8 # imports: http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS 3 # imports: http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS
9 -# imports: http://data.posccaesar.org/ilap/riskfactor/
10 -# imports: http://data.posccaesar.org/ilap/shutdown/
11 -# imports: http://data.posccaesar.org/npd/
12 -# imports: http://data.posccaesar.org/pob/
13 4
14 @prefix : <http://data.posccaesar.org/NCS_PLANNING/> . 5 @prefix : <http://data.posccaesar.org/NCS_PLANNING/> .
15 @prefix ILAP: <http://data.posccaesar.org/ilap/> . 6 @prefix ILAP: <http://data.posccaesar.org/ilap/> .
16 -@prefix NCS: <http://data.posccaesar.org/NCS_PLANNING/> .
17 @prefix NPD: <http://data.posccaesar.org/npd/> . 7 @prefix NPD: <http://data.posccaesar.org/npd/> .
18 -@prefix PLANNING_STANDARD: <http:///data.posccaesar.org/ilap/PLANNING_STANDARD#> .
19 -@prefix StandardData: <http://ILAP_1.5_(git)/StandardData#> .
20 @prefix owl: <http://www.w3.org/2002/07/owl#> . 8 @prefix owl: <http://www.w3.org/2002/07/owl#> .
21 @prefix p1: <http://example.org/file1#> . 9 @prefix p1: <http://example.org/file1#> .
22 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 10 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
...@@ -25,94 +13,8 @@ ...@@ -25,94 +13,8 @@
25 @prefix shutdown: <http://data.posccaesar.org/ilap/shutdown/> . 13 @prefix shutdown: <http://data.posccaesar.org/ilap/shutdown/> .
26 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . 14 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
27 15
28 -NCS: rdf:type owl:Ontology ; 16 +: rdf:type owl:Ontology ;
29 - owl:imports <http://data.posccaesar.org/brreg/> , riskfactor: , <http://data.posccaesar.org/diskos/> , NPD: , <http://data.posccaesar.org/ccu/> , <http://data.posccaesar.org/pob/> , <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> , ILAP: , <http://data.posccaesar.org/epcis/> , <http:///data.posccaesar.org/ilap/PLANNING_STANDARD> , shutdown: . 17 + owl:imports <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> , ILAP: .
30 -
31 -NCS:DG1
32 - rdf:type ILAP:DecisionGate ;
33 - rdfs:label "DG1"^^xsd:string .
34 -
35 -NCS:DG2
36 - rdf:type ILAP:DecisionGate ;
37 - rdfs:label "DG2"^^xsd:string .
38 -
39 -NCS:DG3
40 - rdf:type ILAP:DecisionGate ;
41 - rdfs:label "DG3"^^xsd:string .
42 -
43 -NCS:DG4
44 - rdf:type ILAP:DecisionGate ;
45 - rdfs:label "DG4"^^xsd:string .
46 -
47 -NCS:DG5
48 - rdf:type ILAP:DecisionGate ;
49 - rdfs:label "DG5"^^xsd:string .
50 -
51 -NCS:DG6
52 - rdf:type ILAP:DecisionGate ;
53 - rdfs:label "DG6"^^xsd:string .
54 -
55 -NCS:DG7
56 - rdf:type ILAP:DecisionGate ;
57 - rdfs:label "DG7"^^xsd:string .
58 -
59 -NCS:Development
60 - rdf:type ILAP:PlanPhase ;
61 - rdfs:label "Development"^^xsd:string .
62 -
63 -NCS:Exploration
64 - rdf:type ILAP:PlanPhase ;
65 - rdfs:label "Exploration"^^xsd:string .
66 -
67 -NCS:HighCriticality
68 - rdf:type StandardData:Criticality ;
69 - rdfs:label "High criticality"^^xsd:string .
70 -
71 -NCS:HighPriority
72 - rdf:type StandardData:Priority ;
73 - rdfs:label "High priority"^^xsd:string .
74 -
75 -NCS:LowCriticality
76 - rdf:type StandardData:Criticality ;
77 - rdfs:label "Low criticality"^^xsd:string .
78 -
79 -NCS:LowPriority
80 - rdf:type StandardData:Priority ;
81 - rdfs:label "Low priority"^^xsd:string .
82 -
83 -NCS:NPDelement_1
84 - rdf:type NPD:NPDelement ;
85 - rdfs:label "NPDelement 1"^^xsd:string .
86 -
87 -NCS:NormalCriticality
88 - rdf:type StandardData:Criticality ;
89 - rdfs:label "Normal criticality"^^xsd:string .
90 -
91 -NCS:NormalPriority
92 - rdf:type StandardData:Priority ;
93 - rdfs:label "Normal priority"^^xsd:string .
94 -
95 -NCS:Operation
96 - rdf:type ILAP:PlanPhase ;
97 - rdfs:label "Operation"^^xsd:string .
98 -
99 -NCS:PlannedActivity_1
100 - rdf:type ILAP:PlannedActivity ;
101 - rdfs:label "Planned activity 1"^^xsd:string ;
102 - ILAP:hasActivityWBSelement
103 - ILAP:ActivityWBS_1 .
104 -
105 -NCS:Planning
106 - rdf:type ILAP:PlanPhase ;
107 - rdfs:label "Planning"^^xsd:string .
108 -
109 -NCS:Removal
110 - rdf:type ILAP:PlanPhase ;
111 - rdfs:label "Removal"^^xsd:string .
112 -
113 -NCS:ShutdownAndDecommisioning
114 - rdf:type ILAP:PlanPhase ;
115 - rdfs:label "Shutdown and decommisioning"^^xsd:string .
116 18
117 ILAP: 19 ILAP:
118 rdf:type owl:Ontology ; 20 rdf:type owl:Ontology ;
...@@ -126,6 +28,9 @@ ILAP:Active ...@@ -126,6 +28,9 @@ ILAP:Active
126 rdf:type ILAP:Status ; 28 rdf:type ILAP:Status ;
127 rdfs:label "Active"^^xsd:string . 29 rdfs:label "Active"^^xsd:string .
128 30
31 +ILAP:ActivityInPlan_1
32 + ILAP:hasPlatform <http://data.posccaesar.org/npd/facts/Facility-271385> .
33 +
129 ILAP:ActivityWBS_1 34 ILAP:ActivityWBS_1
130 ILAP:hasWBSProjectType 35 ILAP:hasWBSProjectType
131 ILAP:CAPEX ; 36 ILAP:CAPEX ;
...@@ -174,9 +79,37 @@ ILAP:Country ...@@ -174,9 +79,37 @@ ILAP:Country
174 rdf:type ILAP:PlanGeoArea ; 79 rdf:type ILAP:PlanGeoArea ;
175 rdfs:label "Country"^^xsd:string . 80 rdfs:label "Country"^^xsd:string .
176 81
82 +ILAP:DG1
83 + rdf:type ILAP:DecisionGate ;
84 + rdfs:label "DG1"^^xsd:string .
85 +
86 +ILAP:DG2
87 + rdf:type ILAP:DecisionGate ;
88 + rdfs:label "DG2"^^xsd:string .
89 +
90 +ILAP:DG3
91 + rdf:type ILAP:DecisionGate ;
92 + rdfs:label "DG3"^^xsd:string .
93 +
94 +ILAP:DG4
95 + rdf:type ILAP:DecisionGate ;
96 + rdfs:label "DG4"^^xsd:string .
97 +
98 +ILAP:DG5
99 + rdf:type ILAP:DecisionGate ;
100 + rdfs:label "DG5"^^xsd:string .
101 +
102 +ILAP:DG6
103 + rdf:type ILAP:DecisionGate ;
104 + rdfs:label "DG6"^^xsd:string .
105 +
106 +ILAP:DG7
107 + rdf:type ILAP:DecisionGate ;
108 + rdfs:label "DG7"^^xsd:string .
109 +
177 ILAP:Development 110 ILAP:Development
178 - rdf:type ILAP:PlanLifecycleStage ; 111 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
179 - rdfs:label "Develop"^^xsd:string . 112 + rdfs:label "Develop"^^xsd:string , "Development"^^xsd:string .
180 113
181 ILAP:DisasterRecovery 114 ILAP:DisasterRecovery
182 rdf:type ILAP:PlanObjectiveType ; 115 rdf:type ILAP:PlanObjectiveType ;
...@@ -191,7 +124,7 @@ ILAP:DrillingAndWell ...@@ -191,7 +124,7 @@ ILAP:DrillingAndWell
191 rdfs:label "Drilling and well"^^xsd:string . 124 rdfs:label "Drilling and well"^^xsd:string .
192 125
193 ILAP:Exploration 126 ILAP:Exploration
194 - rdf:type ILAP:PlanLifecycleStage ; 127 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
195 rdfs:label "Exploration"^^xsd:string . 128 rdfs:label "Exploration"^^xsd:string .
196 129
197 ILAP:Facility 130 ILAP:Facility
...@@ -294,12 +227,16 @@ ILAP:Monday ...@@ -294,12 +227,16 @@ ILAP:Monday
294 rdf:type ILAP:CalendarDay ; 227 rdf:type ILAP:CalendarDay ;
295 rdfs:label "Monday"^^xsd:string . 228 rdfs:label "Monday"^^xsd:string .
296 229
230 +ILAP:NPDelement_1
231 + rdf:type NPD:NPDelement ;
232 + rdfs:label "NPDelement 1"^^xsd:string .
233 +
297 ILAP:OPEX 234 ILAP:OPEX
298 rdf:type ILAP:PlanExpenseType ; 235 rdf:type ILAP:PlanExpenseType ;
299 rdfs:label "OPEX"^^xsd:string . 236 rdfs:label "OPEX"^^xsd:string .
300 237
301 ILAP:Operation 238 ILAP:Operation
302 - rdf:type ILAP:PlanLifecycleStage ; 239 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
303 rdfs:label "Operation"^^xsd:string . 240 rdfs:label "Operation"^^xsd:string .
304 241
305 ILAP:OperationAndMaintenance 242 ILAP:OperationAndMaintenance
...@@ -314,8 +251,14 @@ ILAP:Planned ...@@ -314,8 +251,14 @@ ILAP:Planned
314 rdf:type ILAP:Status ; 251 rdf:type ILAP:Status ;
315 rdfs:label "Planned"^^xsd:string . 252 rdfs:label "Planned"^^xsd:string .
316 253
254 +ILAP:PlannedActivity_1
255 + rdf:type ILAP:PlannedActivity ;
256 + rdfs:label "Planned activity 1"^^xsd:string ;
257 + ILAP:hasActivityWBSelement
258 + ILAP:ActivityWBS_1 .
259 +
317 ILAP:Planning 260 ILAP:Planning
318 - rdf:type ILAP:PlanLifecycleStage ; 261 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
319 rdfs:label "Planning"^^xsd:string . 262 rdfs:label "Planning"^^xsd:string .
320 263
321 ILAP:Primavera 264 ILAP:Primavera
...@@ -343,7 +286,7 @@ ILAP:Released ...@@ -343,7 +286,7 @@ ILAP:Released
343 rdfs:label "Released"^^xsd:string . 286 rdfs:label "Released"^^xsd:string .
344 287
345 ILAP:Removal 288 ILAP:Removal
346 - rdf:type ILAP:PlanLifecycleStage ; 289 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
347 rdfs:label "Removal"^^xsd:string . 290 rdfs:label "Removal"^^xsd:string .
348 291
349 ILAP:Renewal 292 ILAP:Renewal
...@@ -379,14 +322,14 @@ ILAP:Scheduled ...@@ -379,14 +322,14 @@ ILAP:Scheduled
379 rdfs:label "Scheduled"^^xsd:string . 322 rdfs:label "Scheduled"^^xsd:string .
380 323
381 ILAP:ShutdownAndDecommisioning 324 ILAP:ShutdownAndDecommisioning
382 - rdf:type ILAP:PlanLifecycleStage ; 325 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
383 rdfs:label "Shutdown and decommisioning"^^xsd:string . 326 rdfs:label "Shutdown and decommisioning"^^xsd:string .
384 327
385 ILAP:StandardFreeWeekendPeriod 328 ILAP:StandardFreeWeekendPeriod
386 rdf:type ILAP:CalendarFreePeriodWeekRepeat ; 329 rdf:type ILAP:CalendarFreePeriodWeekRepeat ;
387 rdfs:label "Standard free weekend period"^^xsd:string ; 330 rdfs:label "Standard free weekend period"^^xsd:string ;
388 ILAP:hasCalendarPeriodFreeDay 331 ILAP:hasCalendarPeriodFreeDay
389 - ILAP:Saturday , ILAP:Sunday . 332 + ILAP:Sunday , ILAP:Saturday .
390 333
391 ILAP:StandardWorkWeekdayPeriod 334 ILAP:StandardWorkWeekdayPeriod
392 rdf:type ILAP:CalendarWorkPeriodWeekRepeat ; 335 rdf:type ILAP:CalendarWorkPeriodWeekRepeat ;
...@@ -503,6 +446,11 @@ shutdown:hasShutdownPriority ...@@ -503,6 +446,11 @@ shutdown:hasShutdownPriority
503 shutdown:hasShutdownType 446 shutdown:hasShutdownType
504 rdfs:domain ILAP:Shutdown . 447 rdfs:domain ILAP:Shutdown .
505 448
449 +<http://data.posccaesar.org/npd/ontology/ilap-interface/Facility>
450 + rdf:type owl:Class ;
451 + rdfs:label "Facility"^^xsd:string ;
452 + rdfs:subClassOf ILAP:Facility , owl:Thing .
453 +
506 <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A> 454 <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A>
507 rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> . 455 rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
508 456
......
1 -K 25
2 -svn:wc:ra_dav:version-url
3 -V 42
4 -/svn/ilap/!svn/ver/28/OWL_1_5/StandardData
5 -END
6 -NPD.ttl
7 -K 25
8 -svn:wc:ra_dav:version-url
9 -V 50
10 -/svn/ilap/!svn/ver/25/OWL_1_5/StandardData/NPD.ttl
11 -END
12 -EPCIS.ttl
13 -K 25
14 -svn:wc:ra_dav:version-url
15 -V 52
16 -/svn/ilap/!svn/ver/31/OWL_1_5/StandardData/EPCIS.ttl
17 -END
18 -POB.ttl
19 -K 25
20 -svn:wc:ra_dav:version-url
21 -V 50
22 -/svn/ilap/!svn/ver/31/OWL_1_5/StandardData/POB.ttl
23 -END
24 -BRREG.ttl
25 -K 25
26 -svn:wc:ra_dav:version-url
27 -V 52
28 -/svn/ilap/!svn/ver/30/OWL_1_5/StandardData/BRREG.ttl
29 -END
30 -CCU.ttl
31 -K 25
32 -svn:wc:ra_dav:version-url
33 -V 50
34 -/svn/ilap/!svn/ver/31/OWL_1_5/StandardData/CCU.ttl
35 -END
36 -SCCS.ttl
37 -K 25
38 -svn:wc:ra_dav:version-url
39 -V 51
40 -/svn/ilap/!svn/ver/31/OWL_1_5/StandardData/SCCS.ttl
41 -END
42 -DISKOS.ttl
43 -K 25
44 -svn:wc:ra_dav:version-url
45 -V 53
46 -/svn/ilap/!svn/ver/31/OWL_1_5/StandardData/DISKOS.ttl
47 -END
1 -10
2 -
3 -dir
4 -29
5 -https://jord-dev.org/svn/ilap/OWL_1_5/StandardData
6 -https://jord-dev.org/svn/ilap
7 -
8 -
9 -
10 -2014-04-11T13:08:30.820903Z
11 -28
12 -hmottestad
13 -
14 -
15 -svn:special svn:externals svn:needs-lock
16 -
17 -
18 -
19 -
20 -
21 -
22 -
23 -
24 -
25 -
26 -
27 -32c34ce5-302f-44b3-a65a-1ca98c1fea32
28 -
29 -BRREG.ttl
30 -file
31 -30
32 -
33 -
34 -
35 -2014-04-12T11:15:19.297000Z
36 -f3e3826734c3cab94eae7f8873f9efb8
37 -2014-04-13T19:23:46.352844Z
38 -30
39 -tchr
40 -
41 -
42 -
43 -
44 -
45 -
46 -
47 -
48 -
49 -
50 -
51 -
52 -
53 -
54 -
55 -
56 -
57 -
58 -
59 -
60 -
61 -3206
62 -
63 -CCU.ttl
64 -file
65 -31
66 -
67 -
68 -
69 -2014-04-16T16:18:52.727000Z
70 -9d80df55191c3c45451a91f63e03325e
71 -2014-04-21T18:24:03.858028Z
72 -31
73 -tchr
74 -
75 -
76 -
77 -
78 -
79 -
80 -
81 -
82 -
83 -
84 -
85 -
86 -
87 -
88 -
89 -
90 -
91 -
92 -
93 -
94 -
95 -809
96 -
97 -DISKOS.ttl
98 -file
99 -31
100 -
101 -
102 -
103 -2014-04-16T17:46:46.569000Z
104 -893b449eea5a8ecdcb5b695a7ccb8f0f
105 -2014-04-21T18:24:03.858028Z
106 -31
107 -tchr
108 -
109 -
110 -
111 -
112 -
113 -
114 -
115 -
116 -
117 -
118 -
119 -
120 -
121 -
122 -
123 -
124 -
125 -
126 -
127 -
128 -
129 -1353
130 -
131 -EPCIS.ttl
132 -file
133 -31
134 -
135 -
136 -
137 -2014-04-16T15:23:07.814000Z
138 -6de151ff7c77bd0bb2720897ec1112af
139 -2014-04-21T18:24:03.858028Z
140 -31
141 -tchr
142 -
143 -
144 -
145 -
146 -
147 -
148 -
149 -
150 -
151 -
152 -
153 -
154 -
155 -
156 -
157 -
158 -
159 -
160 -
161 -
162 -
163 -4014
164 -
165 -NPD.ttl
166 -file
167 -
168 -
169 -
170 -
171 -2014-04-11T13:12:48.341000Z
172 -92e71978e1cc2de3550d5fcb0149b998
173 -2014-04-11T12:09:45.010434Z
174 -25
175 -hmottestad
176 -
177 -
178 -
179 -
180 -
181 -
182 -
183 -
184 -
185 -
186 -
187 -
188 -
189 -
190 -
191 -
192 -
193 -
194 -
195 -
196 -
197 -3415
198 -
199 -POB.ttl
200 -file
201 -31
202 -
203 -
204 -
205 -2014-04-16T20:25:55.012000Z
206 -74ad3b8c507f74b34bdc90432246d07d
207 -2014-04-21T18:24:03.858028Z
208 -31
209 -tchr
210 -
211 -
212 -
213 -
214 -
215 -
216 -
217 -
218 -
219 -
220 -
221 -
222 -
223 -
224 -
225 -
226 -
227 -
228 -
229 -
230 -
231 -887
232 -
233 -SCCS.ttl
234 -file
235 -31
236 -
237 -
238 -
239 -2014-04-16T18:10:01.594000Z
240 -5c4fc7e8cab9db243add699d802fdd86
241 -2014-04-21T18:24:03.858028Z
242 -31
243 -tchr
244 -
245 -
246 -
247 -
248 -
249 -
250 -
251 -
252 -
253 -
254 -
255 -
256 -
257 -
258 -
259 -
260 -
261 -
262 -
263 -
264 -
265 -4287
266 -
1 -# baseURI: http://data.posccaesar.org/brreg/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/brreg/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:BakerHughes
14 - rdf:type :Contractor ;
15 - rdfs:label "Baker hughes"^^xsd:string ;
16 -.
17 -:ConocoPhillips
18 - rdf:type :OilCompany ;
19 - rdfs:label "Conoco phillips"^^xsd:string ;
20 -.
21 -:Contractor
22 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
23 - rdf:type owl:Class ;
24 - rdfs:label "Contractor"^^xsd:string ;
25 - rdfs:subClassOf :LegalEntity ;
26 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8648162> ;
27 -.
28 -:EniNorge
29 - rdf:type :OilCompany ;
30 - rdfs:label "Eni norge"^^xsd:string ;
31 -.
32 -:LegalEntity
33 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
34 - rdf:type owl:Class ;
35 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Source> ;
36 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> ;
37 - rdfs:subClassOf owl:Thing ;
38 - rdfs:subClassOf [
39 - rdf:type owl:Restriction ;
40 - owl:onClass :Location ;
41 - owl:onProperty :hasLegalEntityLocation ;
42 - owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
43 - ] ;
44 -.
45 -:Location
46 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ;
47 - rdf:type owl:Class ;
48 - rdfs:label "Location"^^xsd:string ;
49 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Location> ;
50 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> ;
51 - rdfs:subClassOf owl:Thing ;
52 -.
53 -:Lundin
54 - rdf:type :OilCompany ;
55 - rdfs:label "Lundin"^^xsd:string ;
56 -.
57 -:NEA
58 - rdf:type :Regulator ;
59 - rdfs:label "NEA"^^xsd:string ;
60 -.
61 -:NPD
62 - rdf:type :Regulator ;
63 - rdfs:label "NPD"^^xsd:string ;
64 -.
65 -:NTA
66 - rdf:type :Regulator ;
67 - rdfs:label "NTA"^^xsd:string ;
68 -.
69 -:OilCompany
70 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
71 - rdf:type owl:Class ;
72 - rdfs:label "Oil Company"^^xsd:string ;
73 - rdfs:subClassOf :LegalEntity ;
74 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8648100> ;
75 -.
76 -:Regulator
77 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
78 - rdf:type owl:Class ;
79 - rdfs:label "Regulator"^^xsd:string ;
80 - rdfs:subClassOf :LegalEntity ;
81 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS283544> ;
82 -.
83 -:Schlumberger
84 - rdf:type :Contractor ;
85 - rdfs:label "Schlumberger"^^xsd:string ;
86 -.
87 -:Sevan
88 - rdf:type :Contractor ;
89 - rdfs:label "Sevan"^^xsd:string ;
90 -.
91 -:Statoil
92 - rdf:type :OilCompany ;
93 - rdfs:label "Statoil"^^xsd:string ;
94 -.
95 -:Subsea7
96 - rdf:type :Contractor ;
97 - rdfs:label "Subsea7"^^xsd:string ;
98 -.
99 -:SumitomoMetal
100 - rdf:type :Contractor ;
101 - rdfs:label "Sumitomo metal"^^xsd:string ;
102 -.
103 -:Tananger
104 - rdf:type :Location ;
105 - rdfs:label "Tananger"^^xsd:string ;
106 -.
107 -:Technip
108 - rdf:type :Contractor ;
109 - rdfs:label "Technip"^^xsd:string ;
110 -.
111 -:hasLegalEntityLocation
112 - rdf:type owl:ObjectProperty ;
113 - rdfs:domain :LegalEntity ;
114 - rdfs:label "has legal entity location"^^xsd:string ;
115 - rdfs:range :Location ;
116 -.
1 -# baseURI: http://data.posccaesar.org/ccu/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/ccu/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:CCU
14 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
15 - rdf:type owl:Class ;
16 - rdfs:label "CCU"^^xsd:string ;
17 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS221644028150> ;
18 - rdfs:subClassOf owl:Thing ;
19 -.
20 -:CCU123
21 - rdf:type :CCU ;
22 - rdfs:label "CCU 123"^^xsd:string ;
23 -.
24 -:CCU456
25 - rdf:type :CCU ;
26 - rdfs:label "CCU 456"^^xsd:string ;
27 -.
1 -# baseURI: http://data.posccaesar.org/diskos/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/diskos/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:Asset
14 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
15 - rdf:type owl:Class ;
16 - rdfs:label "Asset"^^xsd:string ;
17 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8645837> ;
18 - rdfs:subClassOf owl:Thing ;
19 - rdfs:subClassOf [
20 - rdf:type owl:Restriction ;
21 - owl:onDataRange xsd:float ;
22 - owl:onProperty :hasAssetValue ;
23 - owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
24 - ] ;
25 -.
26 -:EkofiskField
27 - rdf:type :Asset ;
28 - :hasAssetValue "30"^^xsd:float ;
29 - rdfs:label "Ekofisk field"^^xsd:string ;
30 -.
31 -:GoliatField
32 - rdf:type :Asset ;
33 - :hasAssetValue "50"^^xsd:float ;
34 - rdfs:label "Goliat field"^^xsd:string ;
35 -.
36 -:StatfjordField
37 - rdf:type :Asset ;
38 - :hasAssetValue "40"^^xsd:float ;
39 - rdfs:label "Statfjord field"^^xsd:string ;
40 -.
41 -:hasAssetValue
42 - rdf:type owl:DatatypeProperty ;
43 - rdfs:domain :Asset ;
44 - rdfs:label "has asset value"^^xsd:string ;
45 - rdfs:range xsd:float ;
46 -.
1 -# baseURI: http://data.posccaesar.org/epcis/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/epcis/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:ArrivingEvent
14 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
15 - rdf:type owl:Class ;
16 - rdfs:label "Arriving event"^^xsd:string ;
17 - rdfs:subClassOf :CBVevent ;
18 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9695582> ;
19 -.
20 -:ArrivingEvent_1
21 - rdf:type :ArrivingEvent ;
22 - rdfs:label "Arriving event 1"^^xsd:string ;
23 -.
24 -:CBVevent
25 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
26 - rdf:type owl:Class ;
27 - rdfs:label "CBV event"^^xsd:string ;
28 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> ;
29 - rdfs:subClassOf owl:Thing ;
30 -.
31 -:DepartingEvent
32 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
33 - rdf:type owl:Class ;
34 - rdfs:label "Departing event"^^xsd:string ;
35 - rdfs:subClassOf :CBVevent ;
36 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9677672> ;
37 -.
38 -:DepartingEvent_1
39 - rdf:type :DepartingEvent ;
40 - rdfs:label "Departing event 1"^^xsd:string ;
41 -.
42 -:HoldingEvent
43 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
44 - rdf:type owl:Class ;
45 - rdfs:label "Holding event"^^xsd:string ;
46 - rdfs:subClassOf :CBVevent ;
47 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9666467> ;
48 -.
49 -:HoldingEvent_1
50 - rdf:type :HoldingEvent ;
51 - rdfs:label "Holding event 1"^^xsd:string ;
52 -.
53 -:InspectingEvent
54 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
55 - rdf:type owl:Class ;
56 - rdfs:label "Inspecting event"^^xsd:string ;
57 - rdfs:subClassOf :CBVevent ;
58 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9664082> ;
59 -.
60 -:InspectingEvent_1
61 - rdf:type :InspectingEvent ;
62 - rdfs:label "Inspecting event 1"^^xsd:string ;
63 -.
64 -:InspectingResultEvent
65 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
66 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
67 - rdf:type owl:Class ;
68 - rdfs:label "Inspecting result event"^^xsd:string ;
69 - rdfs:subClassOf :CBVevent ;
70 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS332324> ;
71 -.
72 -:InspectingResultEvent_1
73 - rdf:type :InspectingResultEvent ;
74 - rdfs:label "Inspecting result event 1"^^xsd:string ;
75 -.
76 -:InternalMovingEvent
77 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
78 - rdf:type owl:Class ;
79 - rdfs:label "Internal moving event"^^xsd:string ;
80 - rdfs:subClassOf :CBVevent ;
81 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9660707> ;
82 -.
83 -:InternalMovingEvent_1
84 - rdf:type :InternalMovingEvent ;
85 - rdfs:label "Internal moving event 1"^^xsd:string ;
86 -.
87 -:LoadingEvent
88 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
89 - rdf:type owl:Class ;
90 - rdfs:label "Loading event"^^xsd:string ;
91 - rdfs:subClassOf :CBVevent ;
92 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9647792> ;
93 -.
94 -:LoadingEvent_1
95 - rdf:type :LoadingEvent ;
96 - rdfs:label "Loading event 1"^^xsd:string ;
97 -.
98 -:PackingEvent
99 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
100 - rdf:type owl:Class ;
101 - rdfs:label "Packing event"^^xsd:string ;
102 - rdfs:subClassOf :CBVevent ;
103 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS397677521> ;
104 -.
105 -:PackingEvent_1
106 - rdf:type :PackingEvent ;
107 - rdfs:label "Packing event 1"^^xsd:string ;
108 -.
109 -:UnloadingEvent
110 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
111 - rdf:type owl:Class ;
112 - rdfs:label "Unloading event"^^xsd:string ;
113 - rdfs:subClassOf :CBVevent ;
114 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9651752> ;
115 -.
116 -:UnloadingEvent_1
117 - rdf:type :UnloadingEvent ;
118 - rdfs:label "Unloading event 1"^^xsd:string ;
119 -.
1 -# baseURI: http://data.posccaesar.org/npd/
2 -
3 -@prefix : <http://data.posccaesar.org/npd/> .
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 -
9 -: rdf:type owl:Ontology ;
10 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
11 -
12 -:BAA rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
13 - rdfs:label "Business area agreement"^^xsd:string ;
14 - rdfs:subClassOf :NPDelement .
15 -
16 -:BAA_1
17 - rdf:type :BAA ;
18 - rdfs:label "Business Area Arrangement 1"^^xsd:string .
19 -
20 -:Ekofisk
21 - rdf:type :Field ;
22 - rdfs:label "Ekofisk"^^xsd:string .
23 -
24 -:EldfiskC
25 - rdf:type :SubsurfaceFacility ;
26 - rdfs:label "Eldfisk C"^^xsd:string .
27 -
28 -:Facility
29 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFunctionalObject> ;
30 - rdfs:label "Facility"^^xsd:string ;
31 - rdfs:subClassOf :NPDelement .
32 -
33 -:Field
34 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
35 - rdfs:label "Field"^^xsd:string ;
36 - rdfs:subClassOf :NPDelement .
37 -
38 -:Goliat
39 - rdf:type :Field ;
40 - rdfs:label "Goliat"^^xsd:string .
41 -
42 -:GoliatFPSO
43 - rdf:type :Facility ;
44 - rdfs:label "Goliat FPSO"^^xsd:string .
45 -
46 -:JohanSverdrup
47 - rdf:type :Field ;
48 - rdfs:label "Johan sverdrup"^^xsd:string .
49 -
50 -:License_1
51 - rdf:type :ProductionLicense ;
52 - rdfs:label "License 1"^^xsd:string .
53 -
54 -:NPDelement
55 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFunctionalObject> ;
56 - rdfs:label "Petroleum register element"^^xsd:string ;
57 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1750688011> .
58 -
59 -:PipelineFacility
60 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFunctionalObject> , owl:Class ;
61 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1750613511> , :Facility .
62 -
63 -:ProductionLicense
64 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
65 - rdfs:label "License"^^xsd:string ;
66 - rdfs:subClassOf :NPDelement .
67 -
68 -:StafjordA
69 - rdf:type :SurfaceFacility ;
70 - rdfs:label "Statfjord A"^^xsd:string .
71 -
72 -:StatPipe
73 - rdf:type :PipelineFacility .
74 -
75 -:Statfjord
76 - rdf:type :Field ;
77 - rdfs:label "Statfjord"^^xsd:string .
78 -
79 -:StatfjordB
80 - rdf:type :SurfaceFacility ;
81 - rdfs:label "Statfjord B"^^xsd:string .
82 -
83 -:StatfjordSatelliteA
84 - rdf:type :SubsurfaceFacility .
85 -
86 -:SubsurfaceFacility
87 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFunctionalObject> , owl:Class ;
88 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1750613511> , :Facility .
89 -
90 -:SurfaceFacility
91 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFunctionalObject> , owl:Class ;
92 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1750613511> , :Facility .
93 -
94 -:WellBore
95 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFeature> , owl:Class ;
96 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1714464911> , :NPDelement .
97 -
98 -:WellBore_1
99 - rdf:type :WellBore .
1 -# baseURI: http://data.posccaesar.org/pob/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/pob/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:NiloErdal
14 - rdf:type :Person ;
15 - rdfs:label "Nilo Erdal"^^xsd:string ;
16 -.
17 -:Person
18 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ;
19 - rdf:type owl:Class ;
20 - rdfs:label "Person"^^xsd:string ;
21 - rdfs:subClassOf <http://data.posccaesar.org/ilap/ResponsiblePerson> ;
22 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS943628961> ;
23 - rdfs:subClassOf owl:Thing ;
24 -.
25 -:RolfHansen
26 - rdf:type :Person ;
27 - rdfs:label "Rolf Hansen"^^xsd:string ;
28 -.
1 -# baseURI: http://data.posccaesar.org/sccs/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/sccs/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:COR_A_General_Costs
14 - rdf:type :SCCScode ;
15 - rdfs:label "COR A"^^xsd:string ;
16 -.
17 -:COR_B_Bulk_Materials
18 - rdf:type :CORcode ;
19 - rdfs:label "COR B"^^xsd:string ;
20 -.
21 -:COR_C_Construction_Overheads
22 - rdf:type :CORcode ;
23 - rdfs:label "COR C"^^xsd:string ;
24 -.
25 -:COR_E_Equipment
26 - rdf:type :CORcode ;
27 - rdfs:label "COR E"^^xsd:string ;
28 -.
29 -:COR_H_Owners_Personnel
30 - rdf:type :CORcode ;
31 - rdfs:label "COR H"^^xsd:string ;
32 -.
33 -:COR_K_Engineering_Manpower
34 - rdf:type :CORcode ;
35 - rdfs:label "COR K"^^xsd:string ;
36 -.
37 -:COR_L_Direct_Labor
38 - rdf:type :CORcode ;
39 - rdfs:label "COR L"^^xsd:string ;
40 -.
41 -:COR_M_Indirect_Labor
42 - rdf:type :CORcode ;
43 - rdfs:label "COR M"^^xsd:string ;
44 -.
45 -:COR_Q_Owners_Personnel_Overheads
46 - rdf:type :CORcode ;
47 - rdfs:label "COR Q"^^xsd:string ;
48 -.
49 -:COR_R_Engineering_Overheads
50 - rdf:type :CORcode ;
51 - rdfs:label "COR R"^^xsd:string ;
52 -.
53 -:COR_S_Unit_Work
54 - rdf:type :CORcode ;
55 - rdfs:label "COR S"^^xsd:string ;
56 -.
57 -:COR_X_Marine_Operations_and_Logistics
58 - rdf:type :CORcode ;
59 - rdfs:label "COR X"^^xsd:string ;
60 -.
61 -:COR_Y_Landbased_Plant_and_Equipment
62 - rdf:type :CORcode ;
63 - rdfs:label "COR Y"^^xsd:string ;
64 -.
65 -:CORcode
66 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ;
67 - rdf:type owl:Class ;
68 - rdfs:label "COR code"^^xsd:string ;
69 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Discipline> ;
70 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Resource> ;
71 - rdfs:subClassOf :SCCScode ;
72 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2070536561> ;
73 -.
74 -:PBS_AAAA_Derrick
75 - rdf:type :PBScode ;
76 - rdfs:label "Derrick"^^xsd:string ;
77 -.
78 -:PBS_AAA_Drilling_Area
79 - rdf:type :PBScode ;
80 - rdfs:label "Drilling Area"^^xsd:string ;
81 -.
82 -:PBS_AA_Topsides
83 - rdf:type :PBScode ;
84 - rdfs:label "Topsides"^^xsd:string ;
85 -.
86 -:PBS_AB_Substructures
87 - rdf:type :PBScode ;
88 - rdfs:label "Substructures"^^xsd:string ;
89 -.
90 -:PBS_AC_Wells
91 - rdf:type :PBScode ;
92 - rdfs:label "Wells"^^xsd:string ;
93 -.
94 -:PBS_AD_Subsea_Production_Systems
95 - rdf:type :PBScode ;
96 - rdfs:label "Subsea Production Systems"^^xsd:string ;
97 -.
98 -:PBS_AE_Transport_Systems
99 - rdf:type :PBScode ;
100 - rdfs:label "Transport Systems"^^xsd:string ;
101 -.
102 -:PBS_AW_Windmills
103 - rdf:type :PBScode ;
104 - rdfs:label "Windmills"^^xsd:string ;
105 -.
106 -:PBS_A_Offshore_Field_Installlations
107 - rdf:type :PBScode ;
108 - rdfs:label "Offshore Field Installlations"^^xsd:string ;
109 -.
110 -:PBS_B_LandbasedInstallations
111 - rdf:type :PBScode ;
112 - rdfs:label "Landbased Installations"^^xsd:string ;
113 -.
114 -:PBScode
115 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ;
116 - rdf:type owl:Class ;
117 - rdfs:label "PBS code"^^xsd:string ;
118 - rdfs:subClassOf <http://data.posccaesar.org/ilap/PlanContentType> ;
119 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Result> ;
120 - rdfs:subClassOf :SCCScode ;
121 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2065619071> ;
122 -.
123 -:SAB_1_Management
124 - rdf:type :SABcode ;
125 - :hasCodeName "Management"^^xsd:string ;
126 - rdfs:label "SAB 1"^^xsd:string ;
127 -.
128 -:SAB_2_Engineering_and_Procurement
129 - rdf:type :SABcode ;
130 - rdfs:label "SAB 2"^^xsd:string ;
131 -.
132 -:SAB_3_Material_deliveries
133 - rdf:type :SABcode ;
134 - rdfs:label "SAB 3"^^xsd:string ;
135 -.
136 -:SAB_4_Construction
137 - rdf:type :SABcode ;
138 - rdfs:label "SAB 4"^^xsd:string ;
139 -.
140 -:SAB_5_Operations
141 - rdf:type :SABcode ;
142 - rdfs:label "SAB 5"^^xsd:string ;
143 -.
144 -:SABcode
145 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ;
146 - rdf:type owl:Class ;
147 - rdfs:label "SAB code"^^xsd:string ;
148 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Phase> ;
149 - rdfs:subClassOf :SCCScode ;
150 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2070536561> ;
151 -.
152 -:SCCScode
153 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ;
154 - rdf:type owl:Class ;
155 - rdfs:label "SCCS code"^^xsd:string ;
156 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2070536561> ;
157 - rdfs:subClassOf owl:Thing ;
158 -.
1 -# baseURI: http://data.posccaesar.org/brreg/
2 -# imports: file:///C:/Users/Eier/Documents/Projects/TopBraid%20Workspace/TopBraid/SKOS/skos-core.ttl.tbc
3 -# imports: http://topbraid.org/spin/skoscleaner
4 -# imports: http://topbraid.org/spin/skosspin
5 -# imports: http://www.w3.org/2004/02/skos/core
6 -# imports: http://www.w3.org/2008/05/skos-xl
7 -
8 -@prefix : <http://data.posccaesar.org/brreg/> .
9 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
10 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
11 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
12 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
13 -
14 -: rdf:type owl:Ontology ;
15 - owl:imports <http://www.w3.org/2004/02/skos/core> , <file:///C:/Users/Eier/Documents/Projects/TopBraid%20Workspace/TopBraid/SKOS/skos-core.ttl.tbc> , <http://www.w3.org/2008/05/skos-xl> , <http://topbraid.org/spin/skoscleaner> , <http://topbraid.org/spin/skosspin> ;
16 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
17 -
18 -:BakerHughes
19 - rdf:type :Contractor ;
20 - rdfs:label "Baker hughes"^^xsd:string .
21 -
22 -:ConocoPhillips
23 - rdf:type :OilCompany ;
24 - rdfs:label "Conoco phillips"^^xsd:string .
25 -
26 -:Contractor
27 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
28 - rdfs:label "Contractor"^^xsd:string ;
29 - rdfs:subClassOf :LegalEntity , <http://posccaesar.org/rdl/RDS8648162> .
30 -
31 -:LegalEntity
32 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
33 - rdfs:subClassOf <http://data.posccaesar.org/ilap/Source> , <http://posccaesar.org/rdl/RDS943618371> , owl:Thing .
34 -
35 -:NPD rdf:type :Regulator ;
36 - rdfs:label "NPD"^^xsd:string .
37 -
38 -:OilCompany
39 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
40 - rdfs:label "Oil Company"^^xsd:string ;
41 - rdfs:subClassOf :LegalEntity , <http://posccaesar.org/rdl/RDS8648100> .
42 -
43 -:Regulator
44 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
45 - rdfs:label "Regulator"^^xsd:string ;
46 - rdfs:subClassOf :LegalEntity , <http://posccaesar.org/rdl/RDS283544> .
1 -# baseURI: http://data.posccaesar.org/ccu/
2 -
3 -@prefix : <http://data.posccaesar.org/ccu/> .
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 -
9 -: rdf:type owl:Ontology ;
10 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
11 -
12 -:CCU rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
13 - rdfs:label "CCU"^^xsd:string ;
14 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS221644028150> .
15 -
16 -:CCU123
17 - rdf:type :CCU ;
18 - rdfs:label "CCU 123"^^xsd:string .
1 -# baseURI: http://data.posccaesar.org/diskos/
2 -
3 -@prefix : <http://data.posccaesar.org/diskos/> .
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 -
9 -: rdf:type owl:Ontology ;
10 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
11 -
12 -:Asset
13 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
14 - rdfs:label "Asset"^^xsd:string ;
15 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8645837> .
16 -
17 -:EkofiskField
18 - rdf:type :Asset ;
19 - rdfs:label "Ekofisk field"^^xsd:string .
1 -# baseURI: http://data.posccaesar.org/epcis/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/epcis/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:ArrivingEvent
14 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
15 - rdf:type owl:Class ;
16 - rdfs:label "Arriving event"^^xsd:string ;
17 - rdfs:subClassOf :CBVevent ;
18 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9695582> ;
19 -.
20 -:ArrivingEvent_1
21 - rdf:type :ArrivingEvent ;
22 - rdfs:label "Arriving event 1"^^xsd:string ;
23 -.
24 -:CBVevent
25 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
26 - rdf:type owl:Class ;
27 - rdfs:label "CBV event"^^xsd:string ;
28 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> ;
29 - rdfs:subClassOf owl:Thing ;
30 -.
31 -:DepartingEvent
32 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
33 - rdf:type owl:Class ;
34 - rdfs:label "Departing event"^^xsd:string ;
35 - rdfs:subClassOf :CBVevent ;
36 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9677672> ;
37 -.
38 -:DepartingEvent_1
39 - rdf:type :DepartingEvent ;
40 - rdfs:label "Departing event 1"^^xsd:string ;
41 -.
42 -:HoldingEvent
43 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
44 - rdf:type owl:Class ;
45 - rdfs:label "Holding event"^^xsd:string ;
46 - rdfs:subClassOf :CBVevent ;
47 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9666467> ;
48 -.
49 -:HoldingEvent_1
50 - rdf:type :HoldingEvent ;
51 - rdfs:label "Holding event 1"^^xsd:string ;
52 -.
53 -:InspectingEvent
54 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
55 - rdf:type owl:Class ;
56 - rdfs:label "Inspecting event"^^xsd:string ;
57 - rdfs:subClassOf :CBVevent ;
58 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9664082> ;
59 -.
60 -:InspectingEvent_1
61 - rdf:type :InspectingEvent ;
62 - rdfs:label "Inspecting event 1"^^xsd:string ;
63 -.
64 -:InspectingResultEvent
65 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
66 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
67 - rdf:type owl:Class ;
68 - rdfs:label "Inspecting result event"^^xsd:string ;
69 - rdfs:subClassOf :CBVevent ;
70 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS332324> ;
71 -.
72 -:InspectingResultEvent_1
73 - rdf:type :InspectingResultEvent ;
74 - rdfs:label "Inspecting result event 1"^^xsd:string ;
75 -.
76 -:InternalMovingEvent
77 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
78 - rdf:type owl:Class ;
79 - rdfs:label "Internal moving event"^^xsd:string ;
80 - rdfs:subClassOf :CBVevent ;
81 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9660707> ;
82 -.
83 -:InternalMovingEvent_1
84 - rdf:type :InternalMovingEvent ;
85 - rdfs:label "Internal moving event 1"^^xsd:string ;
86 -.
87 -:LoadingEvent
88 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
89 - rdf:type owl:Class ;
90 - rdfs:label "Loading event"^^xsd:string ;
91 - rdfs:subClassOf :CBVevent ;
92 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9647792> ;
93 -.
94 -:LoadingEvent_1
95 - rdf:type :LoadingEvent ;
96 - rdfs:label "Loading event 1"^^xsd:string ;
97 -.
98 -:PackingEvent
99 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
100 - rdf:type owl:Class ;
101 - rdfs:label "Packing event"^^xsd:string ;
102 - rdfs:subClassOf :CBVevent ;
103 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS397677521> ;
104 -.
105 -:PackingEvent_1
106 - rdf:type :PackingEvent ;
107 - rdfs:label "Packing event 1"^^xsd:string ;
108 -.
109 -:UnloadingEvent
110 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
111 - rdf:type owl:Class ;
112 - rdfs:label "Unloading event"^^xsd:string ;
113 - rdfs:subClassOf :CBVevent ;
114 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS9651752> ;
115 -.
116 -:UnloadingEvent_1
117 - rdf:type :UnloadingEvent ;
118 - rdfs:label "Unloading event 1"^^xsd:string ;
119 -.
1 -# baseURI: http://data.posccaesar.org/npd/
2 -
3 -@prefix : <http://data.posccaesar.org/npd/> .
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 -
9 -<http://data.posccaesar.org/ilap/ProjectExecutionPlan>
10 - rdfs:subClassOf
11 - [ rdf:type owl:Restriction ;
12 - owl:allValuesFrom :NPDelement ;
13 - owl:onProperty <http://data.posccaesar.org/ilap/hasPlanNPDelement>
14 - ] .
15 -
16 -<http://data.posccaesar.org/ilap/hasPlanNPDelement>
17 - rdfs:range :NPDelement .
18 -
19 -: rdf:type owl:Ontology ;
20 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
21 -
22 -:NPDelement
23 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfFunctionalObject> , owl:Class ;
24 - rdfs:label "Petroleum register element"^^xsd:string , "NPDelement"^^xsd:string ;
25 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1750688011> , owl:Thing , <http://data.posccaesar.org/ilap/Location> .
1 -# baseURI: http://data.posccaesar.org/pob/
2 -
3 -# c14n-version: 3
4 -@prefix : <http://data.posccaesar.org/pob/> .
5 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
6 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9 -:
10 - rdf:type owl:Ontology ;
11 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
12 -.
13 -:NiloErdal
14 - rdf:type :Person ;
15 - rdfs:label "Nilo Erdal"^^xsd:string ;
16 -.
17 -:Person
18 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ;
19 - rdf:type owl:Class ;
20 - rdfs:label "Person"^^xsd:string ;
21 - rdfs:subClassOf <http://data.posccaesar.org/ilap/ResponsiblePerson> ;
22 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS943628961> ;
23 - rdfs:subClassOf owl:Thing ;
24 -.
25 -:RolfHansen
26 - rdf:type :Person ;
27 - rdfs:label "Rolf Hansen"^^xsd:string ;
28 -.
1 -# baseURI: http://data.posccaesar.org/ilap/riskfactor/
2 -
3 -@prefix : <http://data.posccaesar.org/ilap/riskfactor/> .
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 -
9 -: rdf:type owl:Ontology ;
10 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
11 -
12 -:HCsystemsWork
13 - rdf:type :RiskType ;
14 - rdfs:label "HC systems work"^^xsd:string .
15 -
16 -:HeightWork
17 - rdf:type :RiskType ;
18 - rdfs:label "Height work"^^xsd:string .
19 -
20 -:HotWork
21 - rdf:type :RiskType ;
22 - rdfs:label "Hot work"^^xsd:string .
23 -
24 -:LiftingOperation
25 - rdf:type :RiskType ;
26 - rdfs:label "Lifting operation"^^xsd:string .
27 -
28 -:RemovalOfBarriers
29 - rdf:type :RiskType ;
30 - rdfs:label "Removal of barriers"^^xsd:string .
31 -
32 -:ReservoirDrillingOperation
33 - rdf:type :RiskType ;
34 - rdfs:label "Reservoir drilling operation"^^xsd:string .
35 -
36 -:RiskType
37 - rdf:type owl:Class ;
38 - rdfs:label "Risk type"^^xsd:string ;
39 - rdfs:subClassOf owl:Thing .
40 -
41 -:ShallowGasOperation
42 - rdf:type :RiskType ;
43 - rdfs:label "Shallow gas operation"^^xsd:string .
44 -
45 -:VesselOperation
46 - rdf:type :RiskType ;
47 - rdfs:label "Vessel operation"^^xsd:string .
48 -
49 -:hasRiskType
50 - rdf:type owl:ObjectProperty ;
51 - rdfs:label "has risk type"^^xsd:string ;
52 - rdfs:range :RiskType .
1 -# baseURI: http://data.posccaesar.org/ilap/shutdown/
2 -
3 -@prefix : <http://data.posccaesar.org/ilap/shutdown/> .
4 -@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 -
9 -: rdf:type owl:Ontology ;
10 - owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
11 -
12 -:After_Shutdown
13 - rdf:type :ShutdownOperation ;
14 - rdfs:label "After Shutdown"^^xsd:string .
15 -
16 -:Before_Shutdown
17 - rdf:type :ShutdownOperation ;
18 - rdfs:label "Before Shutdown"^^xsd:string .
19 -
20 -:Campaign
21 - rdf:type :ShutdownType ;
22 - rdfs:label "Campaign"^^xsd:string .
23 -
24 -:Change_Order_Living_Quarter
25 - rdf:type :ShutdownContent ;
26 - rdfs:label "Change Order Living Quarter"^^xsd:string .
27 -
28 -:Change_over
29 - rdf:type :ShutdownType ;
30 - rdfs:label "Change over"^^xsd:string .
31 -
32 -:Critical
33 - rdf:type :ShutdownPriority ;
34 - rdfs:label "Critical"^^xsd:string .
35 -
36 -:Dependent_on_Shutdown
37 - rdf:type :ShutdownOperation ;
38 - rdfs:label "Dependent on Shutdown"^^xsd:string .
39 -
40 -:Drilling_Shutdown
41 - rdf:type :ShutdownContent ;
42 - rdfs:label "Drilling shutdown"^^xsd:string .
43 -
44 -:During_Normal_Operation
45 - rdf:type :ShutdownOperation ;
46 - rdfs:label "During Normal Operation"^^xsd:string .
47 -
48 -:During_Shutdown
49 - rdf:type :ShutdownOperation ;
50 - rdfs:label "During Shutdown"^^xsd:string .
51 -
52 -:Equipment_Shutdown
53 - rdf:type :ShutdownContent ;
54 - rdfs:label "Equipment Shutdown"^^xsd:string .
55 -
56 -:Field_Shutdown
57 - rdf:type :ShutdownContent ;
58 - rdfs:label "Field Shutdown"^^xsd:string .
59 -
60 -:Gas_Export_Shutdown
61 - rdf:type :ShutdownContent ;
62 - rdfs:label "Gas Export Shutdown"^^xsd:string .
63 -
64 -:Gas_Injection_Shutdown
65 - rdf:type :ShutdownContent ;
66 - rdfs:label "Gas Injection Shutdown"^^xsd:string .
67 -
68 -:High_Activity_Period
69 - rdf:type :ShutdownPeriod ;
70 - rdfs:label "High Activity Period"^^xsd:string .
71 -
72 -:IndependentOfOperation
73 - rdf:type :ShutdownOperation ;
74 - rdfs:label "Independent of operation"^^xsd:string .
75 -
76 -:Living_Quarter_Shutdown
77 - rdf:type :ShutdownContent ;
78 - rdfs:label "Living Quarter Shutdown"^^xsd:string .
79 -
80 -:Non-Scheduled_Shutdown
81 - rdf:type :ShutdownType ;
82 - rdfs:label "Non-Scheduled Shutdown"^^xsd:string .
83 -
84 -:Not_Critical
85 - rdf:type :ShutdownPriority ;
86 - rdfs:label "Not Critical"^^xsd:string .
87 -
88 -:ProductionShutdown
89 - rdf:type :ShutdownContent ;
90 - rdfs:label "Production Shutdown"^^xsd:string .
91 -
92 -:Revision_Shutdown
93 - rdf:type :ShutdownType ;
94 - rdfs:label "Revision Shutdown"^^xsd:string .
95 -
96 -:Safety_Test_Shutdown
97 - rdf:type :ShutdownContent ;
98 - rdfs:label "Safety Test Shutdown"^^xsd:string .
99 -
100 -:Scheduled_Shutdown
101 - rdf:type :ShutdownType ;
102 - rdfs:label "Scheduled Shutdown"^^xsd:string .
103 -
104 -:ShutdownContent
105 - rdf:type owl:Class ;
106 - rdfs:label "Shutdown content"^^xsd:string ;
107 - rdfs:subClassOf owl:Thing .
108 -
109 -:ShutdownOperation
110 - rdf:type owl:Class ;
111 - rdfs:label "Shutdown operation"^^xsd:string ;
112 - rdfs:subClassOf owl:Thing .
113 -
114 -:ShutdownPeriod
115 - rdf:type owl:Class ;
116 - rdfs:label "Shutdown period"^^xsd:string ;
117 - rdfs:subClassOf owl:Thing .
118 -
119 -:ShutdownPriority
120 - rdf:type owl:Class ;
121 - rdfs:label "Shutdown priority"^^xsd:string ;
122 - rdfs:subClassOf owl:Thing .
123 -
124 -:ShutdownType
125 - rdf:type owl:Class ;
126 - rdfs:label "Shutdown type"^^xsd:string ;
127 - rdfs:subClassOf owl:Thing .
128 -
129 -:Shutdown_Period
130 - rdf:type :ShutdownPeriod ;
131 - rdfs:label "Shutdown Period"^^xsd:string .
132 -
133 -:Shutdown_not_evaluated
134 - rdf:type :ShutdownOperation ;
135 - rdfs:label "Shutdown not evaluated"^^xsd:string .
136 -
137 -:System_Shutdown
138 - rdf:type :ShutdownContent ;
139 - rdfs:label "System Shutdown"^^xsd:string .
140 -
141 -:Train_Shutdown
142 - rdf:type :ShutdownContent ;
143 - rdfs:label "Train Shutdown"^^xsd:string .
144 -
145 -:Water_Injection_Shutdown
146 - rdf:type :ShutdownContent ;
147 - rdfs:label "Water Injection Shutdown"^^xsd:string .
148 -
149 -:Water_Production_Shutdown
150 - rdf:type :ShutdownContent ;
151 - rdfs:label "Water Production Shutdown"^^xsd:string .
152 -
153 -:Well_Transfer
154 - rdf:type :ShutdownContent ;
155 - rdfs:label "Well Transfer "^^xsd:string .
156 -
157 -:hasShutdownContent
158 - rdf:type owl:ObjectProperty ;
159 - rdfs:label "has shutdown content"^^xsd:string ;
160 - rdfs:range :ShutdownContent .
161 -
162 -:hasShutdownEnd
163 - rdf:type owl:DatatypeProperty ;
164 - rdfs:domain :ShutdownOperation ;
165 - rdfs:label "has shutdwn end"^^xsd:string ;
166 - rdfs:range xsd:dateTime .
167 -
168 -:hasShutdownOperation
169 - rdf:type owl:ObjectProperty ;
170 - rdfs:label "has shutdown operation"^^xsd:string ;
171 - rdfs:range :ShutdownOperation .
172 -
173 -:hasShutdownPeriod
174 - rdf:type owl:ObjectProperty ;
175 - rdfs:label "has shutdown period"^^xsd:string ;
176 - rdfs:range :ShutdownPeriod .
177 -
178 -:hasShutdownPriority
179 - rdf:type owl:ObjectProperty ;
180 - rdfs:label "has shutdown priority"^^xsd:string ;
181 - rdfs:range :ShutdownPriority .
182 -
183 -:hasShutdownStart
184 - rdf:type owl:DatatypeProperty ;
185 - rdfs:domain :ShutdownOperation ;
186 - rdfs:label "has shutdown start"^^xsd:string ;
187 - rdfs:range xsd:dateTime .
188 -
189 -:hasShutdownType
190 - rdf:type owl:ObjectProperty ;
191 - rdfs:label "has shutdown type"^^xsd:string ;
192 - rdfs:range :ShutdownType .