Tore Christiansen

Clean up individuals

...@@ -14,97 +14,50 @@ ILAP: ...@@ -14,97 +14,50 @@ ILAP:
14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
15 15
16 ILAP:Activity 16 ILAP:Activity
17 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 17 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
18 rdfs:label "Activity"^^xsd:string ; 18 rdfs:label "Activity"^^xsd:string ;
19 rdfs:subClassOf 19 rdfs:subClassOf
20 [ rdf:type owl:Restriction ; 20 [ rdf:type owl:Restriction ;
21 - owl:allValuesFrom ILAP:Status ; 21 + owl:allValuesFrom ILAP:Discipline ;
22 - owl:onProperty ILAP:hasActivityStatus 22 + owl:onProperty ILAP:hasActivityDiscipline
23 ] ; 23 ] ;
24 rdfs:subClassOf 24 rdfs:subClassOf
25 [ rdf:type owl:Restriction ; 25 [ rdf:type owl:Restriction ;
26 - owl:onProperty ILAP:hasExternalReference ; 26 + owl:allValuesFrom ILAP:Calendar ;
27 - owl:someValuesFrom ILAP:ExternalReference 27 + owl:onProperty ILAP:hasActivityCalendar
28 ] ; 28 ] ;
29 rdfs:subClassOf 29 rdfs:subClassOf
30 [ rdf:type owl:Restriction ; 30 [ rdf:type owl:Restriction ;
31 - owl:allValuesFrom ILAP:Calendar ; 31 + owl:onProperty ILAP:hasExternalReference ;
32 - owl:onProperty ILAP:hasActivityCalendar 32 + owl:someValuesFrom ILAP:ExternalReference
33 ] ; 33 ] ;
34 rdfs:subClassOf 34 rdfs:subClassOf
35 [ rdf:type owl:Restriction ; 35 [ rdf:type owl:Restriction ;
36 - owl:allValuesFrom ILAP:Discipline ; 36 + owl:allValuesFrom ILAP:Status ;
37 - owl:onProperty ILAP:hasActivityDiscipline 37 + owl:onProperty ILAP:hasActivityStatus
38 ] . 38 ] .
39 39
40 ILAP:ActivityDependency 40 ILAP:ActivityDependency
41 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 41 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
42 rdfs:label "Activity Dependency"^^xsd:string ; 42 rdfs:label "Activity Dependency"^^xsd:string ;
43 rdfs:subClassOf ILAP:Constraint ; 43 rdfs:subClassOf ILAP:Constraint ;
44 rdfs:subClassOf 44 rdfs:subClassOf
45 [ rdf:type owl:Restriction ; 45 [ rdf:type owl:Restriction ;
46 owl:onClass ILAP:Activity ; 46 owl:onClass ILAP:Activity ;
47 - owl:onProperty ILAP:hasSuccessorActivity ; 47 + owl:onProperty ILAP:hasPredecessorActivity ;
48 owl:qualifiedCardinality 48 owl:qualifiedCardinality
49 "1"^^xsd:nonNegativeInteger 49 "1"^^xsd:nonNegativeInteger
50 ] ; 50 ] ;
51 rdfs:subClassOf 51 rdfs:subClassOf
52 [ rdf:type owl:Restriction ; 52 [ rdf:type owl:Restriction ;
53 owl:onClass ILAP:Activity ; 53 owl:onClass ILAP:Activity ;
54 - owl:onProperty ILAP:hasPredecessorActivity ; 54 + owl:onProperty ILAP:hasSuccessorActivity ;
55 owl:qualifiedCardinality 55 owl:qualifiedCardinality
56 "1"^^xsd:nonNegativeInteger 56 "1"^^xsd:nonNegativeInteger
57 ] . 57 ] .
58 58
59 -ILAP:ActivityInPlan_1
60 - rdf:type ILAP:PlannedActivity ;
61 - rdfs:label "Activity in plan 1"^^xsd:string ;
62 - ILAP:hasActivityActualProgressPercent
63 - "75"^^xsd:float ;
64 - ILAP:hasActivityContractor
65 - BRREG:BakerHughes ;
66 - ILAP:hasActivityEstimatedWeight
67 - "10500"^^xsd:float ;
68 - ILAP:hasActivityLocation
69 - <http://data.posccaesar.org/NCS_PLANNING/NPDelement_1> ;
70 - ILAP:hasActivityPhysicalPercentComplete
71 - "70"^^xsd:float ;
72 - ILAP:hasActivityPlan
73 - <http://data.posccaesar.org/Data/UC1/ProjectPlan_1> ;
74 - ILAP:hasActivityPlannedProgressPercent
75 - 80 ;
76 - ILAP:hasActivityPlannedResource
77 - <http://data.posccaesar.org/Data/UC1/PlannedResource_1> ;
78 - ILAP:hasActivityRegulator
79 - BRREG:NPD ;
80 - ILAP:hasActivityResponsiblePerson
81 - <http://data.posccaesar.org/pob/RolfHansen> ;
82 - ILAP:hasActivityStatus
83 - ILAP:Active ;
84 - ILAP:hasActivitySupplier
85 - BRREG:BakerHughes ;
86 - ILAP:hasActivityTaskLeader
87 - <http://data.posccaesar.org/pob/NiloErdal> ;
88 - ILAP:hasActivityVendor
89 - BRREG:BakerHughes ;
90 - ILAP:hasActivityWBSelement
91 - ILAP:ActivityWBS_1 ;
92 - ILAP:hasActivityWeight
93 - "10800"^^xsd:float ;
94 - ILAP:hasActivityWorkVolume
95 - "250"^^xsd:float ;
96 - ILAP:hasExternalReference
97 - <http://data.posccaesar.org/Data/UC1/ExternalReference_1> ;
98 - ILAP:hasFixedFinish "2014-10-17"^^xsd:date ;
99 - ILAP:hasFixedStart "2014-09-01"^^xsd:date ;
100 - ILAP:hasObjectDescription
101 - "Specific text object"^^xsd:string ;
102 - ILAP:hasObjectName "Soecific object name"^^xsd:string ;
103 - ILAP:hasObjectReferenceID
104 - "Specific object ID"^^xsd:string .
105 -
106 ILAP:ActivityPlan 59 ILAP:ActivityPlan
107 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 60 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
108 rdfs:label "Activity Plan"^^xsd:string ; 61 rdfs:label "Activity Plan"^^xsd:string ;
109 rdfs:subClassOf ILAP:Network ; 62 rdfs:subClassOf ILAP:Network ;
110 rdfs:subClassOf 63 rdfs:subClassOf
...@@ -119,7 +72,7 @@ ILAP:ActivityStatus ...@@ -119,7 +72,7 @@ ILAP:ActivityStatus
119 rdfs:subClassOf ILAP:Status . 72 rdfs:subClassOf ILAP:Status .
120 73
121 ILAP:ActivityWBS 74 ILAP:ActivityWBS
122 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; 75 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ;
123 rdfs:label "Activity WBS"^^xsd:string ; 76 rdfs:label "Activity WBS"^^xsd:string ;
124 rdfs:subClassOf ILAP:Network . 77 rdfs:subClassOf ILAP:Network .
125 78
...@@ -134,15 +87,15 @@ ILAP:After_Shutdown ...@@ -134,15 +87,15 @@ ILAP:After_Shutdown
134 ILAP:Application 87 ILAP:Application
135 rdf:type owl:Class ; 88 rdf:type owl:Class ;
136 rdfs:label "Application"^^xsd:string ; 89 rdfs:label "Application"^^xsd:string ;
137 - rdfs:subClassOf owl:Thing , <http://data.posccaesar.org/rdl/RDS43165907246> . 90 + rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS43165907246> , owl:Thing .
138 91
139 ILAP:Asset 92 ILAP:Asset
140 rdf:type owl:Class ; 93 rdf:type owl:Class ;
141 rdfs:label "Asset"^^xsd:string ; 94 rdfs:label "Asset"^^xsd:string ;
142 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13318199> . 95 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS13318199> , owl:Thing .
143 96
144 ILAP:Baseline 97 ILAP:Baseline
145 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 98 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
146 rdfs:label "Baseline"^^xsd:string ; 99 rdfs:label "Baseline"^^xsd:string ;
147 rdfs:subClassOf ILAP:Network . 100 rdfs:subClassOf ILAP:Network .
148 101
...@@ -160,9 +113,9 @@ ILAP:CAPEX ...@@ -160,9 +113,9 @@ ILAP:CAPEX
160 rdfs:label "CAPEX"^^xsd:string . 113 rdfs:label "CAPEX"^^xsd:string .
161 114
162 ILAP:Calendar 115 ILAP:Calendar
163 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 116 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
164 rdfs:label "Calendar"^^xsd:string ; 117 rdfs:label "Calendar"^^xsd:string ;
165 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ; 118 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7014210> ;
166 rdfs:subClassOf 119 rdfs:subClassOf
167 [ rdf:type owl:Restriction ; 120 [ rdf:type owl:Restriction ;
168 owl:allValuesFrom ILAP:CalendarFreePeriod ; 121 owl:allValuesFrom ILAP:CalendarFreePeriod ;
...@@ -170,14 +123,14 @@ ILAP:Calendar ...@@ -170,14 +123,14 @@ ILAP:Calendar
170 ] . 123 ] .
171 124
172 ILAP:CalendarDay 125 ILAP:CalendarDay
173 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; 126 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
174 rdfs:label "Calendar day"^^xsd:string ; 127 rdfs:label "Calendar day"^^xsd:string ;
175 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , owl:Thing . 128 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> .
176 129
177 ILAP:CalendarFreePeriod 130 ILAP:CalendarFreePeriod
178 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; 131 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ;
179 rdfs:label "Calendar free period"^^xsd:string ; 132 rdfs:label "Calendar free period"^^xsd:string ;
180 - rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ; 133 + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ;
181 rdfs:subClassOf 134 rdfs:subClassOf
182 [ rdf:type owl:Restriction ; 135 [ rdf:type owl:Restriction ;
183 owl:onClass ILAP:Calendar ; 136 owl:onClass ILAP:Calendar ;
...@@ -189,28 +142,28 @@ ILAP:CalendarFreePeriod ...@@ -189,28 +142,28 @@ ILAP:CalendarFreePeriod
189 ] . 142 ] .
190 143
191 ILAP:CalendarFreePeriodWeekRepeat 144 ILAP:CalendarFreePeriodWeekRepeat
192 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; 145 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ;
193 rdfs:label "Free day"^^xsd:string ; 146 rdfs:label "Free day"^^xsd:string ;
194 - rdfs:subClassOf ILAP:CalendarFreePeriod , <http://posccaesar.org/rdl/page/RDS356215271> . 147 + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod .
195 148
196 ILAP:CalendarHour 149 ILAP:CalendarHour
197 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; 150 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
198 rdfs:label "calendar hour"^^xsd:string ; 151 rdfs:label "calendar hour"^^xsd:string ;
199 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> , owl:Thing . 152 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS380969> , <http://posccaesar.org/rdl/RDS1326734> .
200 153
201 ILAP:CalendarPeriod 154 ILAP:CalendarPeriod
202 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ; 155 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> ;
203 rdfs:label "Calendar period"^^xsd:string ; 156 rdfs:label "Calendar period"^^xsd:string ;
204 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ; 157 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS4316824755> , owl:Thing ;
205 rdfs:subClassOf 158 rdfs:subClassOf
206 [ rdf:type owl:Restriction ; 159 [ rdf:type owl:Restriction ;
207 - owl:allValuesFrom ILAP:CalendarHour ; 160 + owl:allValuesFrom ILAP:CalendarDay ;
208 - owl:onProperty ILAP:hasCalendarPeriodHour 161 + owl:onProperty ILAP:hasCalendarPeriodDay
209 ] ; 162 ] ;
210 rdfs:subClassOf 163 rdfs:subClassOf
211 [ rdf:type owl:Restriction ; 164 [ rdf:type owl:Restriction ;
212 - owl:allValuesFrom ILAP:CalendarDay ; 165 + owl:allValuesFrom ILAP:CalendarHour ;
213 - owl:onProperty ILAP:hasCalendarPeriodDay 166 + owl:onProperty ILAP:hasCalendarPeriodHour
214 ] . 167 ] .
215 168
216 ILAP:Campaign 169 ILAP:Campaign
...@@ -229,12 +182,12 @@ ILAP:Change_over ...@@ -229,12 +182,12 @@ ILAP:Change_over
229 ILAP:Constraint 182 ILAP:Constraint
230 rdf:type owl:Class ; 183 rdf:type owl:Class ;
231 rdfs:label "Constraint"^^xsd:string ; 184 rdfs:label "Constraint"^^xsd:string ;
232 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS330344> . 185 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS330344> , owl:Thing .
233 186
234 ILAP:Contract 187 ILAP:Contract
235 rdf:type owl:Class ; 188 rdf:type owl:Class ;
236 rdfs:label "Contract"^^xsd:string ; 189 rdfs:label "Contract"^^xsd:string ;
237 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7953078> . 190 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7953078> , owl:Thing .
238 191
239 ILAP:Contractor 192 ILAP:Contractor
240 rdf:type owl:Class ; 193 rdf:type owl:Class ;
...@@ -249,7 +202,7 @@ ILAP:ControlSchedule ...@@ -249,7 +202,7 @@ ILAP:ControlSchedule
249 ILAP:Cost 202 ILAP:Cost
250 rdf:type owl:Class ; 203 rdf:type owl:Class ;
251 rdfs:label "Cost"^^xsd:string ; 204 rdfs:label "Cost"^^xsd:string ;
252 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945027> . 205 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945027> , owl:Thing .
253 206
254 ILAP:CostBased 207 ILAP:CostBased
255 rdf:type owl:Class ; 208 rdf:type owl:Class ;
...@@ -257,14 +210,14 @@ ILAP:CostBased ...@@ -257,14 +210,14 @@ ILAP:CostBased
257 rdfs:subClassOf ILAP:Resource . 210 rdfs:subClassOf ILAP:Resource .
258 211
259 ILAP:CurrentSchedule 212 ILAP:CurrentSchedule
260 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 213 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
261 rdfs:label "Current schedule"^^xsd:string ; 214 rdfs:label "Current schedule"^^xsd:string ;
262 rdfs:subClassOf ILAP:Schedule . 215 rdfs:subClassOf ILAP:Schedule .
263 216
264 ILAP:Data 217 ILAP:Data
265 rdf:type owl:Class ; 218 rdf:type owl:Class ;
266 rdfs:label "Data"^^xsd:string ; 219 rdfs:label "Data"^^xsd:string ;
267 - rdfs:subClassOf ILAP:Information , <http://posccaesar.org/rdl/RDS11708918> ; 220 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS11708918> , ILAP:Information ;
268 rdfs:subClassOf 221 rdfs:subClassOf
269 [ rdf:type owl:Restriction ; 222 [ rdf:type owl:Restriction ;
270 owl:onClass ILAP:Project ; 223 owl:onClass ILAP:Project ;
...@@ -293,9 +246,9 @@ ILAP:Dependent_on_Shutdown ...@@ -293,9 +246,9 @@ ILAP:Dependent_on_Shutdown
293 rdfs:label "Dependent on Shutdown"^^xsd:string . 246 rdfs:label "Dependent on Shutdown"^^xsd:string .
294 247
295 ILAP:Discipline 248 ILAP:Discipline
296 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; 249 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
297 rdfs:label "Discipline"^^xsd:string ; 250 rdfs:label "Discipline"^^xsd:string ;
298 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS6811233> . 251 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS6811233> , owl:Thing .
299 252
300 ILAP:Drilling_Shutdown 253 ILAP:Drilling_Shutdown
301 rdf:type ILAP:ShutdownContent ; 254 rdf:type ILAP:ShutdownContent ;
...@@ -314,13 +267,15 @@ ILAP:Equipment_Shutdown ...@@ -314,13 +267,15 @@ ILAP:Equipment_Shutdown
314 rdfs:label "Equipment Shutdown"^^xsd:string . 267 rdfs:label "Equipment Shutdown"^^xsd:string .
315 268
316 ILAP:ExternalReference 269 ILAP:ExternalReference
317 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ; 270 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ;
318 rdfs:label "External Reference"^^xsd:string ; 271 rdfs:label "External Reference"^^xsd:string ;
319 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ; 272 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/page/RDS720105291> ;
320 rdfs:subClassOf 273 rdfs:subClassOf
321 [ rdf:type owl:Restriction ; 274 [ rdf:type owl:Restriction ;
322 - owl:allValuesFrom ILAP:Application ; 275 + owl:onDataRange xsd:string ;
323 - owl:onProperty ILAP:hasReferenceApplication 276 + owl:onProperty ILAP:hasObjectReferenceID ;
277 + owl:qualifiedCardinality
278 + "1"^^xsd:nonNegativeInteger
324 ] ; 279 ] ;
325 rdfs:subClassOf 280 rdfs:subClassOf
326 [ rdf:type owl:Restriction ; 281 [ rdf:type owl:Restriction ;
...@@ -329,10 +284,8 @@ ILAP:ExternalReference ...@@ -329,10 +284,8 @@ ILAP:ExternalReference
329 ] ; 284 ] ;
330 rdfs:subClassOf 285 rdfs:subClassOf
331 [ rdf:type owl:Restriction ; 286 [ rdf:type owl:Restriction ;
332 - owl:onDataRange xsd:string ; 287 + owl:allValuesFrom ILAP:Application ;
333 - owl:onProperty ILAP:hasObjectReferenceID ; 288 + owl:onProperty ILAP:hasReferenceApplication
334 - owl:qualifiedCardinality
335 - "1"^^xsd:nonNegativeInteger
336 ] . 289 ] .
337 290
338 ILAP:Facility 291 ILAP:Facility
...@@ -345,14 +298,14 @@ ILAP:Field_Shutdown ...@@ -345,14 +298,14 @@ ILAP:Field_Shutdown
345 rdfs:label "Field Shutdown"^^xsd:string . 298 rdfs:label "Field Shutdown"^^xsd:string .
346 299
347 ILAP:FinishToFinish 300 ILAP:FinishToFinish
348 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 301 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
349 rdfs:label "Finish to finish"^^xsd:string ; 302 rdfs:label "Finish to finish"^^xsd:string ;
350 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 303 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
351 304
352 ILAP:FinishToStart 305 ILAP:FinishToStart
353 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 306 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
354 rdfs:label "Finish to start"^^xsd:string ; 307 rdfs:label "Finish to start"^^xsd:string ;
355 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 308 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
356 309
357 ILAP:FunctionalLocation 310 ILAP:FunctionalLocation
358 rdf:type owl:Class ; 311 rdf:type owl:Class ;
...@@ -403,7 +356,7 @@ ILAP:IndependentOfOperation ...@@ -403,7 +356,7 @@ ILAP:IndependentOfOperation
403 ILAP:Information 356 ILAP:Information
404 rdf:type owl:Class ; 357 rdf:type owl:Class ;
405 rdfs:label "Information"^^xsd:string ; 358 rdfs:label "Information"^^xsd:string ;
406 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS11711488> . 359 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS11711488> , owl:Thing .
407 360
408 ILAP:Knowledge 361 ILAP:Knowledge
409 rdf:type owl:Class ; 362 rdf:type owl:Class ;
...@@ -415,7 +368,7 @@ ILAP:LiftingOperation ...@@ -415,7 +368,7 @@ ILAP:LiftingOperation
415 rdfs:label "Lifting operation"^^xsd:string . 368 rdfs:label "Lifting operation"^^xsd:string .
416 369
417 ILAP:LiveSchedule 370 ILAP:LiveSchedule
418 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 371 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
419 rdfs:label "Live schedule"^^xsd:string ; 372 rdfs:label "Live schedule"^^xsd:string ;
420 rdfs:subClassOf ILAP:Schedule . 373 rdfs:subClassOf ILAP:Schedule .
421 374
...@@ -424,9 +377,9 @@ ILAP:Living_Quarter_Shutdown ...@@ -424,9 +377,9 @@ ILAP:Living_Quarter_Shutdown
424 rdfs:label "Living Quarter Shutdown"^^xsd:string . 377 rdfs:label "Living Quarter Shutdown"^^xsd:string .
425 378
426 ILAP:Location 379 ILAP:Location
427 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ; 380 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ;
428 rdfs:label "Location"^^xsd:string ; 381 rdfs:label "Location"^^xsd:string ;
429 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing . 382 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS943618371> .
430 383
431 ILAP:LowCriticality 384 ILAP:LowCriticality
432 rdf:type ILAP:DegreeOfCriticality ; 385 rdf:type ILAP:DegreeOfCriticality ;
...@@ -437,7 +390,7 @@ ILAP:LowPriority ...@@ -437,7 +390,7 @@ ILAP:LowPriority
437 rdfs:label "Low priority"^^xsd:string . 390 rdfs:label "Low priority"^^xsd:string .
438 391
439 ILAP:Milestone 392 ILAP:Milestone
440 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ; 393 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> , owl:Class ;
441 rdfs:label "Milestone"^^xsd:string . 394 rdfs:label "Milestone"^^xsd:string .
442 395
443 ILAP:MiniShutdown 396 ILAP:MiniShutdown
...@@ -447,7 +400,7 @@ ILAP:MiniShutdown ...@@ -447,7 +400,7 @@ ILAP:MiniShutdown
447 ILAP:Network 400 ILAP:Network
448 rdf:type owl:Class ; 401 rdf:type owl:Class ;
449 rdfs:label "Network"^^xsd:string ; 402 rdfs:label "Network"^^xsd:string ;
450 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1293947091> . 403 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1293947091> , owl:Thing .
451 404
452 ILAP:Non-Scheduled_Shutdown 405 ILAP:Non-Scheduled_Shutdown
453 rdf:type ILAP:ShutdownType ; 406 rdf:type ILAP:ShutdownType ;
...@@ -491,49 +444,49 @@ ILAP:PhysicalLocation ...@@ -491,49 +444,49 @@ ILAP:PhysicalLocation
491 rdfs:subClassOf ILAP:Location . 444 rdfs:subClassOf ILAP:Location .
492 445
493 ILAP:PlanClassifier 446 ILAP:PlanClassifier
494 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; 447 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
495 rdfs:label "Plan classifier"^^xsd:string ; 448 rdfs:label "Plan classifier"^^xsd:string ;
496 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , owl:Thing . 449 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> .
497 450
498 ILAP:PlanContentType 451 ILAP:PlanContentType
499 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; 452 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
500 rdfs:label "Plan content type"^^xsd:string ; 453 rdfs:label "Plan content type"^^xsd:string ;
501 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS892484261> , ILAP:PlanClassifier . 454 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> .
502 455
503 ILAP:PlanContractType 456 ILAP:PlanContractType
504 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; 457 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
505 rdfs:label "Plan contract type"^^xsd:string ; 458 rdfs:label "Plan contract type"^^xsd:string ;
506 rdfs:subClassOf ILAP:PlanClassifier . 459 rdfs:subClassOf ILAP:PlanClassifier .
507 460
508 ILAP:PlanExpenseType 461 ILAP:PlanExpenseType
509 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; 462 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
510 rdfs:label "Plan expense type"^^xsd:string ; 463 rdfs:label "Plan expense type"^^xsd:string ;
511 rdfs:subClassOf ILAP:PlanClassifier . 464 rdfs:subClassOf ILAP:PlanClassifier .
512 465
513 ILAP:PlanGeoArea 466 ILAP:PlanGeoArea
514 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ; 467 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> ;
515 rdfs:label "Plan geographic area"^^xsd:string ; 468 rdfs:label "Plan geographic area"^^xsd:string ;
516 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . 469 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
517 470
518 ILAP:PlanLevel 471 ILAP:PlanLevel
519 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; 472 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
520 rdfs:label "Plan level"^^xsd:string ; 473 rdfs:label "Plan level"^^xsd:string ;
521 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . 474 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
522 475
523 ILAP:PlanLifecycleStage 476 ILAP:PlanLifecycleStage
524 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 477 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
525 rdfs:label "Plan lifecycle stage"^^xsd:string ; 478 rdfs:label "Plan lifecycle stage"^^xsd:string ;
526 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . 479 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier .
527 480
528 ILAP:PlanObjectiveType 481 ILAP:PlanObjectiveType
529 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ; 482 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> , owl:Class ;
530 rdfs:label "Plan objective type"^^xsd:string ; 483 rdfs:label "Plan objective type"^^xsd:string ;
531 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS43168516168> . 484 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier .
532 485
533 ILAP:PlanProjectType 486 ILAP:PlanProjectType
534 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; 487 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
535 rdfs:label "Plan project type"^^xsd:string ; 488 rdfs:label "Plan project type"^^xsd:string ;
536 - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS10012097710> . 489 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier .
537 490
538 ILAP:PlannedActivity 491 ILAP:PlannedActivity
539 rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 492 rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
...@@ -542,7 +495,7 @@ ILAP:PlannedActivity ...@@ -542,7 +495,7 @@ ILAP:PlannedActivity
542 rdfs:subClassOf 495 rdfs:subClassOf
543 [ rdf:type owl:Restriction ; 496 [ rdf:type owl:Restriction ;
544 owl:allValuesFrom ILAP:ActivityDependency ; 497 owl:allValuesFrom ILAP:ActivityDependency ;
545 - owl:onProperty ILAP:hasActivityPredecessor 498 + owl:onProperty ILAP:hasActivitySuccessor
546 ] ; 499 ] ;
547 rdfs:subClassOf 500 rdfs:subClassOf
548 [ rdf:type owl:Restriction ; 501 [ rdf:type owl:Restriction ;
...@@ -551,25 +504,18 @@ ILAP:PlannedActivity ...@@ -551,25 +504,18 @@ ILAP:PlannedActivity
551 ] ; 504 ] ;
552 rdfs:subClassOf 505 rdfs:subClassOf
553 [ rdf:type owl:Restriction ; 506 [ rdf:type owl:Restriction ;
554 - owl:allValuesFrom ILAP:ResourceProfile ;
555 - owl:onProperty ILAP:hasActivityResourceProfile
556 - ] ;
557 - rdfs:subClassOf
558 - [ rdf:type owl:Restriction ;
559 owl:allValuesFrom ILAP:Location ; 507 owl:allValuesFrom ILAP:Location ;
560 owl:onProperty ILAP:hasActivityLocation 508 owl:onProperty ILAP:hasActivityLocation
561 ] ; 509 ] ;
562 rdfs:subClassOf 510 rdfs:subClassOf
563 [ rdf:type owl:Restriction ; 511 [ rdf:type owl:Restriction ;
564 - owl:allValuesFrom ILAP:ActivityDependency ; 512 + owl:onProperty ILAP:hasActivityDiscipline ;
565 - owl:onProperty ILAP:hasActivitySuccessor 513 + owl:someValuesFrom ILAP:Discipline
566 ] ; 514 ] ;
567 rdfs:subClassOf 515 rdfs:subClassOf
568 [ rdf:type owl:Restriction ; 516 [ rdf:type owl:Restriction ;
569 - owl:maxQualifiedCardinality 517 + owl:allValuesFrom ILAP:ActivityWBS ;
570 - "1"^^xsd:nonNegativeInteger ; 518 + owl:onProperty ILAP:hasActivityWBSelement
571 - owl:onClass ILAP:ProjectExecutionPlan ;
572 - owl:onProperty ILAP:hasActivityPlan
573 ] ; 519 ] ;
574 rdfs:subClassOf 520 rdfs:subClassOf
575 [ rdf:type owl:Restriction ; 521 [ rdf:type owl:Restriction ;
...@@ -580,8 +526,10 @@ ILAP:PlannedActivity ...@@ -580,8 +526,10 @@ ILAP:PlannedActivity
580 ] ; 526 ] ;
581 rdfs:subClassOf 527 rdfs:subClassOf
582 [ rdf:type owl:Restriction ; 528 [ rdf:type owl:Restriction ;
583 - owl:onProperty ILAP:hasActivityDiscipline ; 529 + owl:maxQualifiedCardinality
584 - owl:someValuesFrom ILAP:Discipline 530 + "1"^^xsd:nonNegativeInteger ;
531 + owl:onClass ILAP:ProjectExecutionPlan ;
532 + owl:onProperty ILAP:hasActivityPlan
585 ] ; 533 ] ;
586 rdfs:subClassOf 534 rdfs:subClassOf
587 [ rdf:type owl:Restriction ; 535 [ rdf:type owl:Restriction ;
...@@ -590,10 +538,62 @@ ILAP:PlannedActivity ...@@ -590,10 +538,62 @@ ILAP:PlannedActivity
590 ] ; 538 ] ;
591 rdfs:subClassOf 539 rdfs:subClassOf
592 [ rdf:type owl:Restriction ; 540 [ rdf:type owl:Restriction ;
593 - owl:allValuesFrom ILAP:ActivityWBS ; 541 + owl:allValuesFrom ILAP:ActivityDependency ;
594 - owl:onProperty ILAP:hasActivityWBSelement 542 + owl:onProperty ILAP:hasActivityPredecessor
543 + ] ;
544 + rdfs:subClassOf
545 + [ rdf:type owl:Restriction ;
546 + owl:allValuesFrom ILAP:ResourceProfile ;
547 + owl:onProperty ILAP:hasActivityResourceProfile
595 ] . 548 ] .
596 549
550 +ILAP:PlannedActivity_1
551 + rdf:type ILAP:PlannedActivity ;
552 + rdfs:label "Planned activity 1"^^xsd:string ;
553 + ILAP:hasActivityActualProgressPercent
554 + "75"^^xsd:float ;
555 + ILAP:hasActivityContractor
556 + BRREG:BakerHughes ;
557 + ILAP:hasActivityEstimatedWeight
558 + "10500"^^xsd:float ;
559 + ILAP:hasActivityLocation
560 + <http://data.posccaesar.org/NCS_PLANNING/NPDelement_1> ;
561 + ILAP:hasActivityPhysicalPercentComplete
562 + "70"^^xsd:float ;
563 + ILAP:hasActivityPlan
564 + <http://data.posccaesar.org/Data/UC1/ProjectPlan_1> ;
565 + ILAP:hasActivityPlannedProgressPercent
566 + 80 ;
567 + ILAP:hasActivityPlannedResource
568 + <http://data.posccaesar.org/Data/UC1/PlannedResource_1> ;
569 + ILAP:hasActivityRegulator
570 + BRREG:NPD ;
571 + ILAP:hasActivityResponsiblePerson
572 + <http://data.posccaesar.org/pob/RolfHansen> ;
573 + ILAP:hasActivityStatus
574 + ILAP:Active ;
575 + ILAP:hasActivitySupplier
576 + BRREG:BakerHughes ;
577 + ILAP:hasActivityTaskLeader
578 + <http://data.posccaesar.org/pob/NiloErdal> ;
579 + ILAP:hasActivityVendor
580 + BRREG:BakerHughes ;
581 + ILAP:hasActivityWBSelement
582 + ILAP:ActivityWBS_1 ;
583 + ILAP:hasActivityWeight
584 + "10800"^^xsd:float ;
585 + ILAP:hasActivityWorkVolume
586 + "250"^^xsd:float ;
587 + ILAP:hasExternalReference
588 + <http://data.posccaesar.org/Data/UC1/ExternalReference_1> ;
589 + ILAP:hasFixedFinish "2014-10-17"^^xsd:date ;
590 + ILAP:hasFixedStart "2014-09-01"^^xsd:date ;
591 + ILAP:hasObjectDescription
592 + "Specific text object"^^xsd:string ;
593 + ILAP:hasObjectName "Soecific object name"^^xsd:string ;
594 + ILAP:hasObjectReferenceID
595 + "Specific object ID"^^xsd:string .
596 +
597 ILAP:PlannedMilestone 597 ILAP:PlannedMilestone
598 rdf:type owl:Class ; 598 rdf:type owl:Class ;
599 rdfs:label "Planned Milestone"^^xsd:string ; 599 rdfs:label "Planned Milestone"^^xsd:string ;
...@@ -619,13 +619,18 @@ ILAP:Programme ...@@ -619,13 +619,18 @@ ILAP:Programme
619 rdfs:subClassOf ILAP:Project . 619 rdfs:subClassOf ILAP:Project .
620 620
621 ILAP:Project 621 ILAP:Project
622 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 622 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
623 rdfs:label "Project"^^xsd:string ; 623 rdfs:label "Project"^^xsd:string ;
624 rdfs:subClassOf ILAP:Activity ; 624 rdfs:subClassOf ILAP:Activity ;
625 rdfs:subClassOf 625 rdfs:subClassOf
626 [ rdf:type owl:Restriction ; 626 [ rdf:type owl:Restriction ;
627 - owl:allValuesFrom BRREG:OilCompany ; 627 + owl:allValuesFrom ILAP:Project ;
628 - owl:onProperty ILAP:hasProjectResponsible 628 + owl:onProperty ILAP:hasProjectSubproject
629 + ] ;
630 + rdfs:subClassOf
631 + [ rdf:type owl:Restriction ;
632 + owl:allValuesFrom ILAP:ExternalReference ;
633 + owl:onProperty ILAP:hasExternalReference
629 ] ; 634 ] ;
630 rdfs:subClassOf 635 rdfs:subClassOf
631 [ rdf:type owl:Restriction ; 636 [ rdf:type owl:Restriction ;
...@@ -636,13 +641,8 @@ ILAP:Project ...@@ -636,13 +641,8 @@ ILAP:Project
636 ] ; 641 ] ;
637 rdfs:subClassOf 642 rdfs:subClassOf
638 [ rdf:type owl:Restriction ; 643 [ rdf:type owl:Restriction ;
639 - owl:allValuesFrom ILAP:ExternalReference ; 644 + owl:allValuesFrom BRREG:OilCompany ;
640 - owl:onProperty ILAP:hasExternalReference 645 + owl:onProperty ILAP:hasProjectResponsible
641 - ] ;
642 - rdfs:subClassOf
643 - [ rdf:type owl:Restriction ;
644 - owl:allValuesFrom ILAP:Project ;
645 - owl:onProperty ILAP:hasProjectSubproject
646 ] . 646 ] .
647 647
648 ILAP:ProjectExecutionPlan 648 ILAP:ProjectExecutionPlan
...@@ -651,15 +651,13 @@ ILAP:ProjectExecutionPlan ...@@ -651,15 +651,13 @@ ILAP:ProjectExecutionPlan
651 rdfs:subClassOf ILAP:Network ; 651 rdfs:subClassOf ILAP:Network ;
652 rdfs:subClassOf 652 rdfs:subClassOf
653 [ rdf:type owl:Restriction ; 653 [ rdf:type owl:Restriction ;
654 - owl:maxQualifiedCardinality 654 + owl:onProperty ILAP:hasPlanContentType ;
655 - "1"^^xsd:nonNegativeInteger ; 655 + owl:someValuesFrom ILAP:PlanContentType
656 - owl:onClass ILAP:Project ;
657 - owl:onProperty ILAP:hasPlanProject
658 ] ; 656 ] ;
659 rdfs:subClassOf 657 rdfs:subClassOf
660 [ rdf:type owl:Restriction ; 658 [ rdf:type owl:Restriction ;
661 - owl:allValuesFrom ILAP:PlanLifecycleStage ; 659 + owl:allValuesFrom ILAP:ProjectExecutionPlan ;
662 - owl:onProperty ILAP:hasPlanLifecycleStage 660 + owl:onProperty ILAP:hasPlanSubplan
663 ] ; 661 ] ;
664 rdfs:subClassOf 662 rdfs:subClassOf
665 [ rdf:type owl:Restriction ; 663 [ rdf:type owl:Restriction ;
...@@ -668,55 +666,57 @@ ILAP:ProjectExecutionPlan ...@@ -668,55 +666,57 @@ ILAP:ProjectExecutionPlan
668 ] ; 666 ] ;
669 rdfs:subClassOf 667 rdfs:subClassOf
670 [ rdf:type owl:Restriction ; 668 [ rdf:type owl:Restriction ;
671 - owl:allValuesFrom ILAP:PlanContractType ; 669 + owl:maxQualifiedCardinality
672 - owl:onProperty ILAP:hasPlanContractType 670 + "1"^^xsd:nonNegativeInteger ;
671 + owl:onClass ILAP:PlanLevel ;
672 + owl:onProperty ILAP:hasPlanLevel
673 ] ; 673 ] ;
674 rdfs:subClassOf 674 rdfs:subClassOf
675 [ rdf:type owl:Restriction ; 675 [ rdf:type owl:Restriction ;
676 - owl:allValuesFrom ILAP:ProjectExecutionPlan ; 676 + owl:onProperty ILAP:hasPlanGeoArea ;
677 - owl:onProperty ILAP:hasPlanRollUpPlan 677 + owl:someValuesFrom ILAP:PlanGeoArea
678 ] ; 678 ] ;
679 rdfs:subClassOf 679 rdfs:subClassOf
680 [ rdf:type owl:Restriction ; 680 [ rdf:type owl:Restriction ;
681 - owl:onProperty ILAP:hasPlanProjectType ; 681 + owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ;
682 - owl:someValuesFrom ILAP:PlanProjectType 682 + owl:onProperty ILAP:hasPlanAsset
683 ] ; 683 ] ;
684 rdfs:subClassOf 684 rdfs:subClassOf
685 [ rdf:type owl:Restriction ; 685 [ rdf:type owl:Restriction ;
686 - owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; 686 + owl:allValuesFrom ILAP:PlanLifecycleStage ;
687 - owl:onProperty ILAP:hasPlanAsset 687 + owl:onProperty ILAP:hasPlanLifecycleStage
688 ] ; 688 ] ;
689 rdfs:subClassOf 689 rdfs:subClassOf
690 [ rdf:type owl:Restriction ; 690 [ rdf:type owl:Restriction ;
691 - owl:allValuesFrom BRREG:LegalEntity ; 691 + owl:allValuesFrom ILAP:ProjectExecutionPlan ;
692 - owl:onProperty ILAP:hasPlanResponsible 692 + owl:onProperty ILAP:hasPlanRollUpPlan
693 ] ; 693 ] ;
694 rdfs:subClassOf 694 rdfs:subClassOf
695 [ rdf:type owl:Restriction ; 695 [ rdf:type owl:Restriction ;
696 - owl:onProperty ILAP:hasPlanGeoArea ; 696 + owl:allValuesFrom BRREG:LegalEntity ;
697 - owl:someValuesFrom ILAP:PlanGeoArea 697 + owl:onProperty ILAP:hasPlanResponsible
698 ] ; 698 ] ;
699 rdfs:subClassOf 699 rdfs:subClassOf
700 [ rdf:type owl:Restriction ; 700 [ rdf:type owl:Restriction ;
701 - owl:allValuesFrom ILAP:PlanObjectiveType ; 701 + owl:onProperty ILAP:hasPlanProjectType ;
702 - owl:onProperty ILAP:hasPlanObjectiveType 702 + owl:someValuesFrom ILAP:PlanProjectType
703 ] ; 703 ] ;
704 rdfs:subClassOf 704 rdfs:subClassOf
705 [ rdf:type owl:Restriction ; 705 [ rdf:type owl:Restriction ;
706 - owl:onProperty ILAP:hasPlanContentType ; 706 + owl:maxQualifiedCardinality
707 - owl:someValuesFrom ILAP:PlanContentType 707 + "1"^^xsd:nonNegativeInteger ;
708 + owl:onClass ILAP:Project ;
709 + owl:onProperty ILAP:hasPlanProject
708 ] ; 710 ] ;
709 rdfs:subClassOf 711 rdfs:subClassOf
710 [ rdf:type owl:Restriction ; 712 [ rdf:type owl:Restriction ;
711 - owl:allValuesFrom ILAP:ProjectExecutionPlan ; 713 + owl:allValuesFrom ILAP:PlanContractType ;
712 - owl:onProperty ILAP:hasPlanSubplan 714 + owl:onProperty ILAP:hasPlanContractType
713 ] ; 715 ] ;
714 rdfs:subClassOf 716 rdfs:subClassOf
715 [ rdf:type owl:Restriction ; 717 [ rdf:type owl:Restriction ;
716 - owl:maxQualifiedCardinality 718 + owl:allValuesFrom ILAP:PlanObjectiveType ;
717 - "1"^^xsd:nonNegativeInteger ; 719 + owl:onProperty ILAP:hasPlanObjectiveType
718 - owl:onClass ILAP:PlanLevel ;
719 - owl:onProperty ILAP:hasPlanLevel
720 ] . 720 ] .
721 721
722 ILAP:ProjectType 722 ILAP:ProjectType
...@@ -725,9 +725,9 @@ ILAP:ProjectType ...@@ -725,9 +725,9 @@ ILAP:ProjectType
725 rdfs:subClassOf owl:Thing . 725 rdfs:subClassOf owl:Thing .
726 726
727 ILAP:Regular8To16WorkingDayCalendar 727 ILAP:Regular8To16WorkingDayCalendar
728 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; 728 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
729 rdfs:label "Regular8To16Working day calendar"^^xsd:string ; 729 rdfs:label "Regular8To16Working day calendar"^^xsd:string ;
730 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> . 730 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS7014210> .
731 731
732 ILAP:RemovalOfBarriers 732 ILAP:RemovalOfBarriers
733 rdf:type ILAP:RiskType ; 733 rdf:type ILAP:RiskType ;
...@@ -738,9 +738,9 @@ ILAP:ReservoirDrillingOperation ...@@ -738,9 +738,9 @@ ILAP:ReservoirDrillingOperation
738 rdfs:label "Reservoir drilling operation"^^xsd:string . 738 rdfs:label "Reservoir drilling operation"^^xsd:string .
739 739
740 ILAP:Resource 740 ILAP:Resource
741 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; 741 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ;
742 rdfs:label "Resource"^^xsd:string ; 742 rdfs:label "Resource"^^xsd:string ;
743 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> . 743 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS47466180194> , owl:Thing .
744 744
745 ILAP:ResourceEstimate 745 ILAP:ResourceEstimate
746 rdf:type owl:Class ; 746 rdf:type owl:Class ;
...@@ -748,14 +748,14 @@ ILAP:ResourceEstimate ...@@ -748,14 +748,14 @@ ILAP:ResourceEstimate
748 rdfs:subClassOf ILAP:ResourceStructure . 748 rdfs:subClassOf ILAP:ResourceStructure .
749 749
750 ILAP:ResourceProfile 750 ILAP:ResourceProfile
751 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ; 751 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> , owl:Class ;
752 rdfs:label "Resource profile"^^xsd:string ; 752 rdfs:label "Resource profile"^^xsd:string ;
753 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1685084301> . 753 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing .
754 754
755 ILAP:ResourceProfilePoint 755 ILAP:ResourceProfilePoint
756 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; 756 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ;
757 rdfs:label "resource Profile point"^^xsd:string ; 757 rdfs:label "resource Profile point"^^xsd:string ;
758 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> . 758 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS2213258891> , owl:Thing .
759 759
760 ILAP:ResourceStructure 760 ILAP:ResourceStructure
761 rdf:type owl:Class ; 761 rdf:type owl:Class ;
...@@ -763,17 +763,17 @@ ILAP:ResourceStructure ...@@ -763,17 +763,17 @@ ILAP:ResourceStructure
763 rdfs:subClassOf ILAP:Network . 763 rdfs:subClassOf ILAP:Network .
764 764
765 ILAP:ResponsibleOrganization 765 ILAP:ResponsibleOrganization
766 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; 766 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ;
767 rdfs:label "Responsible organization"^^xsd:string ; 767 rdfs:label "Responsible organization"^^xsd:string ;
768 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS282149> . 768 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS282149> , owl:Thing .
769 769
770 ILAP:ResponsiblePerson 770 ILAP:ResponsiblePerson
771 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ; 771 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> , owl:Class ;
772 rdfs:label "Responsible"^^xsd:string ; 772 rdfs:label "Responsible"^^xsd:string ;
773 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS413954> . 773 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS413954> , owl:Thing .
774 774
775 ILAP:Result 775 ILAP:Result
776 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; 776 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ;
777 rdfs:label "Result"^^xsd:string ; 777 rdfs:label "Result"^^xsd:string ;
778 rdfs:subClassOf owl:Thing . 778 rdfs:subClassOf owl:Thing .
779 779
...@@ -801,9 +801,9 @@ ILAP:Safety_Test_Shutdown ...@@ -801,9 +801,9 @@ ILAP:Safety_Test_Shutdown
801 rdfs:label "Safety Test Shutdown"^^xsd:string . 801 rdfs:label "Safety Test Shutdown"^^xsd:string .
802 802
803 ILAP:Schedule 803 ILAP:Schedule
804 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 804 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
805 rdfs:label "Scheduled Activity Network"^^xsd:string ; 805 rdfs:label "Scheduled Activity Network"^^xsd:string ;
806 - rdfs:subClassOf ILAP:Network , <http://posccaesar.org/rdl/RDS333764> ; 806 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS333764> , ILAP:Network ;
807 rdfs:subClassOf 807 rdfs:subClassOf
808 [ rdf:type owl:Restriction ; 808 [ rdf:type owl:Restriction ;
809 owl:maxQualifiedCardinality 809 owl:maxQualifiedCardinality
...@@ -813,22 +813,22 @@ ILAP:Schedule ...@@ -813,22 +813,22 @@ ILAP:Schedule
813 ] . 813 ] .
814 814
815 ILAP:ScheduledActivity 815 ILAP:ScheduledActivity
816 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 816 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
817 rdfs:label "Activity in Network Schedule"^^xsd:string ; 817 rdfs:label "Activity in Network Schedule"^^xsd:string ;
818 rdfs:subClassOf ILAP:PlannedActivity ; 818 rdfs:subClassOf ILAP:PlannedActivity ;
819 rdfs:subClassOf 819 rdfs:subClassOf
820 [ rdf:type owl:Restriction ; 820 [ rdf:type owl:Restriction ;
821 owl:maxQualifiedCardinality 821 owl:maxQualifiedCardinality
822 "1"^^xsd:nonNegativeInteger ; 822 "1"^^xsd:nonNegativeInteger ;
823 - owl:onClass ILAP:PlannedActivity ; 823 + owl:onClass ILAP:Schedule ;
824 - owl:onProperty ILAP:hasActivityInScheduleActivityInPlan 824 + owl:onProperty ILAP:hasActivitySchedule
825 ] ; 825 ] ;
826 rdfs:subClassOf 826 rdfs:subClassOf
827 [ rdf:type owl:Restriction ; 827 [ rdf:type owl:Restriction ;
828 owl:maxQualifiedCardinality 828 owl:maxQualifiedCardinality
829 "1"^^xsd:nonNegativeInteger ; 829 "1"^^xsd:nonNegativeInteger ;
830 - owl:onClass ILAP:Schedule ; 830 + owl:onClass ILAP:PlannedActivity ;
831 - owl:onProperty ILAP:hasActivitySchedule 831 + owl:onProperty ILAP:hasActivityInScheduleActivityInPlan
832 ] . 832 ] .
833 833
834 ILAP:ScheduledMilestone 834 ILAP:ScheduledMilestone
...@@ -873,9 +873,9 @@ ILAP:Shutdown_not_evaluated ...@@ -873,9 +873,9 @@ ILAP:Shutdown_not_evaluated
873 rdfs:label "Shutdown not evaluated"^^xsd:string . 873 rdfs:label "Shutdown not evaluated"^^xsd:string .
874 874
875 ILAP:Source 875 ILAP:Source
876 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; 876 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ;
877 rdfs:label "Source"^^xsd:string ; 877 rdfs:label "Source"^^xsd:string ;
878 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> . 878 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS13103560> , owl:Thing .
879 879
880 ILAP:SourceSpecifiedUserField 880 ILAP:SourceSpecifiedUserField
881 rdf:type owl:Class ; 881 rdf:type owl:Class ;
...@@ -888,26 +888,26 @@ ILAP:SpecifiedUserField ...@@ -888,26 +888,26 @@ ILAP:SpecifiedUserField
888 rdfs:subClassOf ILAP:UserField . 888 rdfs:subClassOf ILAP:UserField .
889 889
890 ILAP:StartToFinish 890 ILAP:StartToFinish
891 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 891 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
892 rdfs:label "Start to finish"^^xsd:string ; 892 rdfs:label "Start to finish"^^xsd:string ;
893 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 893 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
894 894
895 ILAP:StartToStart 895 ILAP:StartToStart
896 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; 896 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ;
897 rdfs:label "Start to start"^^xsd:string ; 897 rdfs:label "Start to start"^^xsd:string ;
898 - rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . 898 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency .
899 899
900 ILAP:Status 900 ILAP:Status
901 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ; 901 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> ;
902 rdfs:label "Status"^^xsd:string ; 902 rdfs:label "Status"^^xsd:string ;
903 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing . 903 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS427322951> .
904 904
905 ILAP:System_Shutdown 905 ILAP:System_Shutdown
906 rdf:type ILAP:ShutdownContent ; 906 rdf:type ILAP:ShutdownContent ;
907 rdfs:label "System Shutdown"^^xsd:string . 907 rdfs:label "System Shutdown"^^xsd:string .
908 908
909 ILAP:TargetSchedule 909 ILAP:TargetSchedule
910 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 910 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
911 rdfs:label "Target schedule"^^xsd:string ; 911 rdfs:label "Target schedule"^^xsd:string ;
912 rdfs:subClassOf ILAP:Schedule . 912 rdfs:subClassOf ILAP:Schedule .
913 913
...@@ -926,7 +926,7 @@ ILAP:UnitBased ...@@ -926,7 +926,7 @@ ILAP:UnitBased
926 rdfs:subClassOf ILAP:Resource . 926 rdfs:subClassOf ILAP:Resource .
927 927
928 ILAP:UserField 928 ILAP:UserField
929 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; 929 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ;
930 rdfs:label "User field"^^xsd:string ; 930 rdfs:label "User field"^^xsd:string ;
931 rdfs:subClassOf ILAP:Data ; 931 rdfs:subClassOf ILAP:Data ;
932 rdfs:subClassOf 932 rdfs:subClassOf
...@@ -940,7 +940,7 @@ ILAP:UserField ...@@ -940,7 +940,7 @@ ILAP:UserField
940 ILAP:Value 940 ILAP:Value
941 rdf:type owl:Class ; 941 rdf:type owl:Class ;
942 rdfs:label "Value"^^xsd:string ; 942 rdfs:label "Value"^^xsd:string ;
943 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945844> . 943 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945844> , owl:Thing .
944 944
945 ILAP:VesselOperation 945 ILAP:VesselOperation
946 rdf:type ILAP:RiskType ; 946 rdf:type ILAP:RiskType ;
...@@ -955,9 +955,9 @@ ILAP:Water_Production_Shutdown ...@@ -955,9 +955,9 @@ ILAP:Water_Production_Shutdown
955 rdfs:label "Water Production Shutdown"^^xsd:string . 955 rdfs:label "Water Production Shutdown"^^xsd:string .
956 956
957 ILAP:WeekendsFreeCalendar 957 ILAP:WeekendsFreeCalendar
958 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 958 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
959 rdfs:label "Weekends free calendar"^^xsd:string ; 959 rdfs:label "Weekends free calendar"^^xsd:string ;
960 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:Calendar . 960 + rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> .
961 961
962 ILAP:Well_Transfer 962 ILAP:Well_Transfer
963 rdf:type ILAP:ShutdownContent ; 963 rdf:type ILAP:ShutdownContent ;
...@@ -969,18 +969,18 @@ ILAP:WorkOrder ...@@ -969,18 +969,18 @@ ILAP:WorkOrder
969 rdfs:subClassOf ILAP:WorkTask . 969 rdfs:subClassOf ILAP:WorkTask .
970 970
971 ILAP:WorkTask 971 ILAP:WorkTask
972 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 972 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
973 rdfs:label "Work task"^^xsd:string ; 973 rdfs:label "Work task"^^xsd:string ;
974 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , owl:Thing ; 974 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS3149> ;
975 rdfs:subClassOf 975 rdfs:subClassOf
976 [ rdf:type owl:Restriction ; 976 [ rdf:type owl:Restriction ;
977 - owl:allValuesFrom BRREG:LegalEntity ; 977 + owl:onProperty ILAP:hasWorkTaskActivity ;
978 - owl:onProperty ILAP:hasWorkTaskResponsible 978 + owl:someValuesFrom ILAP:Activity
979 ] ; 979 ] ;
980 rdfs:subClassOf 980 rdfs:subClassOf
981 [ rdf:type owl:Restriction ; 981 [ rdf:type owl:Restriction ;
982 - owl:onProperty ILAP:hasWorkTaskActivity ; 982 + owl:allValuesFrom BRREG:LegalEntity ;
983 - owl:someValuesFrom ILAP:Activity 983 + owl:onProperty ILAP:hasWorkTaskResponsible
984 ] . 984 ] .
985 985
986 ILAP:WorkTaskStatus 986 ILAP:WorkTaskStatus
...@@ -1083,7 +1083,7 @@ ILAP:hasActivityPhysicalPercentComplete ...@@ -1083,7 +1083,7 @@ ILAP:hasActivityPhysicalPercentComplete
1083 rdfs:range xsd:float . 1083 rdfs:range xsd:float .
1084 1084
1085 ILAP:hasActivityPlan 1085 ILAP:hasActivityPlan
1086 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1086 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1087 rdfs:domain ILAP:PlannedActivity ; 1087 rdfs:domain ILAP:PlannedActivity ;
1088 rdfs:label "has activity plan"^^xsd:string ; 1088 rdfs:label "has activity plan"^^xsd:string ;
1089 rdfs:range ILAP:ProjectExecutionPlan . 1089 rdfs:range ILAP:ProjectExecutionPlan .
...@@ -1131,7 +1131,7 @@ ILAP:hasActivityResponsibleOrganization ...@@ -1131,7 +1131,7 @@ ILAP:hasActivityResponsibleOrganization
1131 rdfs:range ILAP:ResponsibleOrganization . 1131 rdfs:range ILAP:ResponsibleOrganization .
1132 1132
1133 ILAP:hasActivityResponsiblePerson 1133 ILAP:hasActivityResponsiblePerson
1134 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1134 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1135 rdfs:domain ILAP:PlannedActivity ; 1135 rdfs:domain ILAP:PlannedActivity ;
1136 rdfs:label "has activity responsible"^^xsd:string ; 1136 rdfs:label "has activity responsible"^^xsd:string ;
1137 rdfs:range ILAP:ResponsiblePerson . 1137 rdfs:range ILAP:ResponsiblePerson .
...@@ -1166,7 +1166,7 @@ ILAP:hasActivityStatus ...@@ -1166,7 +1166,7 @@ ILAP:hasActivityStatus
1166 rdfs:range ILAP:Status . 1166 rdfs:range ILAP:Status .
1167 1167
1168 ILAP:hasActivitySuccessor 1168 ILAP:hasActivitySuccessor
1169 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1169 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1170 rdfs:domain ILAP:PlannedActivity ; 1170 rdfs:domain ILAP:PlannedActivity ;
1171 rdfs:label "has activity successor"^^xsd:string ; 1171 rdfs:label "has activity successor"^^xsd:string ;
1172 rdfs:range ILAP:ActivityDependency ; 1172 rdfs:range ILAP:ActivityDependency ;
...@@ -1227,7 +1227,7 @@ ILAP:hasCalendarDate ...@@ -1227,7 +1227,7 @@ ILAP:hasCalendarDate
1227 rdfs:label "has calendar date"^^xsd:string . 1227 rdfs:label "has calendar date"^^xsd:string .
1228 1228
1229 ILAP:hasCalendarFreePeriod 1229 ILAP:hasCalendarFreePeriod
1230 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1230 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1231 rdfs:domain ILAP:Calendar ; 1231 rdfs:domain ILAP:Calendar ;
1232 rdfs:label "has calendarcalendar free period"^^xsd:string ; 1232 rdfs:label "has calendarcalendar free period"^^xsd:string ;
1233 rdfs:range ILAP:CalendarFreePeriod . 1233 rdfs:range ILAP:CalendarFreePeriod .
...@@ -1510,7 +1510,7 @@ ILAP:hasPlanRegulator ...@@ -1510,7 +1510,7 @@ ILAP:hasPlanRegulator
1510 rdfs:subPropertyOf ILAP:hasPlanResponsible . 1510 rdfs:subPropertyOf ILAP:hasPlanResponsible .
1511 1511
1512 ILAP:hasPlanResponsible 1512 ILAP:hasPlanResponsible
1513 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1513 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1514 rdfs:domain ILAP:ResponsibleOrganization ; 1514 rdfs:domain ILAP:ResponsibleOrganization ;
1515 rdfs:label "has plan responsible"^^xsd:string . 1515 rdfs:label "has plan responsible"^^xsd:string .
1516 1516
...@@ -1703,7 +1703,7 @@ ILAP:hasShutdownType ...@@ -1703,7 +1703,7 @@ ILAP:hasShutdownType
1703 rdfs:range ILAP:ShutdownType . 1703 rdfs:range ILAP:ShutdownType .
1704 1704
1705 ILAP:hasSuccessorActivity 1705 ILAP:hasSuccessorActivity
1706 - rdf:type owl:ObjectProperty , owl:TransitiveProperty ; 1706 + rdf:type owl:TransitiveProperty , owl:ObjectProperty ;
1707 rdfs:domain ILAP:ActivityDependency ; 1707 rdfs:domain ILAP:ActivityDependency ;
1708 rdfs:label "has successor activity "^^xsd:string ; 1708 rdfs:label "has successor activity "^^xsd:string ;
1709 rdfs:range ILAP:PlannedActivity ; 1709 rdfs:range ILAP:PlannedActivity ;
...@@ -1731,7 +1731,7 @@ ILAP:hasTimeNow ...@@ -1731,7 +1731,7 @@ ILAP:hasTimeNow
1731 rdf:type owl:DatatypeProperty ; 1731 rdf:type owl:DatatypeProperty ;
1732 rdfs:domain ILAP:Schedule ; 1732 rdfs:domain ILAP:Schedule ;
1733 rdfs:label "has time now"^^xsd:string ; 1733 rdfs:label "has time now"^^xsd:string ;
1734 - rdfs:range xsd:date , xsd:dateTime . 1734 + rdfs:range xsd:dateTime , xsd:date .
1735 1735
1736 ILAP:hasUserFieldName 1736 ILAP:hasUserFieldName
1737 rdf:type owl:DatatypeProperty ; 1737 rdf:type owl:DatatypeProperty ;
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . 13 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
14 14
15 : rdf:type owl:Ontology ; 15 : rdf:type owl:Ontology ;
16 - owl:imports ILAP: , <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> . 16 + owl:imports <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> , ILAP: .
17 17
18 ILAP: 18 ILAP:
19 rdf:type owl:Ontology ; 19 rdf:type owl:Ontology ;
...@@ -27,11 +27,6 @@ ILAP:Active ...@@ -27,11 +27,6 @@ ILAP:Active
27 rdf:type ILAP:Status ; 27 rdf:type ILAP:Status ;
28 rdfs:label "Active"^^xsd:string . 28 rdfs:label "Active"^^xsd:string .
29 29
30 -ILAP:ActivityInPlan_1
31 - ILAP:hasActivityResponsibleOrganization
32 - <http://data.posccaesar.org/brreg/R-1345df43-1ddc-42ac-9ce0-c33f3a7a6d29> ;
33 - ILAP:hasPlatform <http://data.posccaesar.org/npd/facts/Facility-271385> .
34 -
35 ILAP:ActivityWBS_1 30 ILAP:ActivityWBS_1
36 ILAP:hasWBSProjectType 31 ILAP:hasWBSProjectType
37 ILAP:CAPEX ; 32 ILAP:CAPEX ;
...@@ -109,8 +104,8 @@ ILAP:DG7 ...@@ -109,8 +104,8 @@ ILAP:DG7
109 rdfs:label "DG7"^^xsd:string . 104 rdfs:label "DG7"^^xsd:string .
110 105
111 ILAP:Development 106 ILAP:Development
112 - rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; 107 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
113 - rdfs:label "Development"^^xsd:string , "Develop"^^xsd:string . 108 + rdfs:label "Develop"^^xsd:string , "Development"^^xsd:string .
114 109
115 ILAP:DisasterRecovery 110 ILAP:DisasterRecovery
116 rdf:type ILAP:PlanObjectiveType ; 111 rdf:type ILAP:PlanObjectiveType ;
...@@ -125,7 +120,7 @@ ILAP:DrillingAndWell ...@@ -125,7 +120,7 @@ ILAP:DrillingAndWell
125 rdfs:label "Drilling and well"^^xsd:string . 120 rdfs:label "Drilling and well"^^xsd:string .
126 121
127 ILAP:Exploration 122 ILAP:Exploration
128 - rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; 123 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
129 rdfs:label "Exploration"^^xsd:string . 124 rdfs:label "Exploration"^^xsd:string .
130 125
131 ILAP:Facility 126 ILAP:Facility
...@@ -237,7 +232,7 @@ ILAP:OPEX ...@@ -237,7 +232,7 @@ ILAP:OPEX
237 rdfs:label "OPEX"^^xsd:string . 232 rdfs:label "OPEX"^^xsd:string .
238 233
239 ILAP:Operation 234 ILAP:Operation
240 - rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; 235 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
241 rdfs:label "Operation"^^xsd:string . 236 rdfs:label "Operation"^^xsd:string .
242 237
243 ILAP:OperationAndMaintenance 238 ILAP:OperationAndMaintenance
...@@ -253,13 +248,12 @@ ILAP:Planned ...@@ -253,13 +248,12 @@ ILAP:Planned
253 rdfs:label "Planned"^^xsd:string . 248 rdfs:label "Planned"^^xsd:string .
254 249
255 ILAP:PlannedActivity_1 250 ILAP:PlannedActivity_1
256 - rdf:type ILAP:PlannedActivity ; 251 + ILAP:hasActivityResponsibleOrganization
257 - rdfs:label "Planned activity 1"^^xsd:string ; 252 + <http://data.posccaesar.org/brreg/R-1345df43-1ddc-42ac-9ce0-c33f3a7a6d29> ;
258 - ILAP:hasActivityWBSelement 253 + ILAP:hasPlatform <http://data.posccaesar.org/npd/facts/Facility-271385> .
259 - ILAP:ActivityWBS_1 .
260 254
261 ILAP:Planning 255 ILAP:Planning
262 - rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; 256 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
263 rdfs:label "Planning"^^xsd:string . 257 rdfs:label "Planning"^^xsd:string .
264 258
265 ILAP:Primavera 259 ILAP:Primavera
...@@ -287,7 +281,7 @@ ILAP:Released ...@@ -287,7 +281,7 @@ ILAP:Released
287 rdfs:label "Released"^^xsd:string . 281 rdfs:label "Released"^^xsd:string .
288 282
289 ILAP:Removal 283 ILAP:Removal
290 - rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; 284 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
291 rdfs:label "Removal"^^xsd:string . 285 rdfs:label "Removal"^^xsd:string .
292 286
293 ILAP:Renewal 287 ILAP:Renewal
...@@ -323,14 +317,14 @@ ILAP:Scheduled ...@@ -323,14 +317,14 @@ ILAP:Scheduled
323 rdfs:label "Scheduled"^^xsd:string . 317 rdfs:label "Scheduled"^^xsd:string .
324 318
325 ILAP:ShutdownAndDecommisioning 319 ILAP:ShutdownAndDecommisioning
326 - rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; 320 + rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ;
327 rdfs:label "Shutdown and decommisioning"^^xsd:string . 321 rdfs:label "Shutdown and decommisioning"^^xsd:string .
328 322
329 ILAP:StandardFreeWeekendPeriod 323 ILAP:StandardFreeWeekendPeriod
330 rdf:type ILAP:CalendarFreePeriodWeekRepeat ; 324 rdf:type ILAP:CalendarFreePeriodWeekRepeat ;
331 rdfs:label "Standard free weekend period"^^xsd:string ; 325 rdfs:label "Standard free weekend period"^^xsd:string ;
332 ILAP:hasCalendarPeriodFreeDay 326 ILAP:hasCalendarPeriodFreeDay
333 - ILAP:Saturday , ILAP:Sunday . 327 + ILAP:Sunday , ILAP:Saturday .
334 328
335 ILAP:StandardWorkWeekdayPeriod 329 ILAP:StandardWorkWeekdayPeriod
336 rdf:type ILAP:CalendarWorkPeriodWeekRepeat ; 330 rdf:type ILAP:CalendarWorkPeriodWeekRepeat ;
...@@ -449,12 +443,12 @@ ILAP:hasWorkTaskResponsible ...@@ -449,12 +443,12 @@ ILAP:hasWorkTaskResponsible
449 <http://data.posccaesar.org/npd/ontology/ilap-interface/Facility> 443 <http://data.posccaesar.org/npd/ontology/ilap-interface/Facility>
450 rdf:type owl:Class ; 444 rdf:type owl:Class ;
451 rdfs:label "Facility"^^xsd:string ; 445 rdfs:label "Facility"^^xsd:string ;
452 - rdfs:subClassOf owl:Thing , ILAP:Facility . 446 + rdfs:subClassOf ILAP:Facility , owl:Thing .
453 447
454 rdl:RDS282149 448 rdl:RDS282149
455 rdf:type owl:Class ; 449 rdf:type owl:Class ;
456 rdfs:label "RDS282149"^^xsd:string ; 450 rdfs:label "RDS282149"^^xsd:string ;
457 - rdfs:subClassOf owl:Thing , ILAP:ResponsibleOrganization . 451 + rdfs:subClassOf ILAP:ResponsibleOrganization , owl:Thing .
458 452
459 <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A> 453 <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A>
460 rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> . 454 rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> .
......
...@@ -12,9 +12,9 @@ UC1: rdf:type owl:Ontology ; ...@@ -12,9 +12,9 @@ UC1: rdf:type owl:Ontology ;
12 owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ; 12 owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ;
13 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 13 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
14 14
15 -UC1:PlannedActivity_1 15 +ILAP:PlannedActivity_2
16 rdf:type ILAP:PlannedActivity ; 16 rdf:type ILAP:PlannedActivity ;
17 - rdfs:label "Planned activity 1"^^xsd:string ; 17 + rdfs:label "Planned activity 2"^^xsd:string ;
18 ILAP:hasActivityContractor 18 ILAP:hasActivityContractor
19 <http://data.posccaesar.org/brreg/R-5db3751d-41d9-4516-a8e9-2b73a7df656b> ; 19 <http://data.posccaesar.org/brreg/R-5db3751d-41d9-4516-a8e9-2b73a7df656b> ;
20 ILAP:hasActivityOperator 20 ILAP:hasActivityOperator
......