Tore Christiansen

Moved plan 1 individual into Planning Core to view it in ILAP Browser

...@@ -14,18 +14,26 @@ ...@@ -14,18 +14,26 @@
14 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 14 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
15 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . 15 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
16 16
17 +<http://data.posccaesar.org/Data/UC2/NetworkSchedule_1>
18 + ILAP:hasSchedulePlan
19 + ILAP:ProjectPlan_1 .
20 +
21 +<http://data.posccaesar.org/Data/UC2/PlannedActivity_1>
22 + ILAP:hasActivityPlan
23 + ILAP:ProjectPlan_1 .
24 +
17 ILAP: 25 ILAP:
18 rdf:type owl:Ontology ; 26 rdf:type owl:Ontology ;
19 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 27 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
20 28
21 ILAP:Activity 29 ILAP:Activity
22 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 30 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
23 rdfs:label "Activity"^^xsd:string ; 31 rdfs:label "Activity"^^xsd:string ;
24 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS3149> ; 32 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS3149> ;
25 rdfs:subClassOf 33 rdfs:subClassOf
26 [ rdf:type owl:Restriction ; 34 [ rdf:type owl:Restriction ;
27 - owl:allValuesFrom ILAP:Status ; 35 + owl:onProperty ILAP:hasExternalReference ;
28 - owl:onProperty ILAP:hasActivityStatus 36 + owl:someValuesFrom ILAP:ExternalReference
29 ] ; 37 ] ;
30 rdfs:subClassOf 38 rdfs:subClassOf
31 [ rdf:type owl:Restriction ; 39 [ rdf:type owl:Restriction ;
...@@ -34,8 +42,8 @@ ILAP:Activity ...@@ -34,8 +42,8 @@ ILAP:Activity
34 ] ; 42 ] ;
35 rdfs:subClassOf 43 rdfs:subClassOf
36 [ rdf:type owl:Restriction ; 44 [ rdf:type owl:Restriction ;
37 - owl:onProperty ILAP:hasExternalReference ; 45 + owl:allValuesFrom ILAP:Status ;
38 - owl:someValuesFrom ILAP:ExternalReference 46 + owl:onProperty ILAP:hasActivityStatus
39 ] . 47 ] .
40 48
41 ILAP:ActivityDependency 49 ILAP:ActivityDependency
...@@ -44,9 +52,9 @@ ILAP:ActivityDependency ...@@ -44,9 +52,9 @@ ILAP:ActivityDependency
44 rdfs:subClassOf owl:Thing . 52 rdfs:subClassOf owl:Thing .
45 53
46 ILAP:ActivityPlan 54 ILAP:ActivityPlan
47 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 55 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ;
48 rdfs:label "Activity Plan"^^xsd:string ; 56 rdfs:label "Activity Plan"^^xsd:string ;
49 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS329669> , owl:Thing ; 57 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS329669> ;
50 rdfs:subClassOf 58 rdfs:subClassOf
51 [ rdf:type owl:Restriction ; 59 [ rdf:type owl:Restriction ;
52 owl:allValuesFrom ILAP:ExternalReference ; 60 owl:allValuesFrom ILAP:ExternalReference ;
...@@ -54,9 +62,9 @@ ILAP:ActivityPlan ...@@ -54,9 +62,9 @@ ILAP:ActivityPlan
54 ] . 62 ] .
55 63
56 ILAP:ActivityWBS 64 ILAP:ActivityWBS
57 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; 65 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ;
58 rdfs:label "Activity WBS"^^xsd:string ; 66 rdfs:label "Activity WBS"^^xsd:string ;
59 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7506263> . 67 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7506263> , owl:Thing .
60 68
61 ILAP:Application 69 ILAP:Application
62 rdf:type owl:Class ; 70 rdf:type owl:Class ;
...@@ -64,34 +72,34 @@ ILAP:Application ...@@ -64,34 +72,34 @@ ILAP:Application
64 rdfs:subClassOf owl:Thing . 72 rdfs:subClassOf owl:Thing .
65 73
66 ILAP:Baseline 74 ILAP:Baseline
67 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 75 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
68 rdfs:label "Baseline"^^xsd:string ; 76 rdfs:label "Baseline"^^xsd:string ;
69 rdfs:subClassOf owl:Thing . 77 rdfs:subClassOf owl:Thing .
70 78
71 ILAP:Calendar 79 ILAP:Calendar
72 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 80 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
73 rdfs:label "Calendar"^^xsd:string ; 81 rdfs:label "Calendar"^^xsd:string ;
74 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7014210> ; 82 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ;
75 rdfs:subClassOf 83 rdfs:subClassOf
76 [ rdf:type owl:Restriction ; 84 [ rdf:type owl:Restriction ;
77 - owl:allValuesFrom ILAP:CalendarWorkPeriod ; 85 + owl:allValuesFrom ILAP:CalendarFreePeriod ;
78 - owl:onProperty ILAP:hasCalendarWorkPeriod 86 + owl:onProperty ILAP:hasCalendarFreePeriod
79 ] ; 87 ] ;
80 rdfs:subClassOf 88 rdfs:subClassOf
81 [ rdf:type owl:Restriction ; 89 [ rdf:type owl:Restriction ;
82 - owl:allValuesFrom ILAP:CalendarFreePeriod ; 90 + owl:allValuesFrom ILAP:CalendarWorkPeriod ;
83 - owl:onProperty ILAP:hasCalendarFreePeriod 91 + owl:onProperty ILAP:hasCalendarWorkPeriod
84 ] . 92 ] .
85 93
86 ILAP:CalendarDay 94 ILAP:CalendarDay
87 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; 95 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ;
88 rdfs:label "Calendar day"^^xsd:string ; 96 rdfs:label "Calendar day"^^xsd:string ;
89 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> . 97 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , owl:Thing .
90 98
91 ILAP:CalendarFreePeriod 99 ILAP:CalendarFreePeriod
92 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; 100 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
93 rdfs:label "Calendar free period"^^xsd:string ; 101 rdfs:label "Calendar free period"^^xsd:string ;
94 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ; 102 + rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ;
95 rdfs:subClassOf 103 rdfs:subClassOf
96 [ rdf:type owl:Restriction ; 104 [ rdf:type owl:Restriction ;
97 owl:onClass ILAP:Calendar ; 105 owl:onClass ILAP:Calendar ;
...@@ -103,49 +111,49 @@ ILAP:CalendarFreePeriod ...@@ -103,49 +111,49 @@ ILAP:CalendarFreePeriod
103 ] . 111 ] .
104 112
105 ILAP:CalendarFreePeriodWeekRepeat 113 ILAP:CalendarFreePeriodWeekRepeat
106 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; 114 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
107 rdfs:label "Free day"^^xsd:string ; 115 rdfs:label "Free day"^^xsd:string ;
108 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod . 116 + rdfs:subClassOf ILAP:CalendarFreePeriod , <http://posccaesar.org/rdl/page/RDS356215271> .
109 117
110 ILAP:CalendarHour 118 ILAP:CalendarHour
111 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; 119 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
112 rdfs:label "calendar hour"^^xsd:string ; 120 rdfs:label "calendar hour"^^xsd:string ;
113 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS380969> , <http://posccaesar.org/rdl/RDS1326734> . 121 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> , owl:Thing .
114 122
115 ILAP:CalendarPeriod 123 ILAP:CalendarPeriod
116 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> ; 124 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ;
117 rdfs:label "Calendar period"^^xsd:string ; 125 rdfs:label "Calendar period"^^xsd:string ;
118 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS4316824755> , owl:Thing ; 126 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ;
119 rdfs:subClassOf 127 rdfs:subClassOf
120 [ rdf:type owl:Restriction ; 128 [ rdf:type owl:Restriction ;
121 - owl:allValuesFrom ILAP:CalendarDay ; 129 + owl:allValuesFrom ILAP:CalendarHour ;
122 - owl:onProperty ILAP:hasCalendarPeriodDay 130 + owl:onProperty ILAP:hasCalendarPeriodHour
123 ] ; 131 ] ;
124 rdfs:subClassOf 132 rdfs:subClassOf
125 [ rdf:type owl:Restriction ; 133 [ rdf:type owl:Restriction ;
126 - owl:allValuesFrom ILAP:CalendarHour ; 134 + owl:allValuesFrom ILAP:CalendarDay ;
127 - owl:onProperty ILAP:hasCalendarPeriodHour 135 + owl:onProperty ILAP:hasCalendarPeriodDay
128 ] . 136 ] .
129 137
130 ILAP:CalendarWorkPeriod 138 ILAP:CalendarWorkPeriod
131 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; 139 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
132 rdfs:label "Calendar work period"^^xsd:string ; 140 rdfs:label "Calendar work period"^^xsd:string ;
133 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ; 141 + rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ;
134 rdfs:subClassOf 142 rdfs:subClassOf
135 [ rdf:type owl:Restriction ; 143 [ rdf:type owl:Restriction ;
136 - owl:onProperty ILAP:hasCalendarPeriodWorkHour ; 144 + owl:onProperty ILAP:hasCalendarPeriodWorkDay ;
137 - owl:someValuesFrom ILAP:CalendarHour 145 + owl:someValuesFrom ILAP:CalendarDay
138 ] ; 146 ] ;
139 rdfs:subClassOf 147 rdfs:subClassOf
140 [ rdf:type owl:Restriction ; 148 [ rdf:type owl:Restriction ;
141 - owl:onProperty ILAP:hasCalendarPeriodWorkDay ; 149 + owl:onProperty ILAP:hasCalendarPeriodWorkHour ;
142 - owl:someValuesFrom ILAP:CalendarDay 150 + owl:someValuesFrom ILAP:CalendarHour
143 ] . 151 ] .
144 152
145 ILAP:CalendarWorkPeriodWeekRepeat 153 ILAP:CalendarWorkPeriodWeekRepeat
146 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; 154 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ;
147 rdfs:label "Free day"^^xsd:string ; 155 rdfs:label "Free day"^^xsd:string ;
148 - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarWorkPeriod . 156 + rdfs:subClassOf ILAP:CalendarWorkPeriod , <http://posccaesar.org/rdl/page/RDS356215271> .
149 157
150 ILAP:ContractControlSchedule 158 ILAP:ContractControlSchedule
151 rdf:type owl:Class ; 159 rdf:type owl:Class ;
...@@ -183,14 +191,14 @@ ILAP:CurrentControlEstimate ...@@ -183,14 +191,14 @@ ILAP:CurrentControlEstimate
183 rdfs:subClassOf ILAP:CostEstimate . 191 rdfs:subClassOf ILAP:CostEstimate .
184 192
185 ILAP:CurrentSchedule 193 ILAP:CurrentSchedule
186 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 194 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
187 rdfs:label "Current schedule"^^xsd:string ; 195 rdfs:label "Current schedule"^^xsd:string ;
188 rdfs:subClassOf ILAP:NetworkSchedule . 196 rdfs:subClassOf ILAP:NetworkSchedule .
189 197
190 ILAP:Discipline 198 ILAP:Discipline
191 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; 199 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
192 rdfs:label "Discipline"^^xsd:string ; 200 rdfs:label "Discipline"^^xsd:string ;
193 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS6811233> , owl:Thing . 201 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS6811233> .
194 202
195 ILAP:ExecutionPlan 203 ILAP:ExecutionPlan
196 rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; 204 rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
...@@ -198,89 +206,87 @@ ILAP:ExecutionPlan ...@@ -198,89 +206,87 @@ ILAP:ExecutionPlan
198 rdfs:subClassOf <http://posccaesar.org/rdl/RDS7952931> , ILAP:ActivityPlan ; 206 rdfs:subClassOf <http://posccaesar.org/rdl/RDS7952931> , ILAP:ActivityPlan ;
199 rdfs:subClassOf 207 rdfs:subClassOf
200 [ rdf:type owl:Restriction ; 208 [ rdf:type owl:Restriction ;
201 - owl:allValuesFrom NPD:NPDelement ; 209 + owl:onProperty ILAP:hasPlanContentType ;
202 - owl:onProperty ILAP:hasPlanNPDelement 210 + owl:someValuesFrom ILAP:PlanContentType
203 ] ; 211 ] ;
204 rdfs:subClassOf 212 rdfs:subClassOf
205 [ rdf:type owl:Restriction ; 213 [ rdf:type owl:Restriction ;
206 - owl:allValuesFrom ILAP:ExecutionPlan ; 214 + owl:onProperty ILAP:hasPlanProjectType ;
207 - owl:onProperty ILAP:hasPlanSubplan 215 + owl:someValuesFrom ILAP:PlanProjectType
208 ] ; 216 ] ;
209 rdfs:subClassOf 217 rdfs:subClassOf
210 [ rdf:type owl:Restriction ; 218 [ rdf:type owl:Restriction ;
211 - owl:onProperty ILAP:hasPlanContentType ; 219 + owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ;
212 - owl:someValuesFrom ILAP:PlanContentType 220 + owl:onProperty ILAP:hasPlanAsset
213 ] ; 221 ] ;
214 rdfs:subClassOf 222 rdfs:subClassOf
215 [ rdf:type owl:Restriction ; 223 [ rdf:type owl:Restriction ;
216 - owl:onProperty ILAP:hasPlanLevel ; 224 + owl:onProperty ILAP:hasPlanGeoArea ;
217 - owl:someValuesFrom ILAP:PlanLevel 225 + owl:someValuesFrom ILAP:PlanGeoArea
218 ] ; 226 ] ;
219 rdfs:subClassOf 227 rdfs:subClassOf
220 [ rdf:type owl:Restriction ; 228 [ rdf:type owl:Restriction ;
221 - owl:maxQualifiedCardinality 229 + owl:allValuesFrom ILAP:PlanValueObjective ;
222 - "1"^^xsd:nonNegativeInteger ; 230 + owl:onProperty ILAP:hasPlanValueObjective
223 - owl:onClass ILAP:Project ;
224 - owl:onProperty ILAP:hasPlanProject
225 ] ; 231 ] ;
226 rdfs:subClassOf 232 rdfs:subClassOf
227 [ rdf:type owl:Restriction ; 233 [ rdf:type owl:Restriction ;
228 - owl:allValuesFrom ILAP:PlanContractType ; 234 + owl:allValuesFrom ILAP:ExecutionPlan ;
229 - owl:onProperty ILAP:hasPlanContractType 235 + owl:onProperty ILAP:hasPlanSubplan
230 ] ; 236 ] ;
231 rdfs:subClassOf 237 rdfs:subClassOf
232 [ rdf:type owl:Restriction ; 238 [ rdf:type owl:Restriction ;
233 - owl:allValuesFrom ILAP:ExecutionPlan ; 239 + owl:maxQualifiedCardinality
234 - owl:onProperty ILAP:hasPlanRollUpPlan 240 + "1"^^xsd:nonNegativeInteger ;
241 + owl:onClass ILAP:PlanLevel ;
242 + owl:onProperty ILAP:hasPlanLevel
235 ] ; 243 ] ;
236 rdfs:subClassOf 244 rdfs:subClassOf
237 [ rdf:type owl:Restriction ; 245 [ rdf:type owl:Restriction ;
238 - owl:allValuesFrom ILAP:PlanValueObjective ; 246 + owl:allValuesFrom BRREG:LegalEntity ;
239 - owl:onProperty ILAP:hasPlanValueObjective 247 + owl:onProperty ILAP:hasPlanResponsible
240 ] ; 248 ] ;
241 rdfs:subClassOf 249 rdfs:subClassOf
242 [ rdf:type owl:Restriction ; 250 [ rdf:type owl:Restriction ;
243 - owl:onProperty ILAP:hasPlanGeoArea ; 251 + owl:allValuesFrom ILAP:PlanContractType ;
244 - owl:someValuesFrom ILAP:PlanGeoArea 252 + owl:onProperty ILAP:hasPlanContractType
245 ] ; 253 ] ;
246 rdfs:subClassOf 254 rdfs:subClassOf
247 [ rdf:type owl:Restriction ; 255 [ rdf:type owl:Restriction ;
248 - owl:allValuesFrom ILAP:PlanLifecyclePhase ; 256 + owl:allValuesFrom NPD:NPDelement ;
249 - owl:onProperty ILAP:hasPlanLifecyclePhase 257 + owl:onProperty ILAP:hasPlanNPDelement
250 ] ; 258 ] ;
251 rdfs:subClassOf 259 rdfs:subClassOf
252 [ rdf:type owl:Restriction ; 260 [ rdf:type owl:Restriction ;
253 - owl:allValuesFrom BRREG:LegalEntity ; 261 + owl:onProperty ILAP:hasPlanLevel ;
254 - owl:onProperty ILAP:hasPlanResponsible 262 + owl:someValuesFrom ILAP:PlanLevel
255 ] ; 263 ] ;
256 rdfs:subClassOf 264 rdfs:subClassOf
257 [ rdf:type owl:Restriction ; 265 [ rdf:type owl:Restriction ;
258 - owl:onProperty ILAP:hasPlanProjectType ; 266 + owl:allValuesFrom ILAP:ExecutionPlan ;
259 - owl:someValuesFrom ILAP:PlanProjectType 267 + owl:onProperty ILAP:hasPlanRollUpPlan
260 ] ; 268 ] ;
261 rdfs:subClassOf 269 rdfs:subClassOf
262 [ rdf:type owl:Restriction ; 270 [ rdf:type owl:Restriction ;
263 - owl:maxQualifiedCardinality 271 + owl:allValuesFrom ILAP:PlanLifecyclePhase ;
264 - "1"^^xsd:nonNegativeInteger ; 272 + owl:onProperty ILAP:hasPlanLifecyclePhase
265 - owl:onClass ILAP:PlanLevel ;
266 - owl:onProperty ILAP:hasPlanLevel
267 ] ; 273 ] ;
268 rdfs:subClassOf 274 rdfs:subClassOf
269 [ rdf:type owl:Restriction ; 275 [ rdf:type owl:Restriction ;
270 - owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; 276 + owl:maxQualifiedCardinality
271 - owl:onProperty ILAP:hasPlanAsset 277 + "1"^^xsd:nonNegativeInteger ;
278 + owl:onClass ILAP:Project ;
279 + owl:onProperty ILAP:hasPlanProject
272 ] . 280 ] .
273 281
274 ILAP:ExternalReference 282 ILAP:ExternalReference
275 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ; 283 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ;
276 rdfs:label "External Reference"^^xsd:string ; 284 rdfs:label "External Reference"^^xsd:string ;
277 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/page/RDS720105291> ; 285 + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ;
278 rdfs:subClassOf 286 rdfs:subClassOf
279 [ rdf:type owl:Restriction ; 287 [ rdf:type owl:Restriction ;
280 - owl:onDataRange xsd:string ; 288 + owl:allValuesFrom ILAP:Application ;
281 - owl:onProperty ILAP:hasReferenceID ; 289 + owl:onProperty ILAP:hasReferenceApplication
282 - owl:qualifiedCardinality
283 - "1"^^xsd:nonNegativeInteger
284 ] ; 290 ] ;
285 rdfs:subClassOf 291 rdfs:subClassOf
286 [ rdf:type owl:Restriction ; 292 [ rdf:type owl:Restriction ;
...@@ -289,36 +295,38 @@ ILAP:ExternalReference ...@@ -289,36 +295,38 @@ ILAP:ExternalReference
289 ] ; 295 ] ;
290 rdfs:subClassOf 296 rdfs:subClassOf
291 [ rdf:type owl:Restriction ; 297 [ rdf:type owl:Restriction ;
292 - owl:allValuesFrom ILAP:Application ; 298 + owl:onDataRange xsd:string ;
293 - owl:onProperty ILAP:hasReferenceApplication 299 + owl:onProperty ILAP:hasReferenceID ;
300 + owl:qualifiedCardinality
301 + "1"^^xsd:nonNegativeInteger
294 ] . 302 ] .
295 303
296 ILAP:FinishToFinish 304 ILAP:FinishToFinish
297 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 305 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
298 rdfs:label "Finish to finish"^^xsd:string ; 306 rdfs:label "Finish to finish"^^xsd:string ;
299 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:Successor . 307 + rdfs:subClassOf ILAP:Successor , <http://posccaesar.org/rdl/RDS44294438194> .
300 308
301 ILAP:FinishToStart 309 ILAP:FinishToStart
302 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 310 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
303 rdfs:label "Finish to start"^^xsd:string ; 311 rdfs:label "Finish to start"^^xsd:string ;
304 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:Successor . 312 + rdfs:subClassOf ILAP:Successor , <http://posccaesar.org/rdl/RDS44294438194> .
305 313
306 ILAP:LiveSchedule 314 ILAP:LiveSchedule
307 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 315 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
308 rdfs:label "Live schedule"^^xsd:string ; 316 rdfs:label "Live schedule"^^xsd:string ;
309 rdfs:subClassOf ILAP:NetworkSchedule . 317 rdfs:subClassOf ILAP:NetworkSchedule .
310 318
311 ILAP:Location 319 ILAP:Location
312 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ; 320 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ;
313 rdfs:label "Location"^^xsd:string ; 321 rdfs:label "Location"^^xsd:string ;
314 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS943618371> . 322 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing .
315 323
316 ILAP:Milestone 324 ILAP:Milestone
317 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> , owl:Class ; 325 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ;
318 rdfs:label "Milestone"^^xsd:string . 326 rdfs:label "Milestone"^^xsd:string .
319 327
320 ILAP:NetworkSchedule 328 ILAP:NetworkSchedule
321 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 329 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
322 rdfs:label "Scheduled Activity Network"^^xsd:string ; 330 rdfs:label "Scheduled Activity Network"^^xsd:string ;
323 rdfs:subClassOf owl:Thing ; 331 rdfs:subClassOf owl:Thing ;
324 rdfs:subClassOf 332 rdfs:subClassOf
...@@ -345,54 +353,54 @@ ILAP:OwnersProjectControlSchedule ...@@ -345,54 +353,54 @@ ILAP:OwnersProjectControlSchedule
345 rdfs:subClassOf ILAP:ProjectControlSchedule . 353 rdfs:subClassOf ILAP:ProjectControlSchedule .
346 354
347 ILAP:Phase 355 ILAP:Phase
348 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 356 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
349 rdfs:label "Phase"^^xsd:string ; 357 rdfs:label "Phase"^^xsd:string ;
350 rdfs:subClassOf owl:Thing . 358 rdfs:subClassOf owl:Thing .
351 359
352 ILAP:PlanClassifier 360 ILAP:PlanClassifier
353 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; 361 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
354 rdfs:label "Plan classifier"^^xsd:string ; 362 rdfs:label "Plan classifier"^^xsd:string ;
355 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> . 363 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , owl:Thing .
356 364
357 ILAP:PlanContentType 365 ILAP:PlanContentType
358 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; 366 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ;
359 rdfs:label "Content type"^^xsd:string ; 367 rdfs:label "Content type"^^xsd:string ;
360 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS892484261> , ILAP:PlanClassifier . 368 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> .
361 369
362 ILAP:PlanContractType 370 ILAP:PlanContractType
363 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; 371 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
364 rdfs:label "Plan contract type"^^xsd:string ; 372 rdfs:label "Plan contract type"^^xsd:string ;
365 rdfs:subClassOf ILAP:PlanClassifier . 373 rdfs:subClassOf ILAP:PlanClassifier .
366 374
367 ILAP:PlanExpenseType 375 ILAP:PlanExpenseType
368 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; 376 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ;
369 rdfs:label "Plan expense type"^^xsd:string ; 377 rdfs:label "Plan expense type"^^xsd:string ;
370 rdfs:subClassOf ILAP:PlanClassifier . 378 rdfs:subClassOf ILAP:PlanClassifier .
371 379
372 ILAP:PlanGeoArea 380 ILAP:PlanGeoArea
373 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> ; 381 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ;
374 rdfs:label "Plan geographic area"^^xsd:string ; 382 rdfs:label "Plan geographic area"^^xsd:string ;
375 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . 383 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> .
376 384
377 ILAP:PlanLevel 385 ILAP:PlanLevel
378 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; 386 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
379 rdfs:label "Plan level"^^xsd:string ; 387 rdfs:label "Plan level"^^xsd:string ;
380 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . 388 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> .
381 389
382 ILAP:PlanLifecyclePhase 390 ILAP:PlanLifecyclePhase
383 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 391 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
384 rdfs:label "Plan lifecycle phase"^^xsd:string ; 392 rdfs:label "Plan lifecycle phase"^^xsd:string ;
385 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . 393 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> .
386 394
387 ILAP:PlanProjectType 395 ILAP:PlanProjectType
388 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; 396 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ;
389 rdfs:label "Plan project type"^^xsd:string ; 397 rdfs:label "Plan project type"^^xsd:string ;
390 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier . 398 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS10012097710> .
391 399
392 ILAP:PlanValueObjective 400 ILAP:PlanValueObjective
393 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ; 401 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> , owl:Class ;
394 rdfs:label "Plan value objective"^^xsd:string ; 402 rdfs:label "Plan value objective"^^xsd:string ;
395 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier . 403 + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS43168516168> .
396 404
397 ILAP:PlanWorkOrderPlan 405 ILAP:PlanWorkOrderPlan
398 rdf:type owl:Class ; 406 rdf:type owl:Class ;
...@@ -405,13 +413,20 @@ ILAP:PlannedActivity ...@@ -405,13 +413,20 @@ ILAP:PlannedActivity
405 rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; 413 rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ;
406 rdfs:subClassOf 414 rdfs:subClassOf
407 [ rdf:type owl:Restriction ; 415 [ rdf:type owl:Restriction ;
416 + owl:maxQualifiedCardinality
417 + "1"^^xsd:nonNegativeInteger ;
418 + owl:onClass ILAP:ExecutionPlan ;
419 + owl:onProperty ILAP:hasActivityPlan
420 + ] ;
421 + rdfs:subClassOf
422 + [ rdf:type owl:Restriction ;
408 owl:allValuesFrom ILAP:ActivityWBS ; 423 owl:allValuesFrom ILAP:ActivityWBS ;
409 owl:onProperty ILAP:hasActivityWBS 424 owl:onProperty ILAP:hasActivityWBS
410 ] ; 425 ] ;
411 rdfs:subClassOf 426 rdfs:subClassOf
412 [ rdf:type owl:Restriction ; 427 [ rdf:type owl:Restriction ;
413 - owl:allValuesFrom ILAP:Result ; 428 + owl:allValuesFrom ILAP:PlannedResource ;
414 - owl:onProperty ILAP:hasActivityResult 429 + owl:onProperty ILAP:hasActivityPlannedResource
415 ] ; 430 ] ;
416 rdfs:subClassOf 431 rdfs:subClassOf
417 [ rdf:type owl:Restriction ; 432 [ rdf:type owl:Restriction ;
...@@ -420,18 +435,8 @@ ILAP:PlannedActivity ...@@ -420,18 +435,8 @@ ILAP:PlannedActivity
420 ] ; 435 ] ;
421 rdfs:subClassOf 436 rdfs:subClassOf
422 [ rdf:type owl:Restriction ; 437 [ rdf:type owl:Restriction ;
423 - owl:allValuesFrom ILAP:Location ; 438 + owl:allValuesFrom ILAP:Result ;
424 - owl:onProperty ILAP:hasActivityLocation 439 + owl:onProperty ILAP:hasActivityResult
425 - ] ;
426 - rdfs:subClassOf
427 - [ rdf:type owl:Restriction ;
428 - owl:allValuesFrom ILAP:PlannedResource ;
429 - owl:onProperty ILAP:hasActivityPlannedResource
430 - ] ;
431 - rdfs:subClassOf
432 - [ rdf:type owl:Restriction ;
433 - owl:allValuesFrom ILAP:Phase ;
434 - owl:onProperty ILAP:hasActivityPhase
435 ] ; 440 ] ;
436 rdfs:subClassOf 441 rdfs:subClassOf
437 [ rdf:type owl:Restriction ; 442 [ rdf:type owl:Restriction ;
...@@ -440,8 +445,8 @@ ILAP:PlannedActivity ...@@ -440,8 +445,8 @@ ILAP:PlannedActivity
440 ] ; 445 ] ;
441 rdfs:subClassOf 446 rdfs:subClassOf
442 [ rdf:type owl:Restriction ; 447 [ rdf:type owl:Restriction ;
443 - owl:allValuesFrom ILAP:Successor ; 448 + owl:allValuesFrom ILAP:Phase ;
444 - owl:onProperty ILAP:hasActivitySuccessor 449 + owl:onProperty ILAP:hasActivityPhase
445 ] ; 450 ] ;
446 rdfs:subClassOf 451 rdfs:subClassOf
447 [ rdf:type owl:Restriction ; 452 [ rdf:type owl:Restriction ;
...@@ -450,15 +455,18 @@ ILAP:PlannedActivity ...@@ -450,15 +455,18 @@ ILAP:PlannedActivity
450 ] ; 455 ] ;
451 rdfs:subClassOf 456 rdfs:subClassOf
452 [ rdf:type owl:Restriction ; 457 [ rdf:type owl:Restriction ;
453 - owl:maxQualifiedCardinality 458 + owl:allValuesFrom ILAP:Location ;
454 - "1"^^xsd:nonNegativeInteger ; 459 + owl:onProperty ILAP:hasActivityLocation
455 - owl:onClass ILAP:ExecutionPlan ;
456 - owl:onProperty ILAP:hasActivityPlan
457 ] ; 460 ] ;
458 rdfs:subClassOf 461 rdfs:subClassOf
459 [ rdf:type owl:Restriction ; 462 [ rdf:type owl:Restriction ;
460 owl:onProperty ILAP:hasActivityDiscipline ; 463 owl:onProperty ILAP:hasActivityDiscipline ;
461 owl:someValuesFrom ILAP:Discipline 464 owl:someValuesFrom ILAP:Discipline
465 + ] ;
466 + rdfs:subClassOf
467 + [ rdf:type owl:Restriction ;
468 + owl:allValuesFrom ILAP:Successor ;
469 + owl:onProperty ILAP:hasActivitySuccessor
462 ] . 470 ] .
463 471
464 ILAP:PlannedResource 472 ILAP:PlannedResource
...@@ -467,50 +475,50 @@ ILAP:PlannedResource ...@@ -467,50 +475,50 @@ ILAP:PlannedResource
467 rdfs:subClassOf ILAP:Resource . 475 rdfs:subClassOf ILAP:Resource .
468 476
469 ILAP:PortfolioPlan 477 ILAP:PortfolioPlan
470 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 478 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
471 rdfs:label "Portfolio plan"^^xsd:string ; 479 rdfs:label "Portfolio plan"^^xsd:string ;
472 rdfs:subClassOf ILAP:ExecutionPlan . 480 rdfs:subClassOf ILAP:ExecutionPlan .
473 481
474 ILAP:Profile 482 ILAP:Profile
475 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ; 483 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> , owl:Class ;
476 rdfs:label "Resource profile"^^xsd:string ; 484 rdfs:label "Resource profile"^^xsd:string ;
477 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1685084301> . 485 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing .
478 486
479 ILAP:ProfilePoint 487 ILAP:ProfilePoint
480 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; 488 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ;
481 rdfs:label "Profile point"^^xsd:string ; 489 rdfs:label "Profile point"^^xsd:string ;
482 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2213258891> , owl:Thing . 490 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> .
483 491
484 ILAP:ProgrammePlan 492 ILAP:ProgrammePlan
485 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 493 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
486 rdfs:label "Programme plan"^^xsd:string ; 494 rdfs:label "Programme plan"^^xsd:string ;
487 rdfs:subClassOf ILAP:ExecutionPlan . 495 rdfs:subClassOf ILAP:ExecutionPlan .
488 496
489 ILAP:Project 497 ILAP:Project
490 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 498 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
491 rdfs:label "Project"^^xsd:string ; 499 rdfs:label "Project"^^xsd:string ;
492 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS9629> ; 500 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS9629> , owl:Thing ;
493 rdfs:subClassOf 501 rdfs:subClassOf
494 [ rdf:type owl:Restriction ; 502 [ rdf:type owl:Restriction ;
495 - owl:onDataRange xsd:string ; 503 + owl:allValuesFrom BRREG:OilCompany ;
496 - owl:onProperty ILAP:hasName ; 504 + owl:onProperty ILAP:hasProjectResponsible
497 - owl:qualifiedCardinality
498 - "1"^^xsd:nonNegativeInteger
499 ] ; 505 ] ;
500 rdfs:subClassOf 506 rdfs:subClassOf
501 [ rdf:type owl:Restriction ; 507 [ rdf:type owl:Restriction ;
502 - owl:allValuesFrom ILAP:Project ; 508 + owl:allValuesFrom ILAP:ExternalReference ;
503 - owl:onProperty ILAP:hasProjectSubproject 509 + owl:onProperty ILAP:hasExternalReference
504 ] ; 510 ] ;
505 rdfs:subClassOf 511 rdfs:subClassOf
506 [ rdf:type owl:Restriction ; 512 [ rdf:type owl:Restriction ;
507 - owl:allValuesFrom ILAP:ExternalReference ; 513 + owl:allValuesFrom ILAP:Project ;
508 - owl:onProperty ILAP:hasExternalReference 514 + owl:onProperty ILAP:hasProjectSubproject
509 ] ; 515 ] ;
510 rdfs:subClassOf 516 rdfs:subClassOf
511 [ rdf:type owl:Restriction ; 517 [ rdf:type owl:Restriction ;
512 - owl:allValuesFrom BRREG:OilCompany ; 518 + owl:onDataRange xsd:string ;
513 - owl:onProperty ILAP:hasProjectResponsible 519 + owl:onProperty ILAP:hasName ;
520 + owl:qualifiedCardinality
521 + "1"^^xsd:nonNegativeInteger
514 ] . 522 ] .
515 523
516 ILAP:ProjectControlSchedule 524 ILAP:ProjectControlSchedule
...@@ -519,19 +527,58 @@ ILAP:ProjectControlSchedule ...@@ -519,19 +527,58 @@ ILAP:ProjectControlSchedule
519 rdfs:subClassOf ILAP:ControlSchedule . 527 rdfs:subClassOf ILAP:ControlSchedule .
520 528
521 ILAP:ProjectPlan 529 ILAP:ProjectPlan
522 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 530 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
523 rdfs:label "Project plan"^^xsd:string ; 531 rdfs:label "Project plan"^^xsd:string ;
524 rdfs:subClassOf ILAP:ExecutionPlan . 532 rdfs:subClassOf ILAP:ExecutionPlan .
525 533
534 +ILAP:ProjectPlan_1
535 + rdf:type ILAP:ProjectPlan ;
536 + rdfs:label "Project plan 1"^^xsd:string ;
537 + ILAP:hasExternalReference
538 + <http://data.posccaesar.org/Data/UC2/R-1234567890> ;
539 + ILAP:hasPlanAssetOwner
540 + BRREG:EniNorge ;
541 + ILAP:hasPlanContractType
542 + ILAP:ScheduleDriven ;
543 + ILAP:hasPlanContractor
544 + BRREG:Subsea7 ;
545 + ILAP:hasPlanExpenseType
546 + ILAP:CAPEX ;
547 + ILAP:hasPlanGeoArea ILAP:Facility ;
548 + ILAP:hasPlanLevel ILAP:L4_ContractControlNetworkSchedule ;
549 + ILAP:hasPlanLicensePartner
550 + BRREG:EniNorge ;
551 + ILAP:hasPlanLifecyclePhase
552 + ILAP:Development ;
553 + ILAP:hasPlanNPDelement
554 + NPD:Goliat , <http://data.posccaesar.org/Data/UC2/Location_1> ;
555 + ILAP:hasPlanOperator
556 + BRREG:EniNorge ;
557 + ILAP:hasPlanProject <http://data.posccaesar.org/Data/UC2/Project_1> ;
558 + ILAP:hasPlanProjectType
559 + ILAP:GreenFieldProject ;
560 + ILAP:hasPlanRegulator
561 + BRREG:NPD ;
562 + ILAP:hasPlanResponsible
563 + BRREG:EniNorge ;
564 + ILAP:hasPlanRollUpPlan
565 + <http://data.posccaesar.org/Data/UC2/ProjectPlan_2> ;
566 + ILAP:hasPlanServiceSupplier
567 + BRREG:Schlumberger , BRREG:BakerHughes ;
568 + ILAP:hasPlanSubplan <http://data.posccaesar.org/Data/UC2/ProjectPlan_2> ;
569 + ILAP:hasPlanValueObjective
570 + ILAP:BusinessAsUsual ;
571 + ILAP:hasReferenceID "RDS489590"^^xsd:string .
572 +
526 ILAP:Regular8To16WorkingDayCalendar 573 ILAP:Regular8To16WorkingDayCalendar
527 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; 574 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ;
528 rdfs:label "Regular8To16Working day calendar"^^xsd:string ; 575 rdfs:label "Regular8To16Working day calendar"^^xsd:string ;
529 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS7014210> . 576 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> .
530 577
531 ILAP:Resource 578 ILAP:Resource
532 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ParticipatingRoleAndDomain> , owl:Class ; 579 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ParticipatingRoleAndDomain> ;
533 rdfs:label "Resource"^^xsd:string ; 580 rdfs:label "Resource"^^xsd:string ;
534 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13875949> ; 581 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS13875949> , owl:Thing ;
535 rdfs:subClassOf 582 rdfs:subClassOf
536 [ rdf:type owl:Restriction ; 583 [ rdf:type owl:Restriction ;
537 owl:onClass ILAP:Profile ; 584 owl:onClass ILAP:Profile ;
...@@ -546,40 +593,38 @@ ILAP:ResourceBased ...@@ -546,40 +593,38 @@ ILAP:ResourceBased
546 rdfs:subClassOf ILAP:ResourceStructure . 593 rdfs:subClassOf ILAP:ResourceStructure .
547 594
548 ILAP:ResourceStructure 595 ILAP:ResourceStructure
549 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; 596 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ;
550 rdfs:label "Resource structure"^^xsd:string ; 597 rdfs:label "Resource structure"^^xsd:string ;
551 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS47466180194> , owl:Thing . 598 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> .
552 599
553 ILAP:ResponsibleOrganization 600 ILAP:ResponsibleOrganization
554 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; 601 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ;
555 rdfs:label "Responsible organization"^^xsd:string ; 602 rdfs:label "Responsible organization"^^xsd:string ;
556 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS282149> , owl:Thing . 603 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS282149> .
557 604
558 ILAP:ResponsiblePerson 605 ILAP:ResponsiblePerson
559 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> , owl:Class ; 606 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ;
560 rdfs:label "Responsible"^^xsd:string ; 607 rdfs:label "Responsible"^^xsd:string ;
561 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS413954> , owl:Thing . 608 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS413954> .
562 609
563 ILAP:Result 610 ILAP:Result
564 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; 611 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ;
565 rdfs:label "Result"^^xsd:string ; 612 rdfs:label "Result"^^xsd:string ;
566 rdfs:subClassOf owl:Thing . 613 rdfs:subClassOf owl:Thing .
567 614
568 ILAP:RevisedSchedule 615 ILAP:RevisedSchedule
569 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 616 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
570 rdfs:label "Revised schedule"^^xsd:string ; 617 rdfs:label "Revised schedule"^^xsd:string ;
571 rdfs:subClassOf ILAP:NetworkSchedule . 618 rdfs:subClassOf ILAP:NetworkSchedule .
572 619
573 ILAP:ScheduledActivity 620 ILAP:ScheduledActivity
574 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; 621 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ;
575 rdfs:label "Activity in Network Schedule"^^xsd:string ; 622 rdfs:label "Activity in Network Schedule"^^xsd:string ;
576 rdfs:subClassOf ILAP:PlannedActivity ; 623 rdfs:subClassOf ILAP:PlannedActivity ;
577 rdfs:subClassOf 624 rdfs:subClassOf
578 [ rdf:type owl:Restriction ; 625 [ rdf:type owl:Restriction ;
579 - owl:maxQualifiedCardinality 626 + owl:allValuesFrom ILAP:ScheduledResource ;
580 - "1"^^xsd:nonNegativeInteger ; 627 + owl:onProperty ILAP:hasActivityScheduledResource
581 - owl:onClass ILAP:PlannedActivity ;
582 - owl:onProperty ILAP:hasActivityInScheduleActivityInPlan
583 ] ; 628 ] ;
584 rdfs:subClassOf 629 rdfs:subClassOf
585 [ rdf:type owl:Restriction ; 630 [ rdf:type owl:Restriction ;
...@@ -590,8 +635,10 @@ ILAP:ScheduledActivity ...@@ -590,8 +635,10 @@ ILAP:ScheduledActivity
590 ] ; 635 ] ;
591 rdfs:subClassOf 636 rdfs:subClassOf
592 [ rdf:type owl:Restriction ; 637 [ rdf:type owl:Restriction ;
593 - owl:allValuesFrom ILAP:ScheduledResource ; 638 + owl:maxQualifiedCardinality
594 - owl:onProperty ILAP:hasActivityScheduledResource 639 + "1"^^xsd:nonNegativeInteger ;
640 + owl:onClass ILAP:PlannedActivity ;
641 + owl:onProperty ILAP:hasActivityInScheduleActivityInPlan
595 ] . 642 ] .
596 643
597 ILAP:ScheduledResource 644 ILAP:ScheduledResource
...@@ -600,9 +647,9 @@ ILAP:ScheduledResource ...@@ -600,9 +647,9 @@ ILAP:ScheduledResource
600 rdfs:subClassOf ILAP:Resource . 647 rdfs:subClassOf ILAP:Resource .
601 648
602 ILAP:Source 649 ILAP:Source
603 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; 650 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ;
604 rdfs:label "Source"^^xsd:string ; 651 rdfs:label "Source"^^xsd:string ;
605 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13103560> , owl:Thing . 652 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> .
606 653
607 ILAP:SourceSpecifiedUserField 654 ILAP:SourceSpecifiedUserField
608 rdf:type owl:Class ; 655 rdf:type owl:Class ;
...@@ -615,35 +662,35 @@ ILAP:SpecifiedUserField ...@@ -615,35 +662,35 @@ ILAP:SpecifiedUserField
615 rdfs:subClassOf ILAP:UserField . 662 rdfs:subClassOf ILAP:UserField .
616 663
617 ILAP:StartToFinish 664 ILAP:StartToFinish
618 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 665 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
619 rdfs:label "Start to finish"^^xsd:string ; 666 rdfs:label "Start to finish"^^xsd:string ;
620 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:Successor . 667 + rdfs:subClassOf ILAP:Successor , <http://posccaesar.org/rdl/RDS44294438194> .
621 668
622 ILAP:StartToStart 669 ILAP:StartToStart
623 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 670 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
624 rdfs:label "Start to start"^^xsd:string ; 671 rdfs:label "Start to start"^^xsd:string ;
625 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:Successor . 672 + rdfs:subClassOf ILAP:Successor , <http://posccaesar.org/rdl/RDS44294438194> .
626 673
627 ILAP:Status 674 ILAP:Status
628 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> ; 675 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ;
629 rdfs:label "Status"^^xsd:string ; 676 rdfs:label "Status"^^xsd:string ;
630 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS427322951> . 677 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing .
631 678
632 ILAP:Successor 679 ILAP:Successor
633 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; 680 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ;
634 rdfs:label "Successor"^^xsd:string ; 681 rdfs:label "Successor"^^xsd:string ;
635 rdfs:subClassOf ILAP:ActivityDependency ; 682 rdfs:subClassOf ILAP:ActivityDependency ;
636 rdfs:subClassOf 683 rdfs:subClassOf
637 [ rdf:type owl:Restriction ; 684 [ rdf:type owl:Restriction ;
638 owl:onClass ILAP:Activity ; 685 owl:onClass ILAP:Activity ;
639 - owl:onProperty ILAP:hasPredecessorActivity ; 686 + owl:onProperty ILAP:hasSuccessorActivity ;
640 owl:qualifiedCardinality 687 owl:qualifiedCardinality
641 "1"^^xsd:nonNegativeInteger 688 "1"^^xsd:nonNegativeInteger
642 ] ; 689 ] ;
643 rdfs:subClassOf 690 rdfs:subClassOf
644 [ rdf:type owl:Restriction ; 691 [ rdf:type owl:Restriction ;
645 owl:onClass ILAP:Activity ; 692 owl:onClass ILAP:Activity ;
646 - owl:onProperty ILAP:hasSuccessorActivity ; 693 + owl:onProperty ILAP:hasPredecessorActivity ;
647 owl:qualifiedCardinality 694 owl:qualifiedCardinality
648 "1"^^xsd:nonNegativeInteger 695 "1"^^xsd:nonNegativeInteger
649 ] . 696 ] .
...@@ -654,9 +701,9 @@ ILAP:Timebased ...@@ -654,9 +701,9 @@ ILAP:Timebased
654 rdfs:subClassOf ILAP:ResourceStructure . 701 rdfs:subClassOf ILAP:ResourceStructure .
655 702
656 ILAP:UserField 703 ILAP:UserField
657 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; 704 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ;
658 rdfs:label "User field"^^xsd:string ; 705 rdfs:label "User field"^^xsd:string ;
659 - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13879234> , owl:Thing ; 706 + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13879234> ;
660 rdfs:subClassOf 707 rdfs:subClassOf
661 [ rdf:type owl:Restriction ; 708 [ rdf:type owl:Restriction ;
662 owl:maxQualifiedCardinality 709 owl:maxQualifiedCardinality
...@@ -666,23 +713,23 @@ ILAP:UserField ...@@ -666,23 +713,23 @@ ILAP:UserField
666 ] . 713 ] .
667 714
668 ILAP:WeekendsFreeCalendar 715 ILAP:WeekendsFreeCalendar
669 - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; 716 + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ;
670 rdfs:label "Weekends free calendar"^^xsd:string ; 717 rdfs:label "Weekends free calendar"^^xsd:string ;
671 - rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> . 718 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:Calendar .
672 719
673 ILAP:WorkTask 720 ILAP:WorkTask
674 - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; 721 + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ;
675 rdfs:label "Work task"^^xsd:string ; 722 rdfs:label "Work task"^^xsd:string ;
676 - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS3149> ; 723 + rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , owl:Thing ;
677 rdfs:subClassOf 724 rdfs:subClassOf
678 [ rdf:type owl:Restriction ; 725 [ rdf:type owl:Restriction ;
679 - owl:onProperty ILAP:hasWorkTaskActivity ; 726 + owl:allValuesFrom BRREG:LegalEntity ;
680 - owl:someValuesFrom ILAP:Activity 727 + owl:onProperty ILAP:hasWorkTaskResponsible
681 ] ; 728 ] ;
682 rdfs:subClassOf 729 rdfs:subClassOf
683 [ rdf:type owl:Restriction ; 730 [ rdf:type owl:Restriction ;
684 - owl:allValuesFrom BRREG:LegalEntity ; 731 + owl:onProperty ILAP:hasWorkTaskActivity ;
685 - owl:onProperty ILAP:hasWorkTaskResponsible 732 + owl:someValuesFrom ILAP:Activity
686 ] . 733 ] .
687 734
688 ILAP:hasActivityActualProgressPercent 735 ILAP:hasActivityActualProgressPercent
...@@ -766,7 +813,7 @@ ILAP:hasActivityPhysicalPercentComplete ...@@ -766,7 +813,7 @@ ILAP:hasActivityPhysicalPercentComplete
766 rdfs:range xsd:float . 813 rdfs:range xsd:float .
767 814
768 ILAP:hasActivityPlan 815 ILAP:hasActivityPlan
769 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 816 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
770 rdfs:domain ILAP:PlannedActivity ; 817 rdfs:domain ILAP:PlannedActivity ;
771 rdfs:label "has activity plan"^^xsd:string ; 818 rdfs:label "has activity plan"^^xsd:string ;
772 rdfs:range ILAP:ExecutionPlan . 819 rdfs:range ILAP:ExecutionPlan .
...@@ -815,7 +862,7 @@ ILAP:hasActivityResponsibleOrganization ...@@ -815,7 +862,7 @@ ILAP:hasActivityResponsibleOrganization
815 rdfs:range ILAP:ResponsibleOrganization . 862 rdfs:range ILAP:ResponsibleOrganization .
816 863
817 ILAP:hasActivityResponsiblePerson 864 ILAP:hasActivityResponsiblePerson
818 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 865 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
819 rdfs:domain ILAP:PlannedActivity ; 866 rdfs:domain ILAP:PlannedActivity ;
820 rdfs:label "has activity responsible"^^xsd:string ; 867 rdfs:label "has activity responsible"^^xsd:string ;
821 rdfs:range ILAP:ResponsiblePerson . 868 rdfs:range ILAP:ResponsiblePerson .
...@@ -853,7 +900,7 @@ ILAP:hasActivityStatus ...@@ -853,7 +900,7 @@ ILAP:hasActivityStatus
853 rdfs:range ILAP:Status . 900 rdfs:range ILAP:Status .
854 901
855 ILAP:hasActivitySuccessor 902 ILAP:hasActivitySuccessor
856 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 903 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
857 rdfs:domain ILAP:PlannedActivity ; 904 rdfs:domain ILAP:PlannedActivity ;
858 rdfs:label "has activity successor"^^xsd:string ; 905 rdfs:label "has activity successor"^^xsd:string ;
859 rdfs:range ILAP:Successor ; 906 rdfs:range ILAP:Successor ;
...@@ -899,7 +946,7 @@ ILAP:hasCalendarDate ...@@ -899,7 +946,7 @@ ILAP:hasCalendarDate
899 rdfs:label "has calendar date"^^xsd:string . 946 rdfs:label "has calendar date"^^xsd:string .
900 947
901 ILAP:hasCalendarFreePeriod 948 ILAP:hasCalendarFreePeriod
902 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 949 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
903 rdfs:domain ILAP:Calendar ; 950 rdfs:domain ILAP:Calendar ;
904 rdfs:label "has calendarcalendar free period"^^xsd:string ; 951 rdfs:label "has calendarcalendar free period"^^xsd:string ;
905 rdfs:range ILAP:CalendarFreePeriod . 952 rdfs:range ILAP:CalendarFreePeriod .
...@@ -934,7 +981,7 @@ ILAP:hasCalendarPeriodWorkHour ...@@ -934,7 +981,7 @@ ILAP:hasCalendarPeriodWorkHour
934 rdfs:subPropertyOf ILAP:hasCalendarPeriodHour . 981 rdfs:subPropertyOf ILAP:hasCalendarPeriodHour .
935 982
936 ILAP:hasCalendarWorkPeriod 983 ILAP:hasCalendarWorkPeriod
937 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 984 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
938 rdfs:domain ILAP:Calendar ; 985 rdfs:domain ILAP:Calendar ;
939 rdfs:label "has calendarcalendar work period"^^xsd:string ; 986 rdfs:label "has calendarcalendar work period"^^xsd:string ;
940 rdfs:range ILAP:CalendarWorkPeriod . 987 rdfs:range ILAP:CalendarWorkPeriod .
...@@ -1151,7 +1198,7 @@ ILAP:hasPlanRegulator ...@@ -1151,7 +1198,7 @@ ILAP:hasPlanRegulator
1151 rdfs:subPropertyOf ILAP:hasPlanResponsible . 1198 rdfs:subPropertyOf ILAP:hasPlanResponsible .
1152 1199
1153 ILAP:hasPlanResponsible 1200 ILAP:hasPlanResponsible
1154 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1201 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
1155 rdfs:label "has plan responsible"^^xsd:string . 1202 rdfs:label "has plan responsible"^^xsd:string .
1156 1203
1157 ILAP:hasPlanRollUpPlan 1204 ILAP:hasPlanRollUpPlan
...@@ -1305,7 +1352,7 @@ ILAP:hasScheduledStart ...@@ -1305,7 +1352,7 @@ ILAP:hasScheduledStart
1305 rdfs:subPropertyOf ILAP:hasScheduleDate . 1352 rdfs:subPropertyOf ILAP:hasScheduleDate .
1306 1353
1307 ILAP:hasSuccessorActivity 1354 ILAP:hasSuccessorActivity
1308 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 1355 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
1309 rdfs:domain ILAP:Successor ; 1356 rdfs:domain ILAP:Successor ;
1310 rdfs:label "has successor activity "^^xsd:string ; 1357 rdfs:label "has successor activity "^^xsd:string ;
1311 rdfs:range ILAP:PlannedActivity ; 1358 rdfs:range ILAP:PlannedActivity ;
......
...@@ -21,7 +21,7 @@ UC2:ActivityDependency_1 ...@@ -21,7 +21,7 @@ UC2:ActivityDependency_1
21 rdfs:label "Activity dependency 1"^^xsd:string . 21 rdfs:label "Activity dependency 1"^^xsd:string .
22 22
23 UC2:ActivityWBS_1 23 UC2:ActivityWBS_1
24 - rdf:type <http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#6> , PBS:AC , ILAP:ActivityWBS , COR:ADA ; 24 + rdf:type COR:ADA , ILAP:ActivityWBS , PBS:AC , <http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#6> ;
25 rdfs:label "Activity WBS 1"^^xsd:string . 25 rdfs:label "Activity WBS 1"^^xsd:string .
26 26
27 UC2:Baseline_1 27 UC2:Baseline_1
...@@ -37,7 +37,7 @@ UC2:CurrentControlEstimate_1 ...@@ -37,7 +37,7 @@ UC2:CurrentControlEstimate_1
37 rdfs:label "Current control estimate 1"^^xsd:string . 37 rdfs:label "Current control estimate 1"^^xsd:string .
38 38
39 UC2:Discipline_1 39 UC2:Discipline_1
40 - rdf:type ILAP:Discipline , COR:BEA ; 40 + rdf:type COR:BEA , ILAP:Discipline ;
41 rdfs:label "Discipline 1"^^xsd:string . 41 rdfs:label "Discipline 1"^^xsd:string .
42 42
43 UC2:FinishToStart_1 43 UC2:FinishToStart_1
...@@ -53,7 +53,7 @@ UC2:FinishToStart_1 ...@@ -53,7 +53,7 @@ UC2:FinishToStart_1
53 2 . 53 2 .
54 54
55 UC2:Location_1 55 UC2:Location_1
56 - rdf:type ILAP:Location , NPD:StatfjordA ; 56 + rdf:type NPD:StatfjordA , ILAP:Location ;
57 rdfs:label "Location 1"^^xsd:string . 57 rdfs:label "Location 1"^^xsd:string .
58 58
59 UC2:Milestone_1 59 UC2:Milestone_1
...@@ -62,9 +62,7 @@ UC2:Milestone_1 ...@@ -62,9 +62,7 @@ UC2:Milestone_1
62 62
63 UC2:NetworkSchedule_1 63 UC2:NetworkSchedule_1
64 rdf:type ILAP:NetworkSchedule ; 64 rdf:type ILAP:NetworkSchedule ;
65 - rdfs:label "Network schedule 1"^^xsd:string ; 65 + rdfs:label "Network schedule 1"^^xsd:string .
66 - ILAP:hasSchedulePlan
67 - UC2:ProjectPlan_1 .
68 66
69 UC2:PlannedActivity_1 67 UC2:PlannedActivity_1
70 rdf:type ILAP:PlannedActivity ; 68 rdf:type ILAP:PlannedActivity ;
...@@ -87,8 +85,6 @@ UC2:PlannedActivity_1 ...@@ -87,8 +85,6 @@ UC2:PlannedActivity_1
87 NCS:Operation ; 85 NCS:Operation ;
88 ILAP:hasActivityPhysicalPercentComplete 86 ILAP:hasActivityPhysicalPercentComplete
89 "45"^^xsd:float ; 87 "45"^^xsd:float ;
90 - ILAP:hasActivityPlan
91 - UC2:ProjectPlan_1 ;
92 ILAP:hasActivityPlannedProgressPercent 88 ILAP:hasActivityPlannedProgressPercent
93 55 ; 89 55 ;
94 ILAP:hasActivityRegulator 90 ILAP:hasActivityRegulator
...@@ -135,46 +131,7 @@ UC2:Profile_1 ...@@ -135,46 +131,7 @@ UC2:Profile_1
135 rdf:type ILAP:Profile ; 131 rdf:type ILAP:Profile ;
136 rdfs:label "Profile 1"^^xsd:string ; 132 rdfs:label "Profile 1"^^xsd:string ;
137 ILAP:hasProfilePoint 133 ILAP:hasProfilePoint
138 - UC2:ProfilePoint_1 , UC2:ProfilePoint_2 . 134 + UC2:ProfilePoint_2 , UC2:ProfilePoint_1 .
139 -
140 -UC2:ProjectPlan_1
141 - rdf:type ILAP:ProjectPlan ;
142 - rdfs:label "Project plan 1"^^xsd:string ;
143 - ILAP:hasExternalReference
144 - UC2:R-1234567890 ;
145 - ILAP:hasPlanAssetOwner
146 - <http://data.posccaesar.org/brreg/EniNorge> ;
147 - ILAP:hasPlanContractType
148 - ILAP:ScheduleDriven ;
149 - ILAP:hasPlanContractor
150 - <http://data.posccaesar.org/brreg/Subsea7> ;
151 - ILAP:hasPlanExpenseType
152 - ILAP:CAPEX ;
153 - ILAP:hasPlanGeoArea ILAP:Facility ;
154 - ILAP:hasPlanLevel ILAP:L4_ContractControlNetworkSchedule ;
155 - ILAP:hasPlanLicensePartner
156 - <http://data.posccaesar.org/brreg/EniNorge> ;
157 - ILAP:hasPlanLifecyclePhase
158 - ILAP:Development ;
159 - ILAP:hasPlanNPDelement
160 - NPD:Goliat , UC2:Location_1 ;
161 - ILAP:hasPlanOperator
162 - <http://data.posccaesar.org/brreg/EniNorge> ;
163 - ILAP:hasPlanProject UC2:Project_1 ;
164 - ILAP:hasPlanProjectType
165 - ILAP:GreenFieldProject ;
166 - ILAP:hasPlanRegulator
167 - <http://data.posccaesar.org/brreg/NPD> ;
168 - ILAP:hasPlanResponsible
169 - <http://data.posccaesar.org/brreg/EniNorge> ;
170 - ILAP:hasPlanRollUpPlan
171 - UC2:ProjectPlan_2 ;
172 - ILAP:hasPlanServiceSupplier
173 - <http://data.posccaesar.org/brreg/Schlumberger> , <http://data.posccaesar.org/brreg/BakerHughes> ;
174 - ILAP:hasPlanSubplan UC2:ProjectPlan_2 ;
175 - ILAP:hasPlanValueObjective
176 - ILAP:BusinessAsUsual ;
177 - ILAP:hasReferenceID "RDS489590"^^xsd:string .
178 135
179 UC2:ProjectPlan_2 136 UC2:ProjectPlan_2
180 rdf:type ILAP:ProjectPlan ; 137 rdf:type ILAP:ProjectPlan ;
...@@ -215,18 +172,18 @@ ILAP:ContractorWBS_1 ...@@ -215,18 +172,18 @@ ILAP:ContractorWBS_1
215 rdf:type ILAP:ContractorWBS ; 172 rdf:type ILAP:ContractorWBS ;
216 rdfs:label "Contractor WBS 1"^^xsd:string ; 173 rdfs:label "Contractor WBS 1"^^xsd:string ;
217 ILAP:hasContractorWBSelement 174 ILAP:hasContractorWBSelement
218 - "Pump engineer"^^xsd:string , "Installing pump"^^xsd:string , "Installation activity"^^xsd:string . 175 + "Installation activity"^^xsd:string , "Installing pump"^^xsd:string , "Pump engineer"^^xsd:string .
219 176
220 ILAP:PlannedActivity 177 ILAP:PlannedActivity
221 rdfs:subClassOf 178 rdfs:subClassOf
222 [ rdf:type owl:Restriction ; 179 [ rdf:type owl:Restriction ;
223 - owl:allValuesFrom ILAP:ResponsibleOrganization ; 180 + owl:allValuesFrom ILAP:Calendar ;
224 - owl:onProperty ILAP:hasActivityResponsibleOrganization 181 + owl:onProperty ILAP:hasActivityCalendar
225 ] ; 182 ] ;
226 rdfs:subClassOf 183 rdfs:subClassOf
227 [ rdf:type owl:Restriction ; 184 [ rdf:type owl:Restriction ;
228 - owl:allValuesFrom ILAP:Calendar ; 185 + owl:allValuesFrom ILAP:ResponsibleOrganization ;
229 - owl:onProperty ILAP:hasActivityCalendar 186 + owl:onProperty ILAP:hasActivityResponsibleOrganization
230 ] . 187 ] .
231 188
232 ILAP:TargetSchedule_1 189 ILAP:TargetSchedule_1
......