Showing
6 changed files
with
244 additions
and
787 deletions
| ... | @@ -13,57 +13,49 @@ | ... | @@ -13,57 +13,49 @@ |
| 13 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 13 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 14 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 14 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 15 | 15 | ||
| 16 | -<http://data.posccaesar.org/Data/UC1/ActivityInSchedule_1> | ||
| 17 | - ILAP:hasActivityInScheduleActivityInPlan | ||
| 18 | - ILAP:ActivityInPlan_1 . | ||
| 19 | - | ||
| 20 | -<http://data.posccaesar.org/Data/UC1/ActivityInSchedule_2> | ||
| 21 | - ILAP:hasActivityInScheduleActivityInPlan | ||
| 22 | - ILAP:ActivityInPlan_1 . | ||
| 23 | - | ||
| 24 | ILAP: | 16 | ILAP: |
| 25 | rdf:type owl:Ontology ; | 17 | rdf:type owl:Ontology ; |
| 26 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 18 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 27 | 19 | ||
| 28 | ILAP:Activity | 20 | ILAP:Activity |
| 29 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; | 21 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| 30 | rdfs:label "Activity"^^xsd:string ; | 22 | rdfs:label "Activity"^^xsd:string ; |
| 31 | rdfs:subClassOf | 23 | rdfs:subClassOf |
| 32 | [ rdf:type owl:Restriction ; | 24 | [ rdf:type owl:Restriction ; |
| 33 | - owl:allValuesFrom ILAP:Discipline ; | 25 | + owl:allValuesFrom ILAP:Status ; |
| 34 | - owl:onProperty ILAP:hasActivityDiscipline | 26 | + owl:onProperty ILAP:hasActivityStatus |
| 35 | ] ; | 27 | ] ; |
| 36 | rdfs:subClassOf | 28 | rdfs:subClassOf |
| 37 | [ rdf:type owl:Restriction ; | 29 | [ rdf:type owl:Restriction ; |
| 38 | - owl:allValuesFrom ILAP:Calendar ; | 30 | + owl:onProperty ILAP:hasExternalReference ; |
| 39 | - owl:onProperty ILAP:hasActivityCalendar | 31 | + owl:someValuesFrom ILAP:ExternalReference |
| 40 | ] ; | 32 | ] ; |
| 41 | rdfs:subClassOf | 33 | rdfs:subClassOf |
| 42 | [ rdf:type owl:Restriction ; | 34 | [ rdf:type owl:Restriction ; |
| 43 | - owl:onProperty ILAP:hasExternalReference ; | 35 | + owl:allValuesFrom ILAP:Calendar ; |
| 44 | - owl:someValuesFrom ILAP:ExternalReference | 36 | + owl:onProperty ILAP:hasActivityCalendar |
| 45 | ] ; | 37 | ] ; |
| 46 | rdfs:subClassOf | 38 | rdfs:subClassOf |
| 47 | [ rdf:type owl:Restriction ; | 39 | [ rdf:type owl:Restriction ; |
| 48 | - owl:allValuesFrom ILAP:Status ; | 40 | + owl:allValuesFrom ILAP:Discipline ; |
| 49 | - owl:onProperty ILAP:hasActivityStatus | 41 | + owl:onProperty ILAP:hasActivityDiscipline |
| 50 | ] . | 42 | ] . |
| 51 | 43 | ||
| 52 | ILAP:ActivityDependency | 44 | ILAP:ActivityDependency |
| 53 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; | 45 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; |
| 54 | rdfs:label "Activity Dependency"^^xsd:string ; | 46 | rdfs:label "Activity Dependency"^^xsd:string ; |
| 55 | rdfs:subClassOf ILAP:Constraint ; | 47 | rdfs:subClassOf ILAP:Constraint ; |
| 56 | rdfs:subClassOf | 48 | rdfs:subClassOf |
| 57 | [ rdf:type owl:Restriction ; | 49 | [ rdf:type owl:Restriction ; |
| 58 | owl:onClass ILAP:Activity ; | 50 | owl:onClass ILAP:Activity ; |
| 59 | - owl:onProperty ILAP:hasPredecessorActivity ; | 51 | + owl:onProperty ILAP:hasSuccessorActivity ; |
| 60 | owl:qualifiedCardinality | 52 | owl:qualifiedCardinality |
| 61 | "1"^^xsd:nonNegativeInteger | 53 | "1"^^xsd:nonNegativeInteger |
| 62 | ] ; | 54 | ] ; |
| 63 | rdfs:subClassOf | 55 | rdfs:subClassOf |
| 64 | [ rdf:type owl:Restriction ; | 56 | [ rdf:type owl:Restriction ; |
| 65 | owl:onClass ILAP:Activity ; | 57 | owl:onClass ILAP:Activity ; |
| 66 | - owl:onProperty ILAP:hasSuccessorActivity ; | 58 | + owl:onProperty ILAP:hasPredecessorActivity ; |
| 67 | owl:qualifiedCardinality | 59 | owl:qualifiedCardinality |
| 68 | "1"^^xsd:nonNegativeInteger | 60 | "1"^^xsd:nonNegativeInteger |
| 69 | ] . | 61 | ] . |
| ... | @@ -71,24 +63,14 @@ ILAP:ActivityDependency | ... | @@ -71,24 +63,14 @@ ILAP:ActivityDependency |
| 71 | ILAP:ActivityInPlan_1 | 63 | ILAP:ActivityInPlan_1 |
| 72 | rdf:type ILAP:PlannedActivity ; | 64 | rdf:type ILAP:PlannedActivity ; |
| 73 | rdfs:label "Activity in plan 1"^^xsd:string ; | 65 | rdfs:label "Activity in plan 1"^^xsd:string ; |
| 74 | - ILAP:hasActivityActiveStatus | ||
| 75 | - <http://data.posccaesar.org/Data/UC1/ActivityStatus_1> ; | ||
| 76 | ILAP:hasActivityActualProgressPercent | 66 | ILAP:hasActivityActualProgressPercent |
| 77 | "75"^^xsd:float ; | 67 | "75"^^xsd:float ; |
| 78 | - ILAP:hasActivityCalendar | ||
| 79 | - <http://data.posccaesar.org/Data/UC1/Calendar_1> ; | ||
| 80 | ILAP:hasActivityContractor | 68 | ILAP:hasActivityContractor |
| 81 | BRREG:BakerHughes ; | 69 | BRREG:BakerHughes ; |
| 82 | - ILAP:hasActivityDiscipline | ||
| 83 | - <http://data.posccaesar.org/Data/UC1/Discipline_1> ; | ||
| 84 | ILAP:hasActivityEstimatedWeight | 70 | ILAP:hasActivityEstimatedWeight |
| 85 | "10500"^^xsd:float ; | 71 | "10500"^^xsd:float ; |
| 86 | ILAP:hasActivityLocation | 72 | ILAP:hasActivityLocation |
| 87 | NCS:NPDelement_1 ; | 73 | NCS:NPDelement_1 ; |
| 88 | - ILAP:hasActivityPartActivity | ||
| 89 | - <http://data.posccaesar.org/Data/UC1/ActivityInPlan_2> ; | ||
| 90 | - ILAP:hasActivityPhase | ||
| 91 | - <http://data.posccaesar.org/Data/UC1/Phase_1> ; | ||
| 92 | ILAP:hasActivityPhysicalPercentComplete | 74 | ILAP:hasActivityPhysicalPercentComplete |
| 93 | "70"^^xsd:float ; | 75 | "70"^^xsd:float ; |
| 94 | ILAP:hasActivityPlan | 76 | ILAP:hasActivityPlan |
| ... | @@ -99,20 +81,12 @@ ILAP:ActivityInPlan_1 | ... | @@ -99,20 +81,12 @@ ILAP:ActivityInPlan_1 |
| 99 | <http://data.posccaesar.org/Data/UC1/PlannedResource_1> ; | 81 | <http://data.posccaesar.org/Data/UC1/PlannedResource_1> ; |
| 100 | ILAP:hasActivityRegulator | 82 | ILAP:hasActivityRegulator |
| 101 | BRREG:NPD ; | 83 | BRREG:NPD ; |
| 102 | - ILAP:hasActivityResourceProfile | ||
| 103 | - <http://data.posccaesar.org/Data/UC1/Profile_1> ; | ||
| 104 | ILAP:hasActivityResponsiblePerson | 84 | ILAP:hasActivityResponsiblePerson |
| 105 | POB:RolfHansen ; | 85 | POB:RolfHansen ; |
| 106 | - ILAP:hasActivityResult | ||
| 107 | - <http://data.posccaesar.org/Data/UC1/Result_1> ; | ||
| 108 | - ILAP:hasActivityRiskFactor | ||
| 109 | - <http://data.posccaesar.org/Data/UC1/RiskFactor_1> ; | ||
| 110 | ILAP:hasActivityShutdown | 86 | ILAP:hasActivityShutdown |
| 111 | <http://data.posccaesar.org/Data/UC1/Shutdown_1> ; | 87 | <http://data.posccaesar.org/Data/UC1/Shutdown_1> ; |
| 112 | ILAP:hasActivityStatus | 88 | ILAP:hasActivityStatus |
| 113 | ILAP:Active ; | 89 | ILAP:Active ; |
| 114 | - ILAP:hasActivitySuccessor | ||
| 115 | - <http://data.posccaesar.org/Data/UC1/ActivityDependency_1> ; | ||
| 116 | ILAP:hasActivitySupplier | 90 | ILAP:hasActivitySupplier |
| 117 | BRREG:BakerHughes ; | 91 | BRREG:BakerHughes ; |
| 118 | ILAP:hasActivityTaskLeader | 92 | ILAP:hasActivityTaskLeader |
| ... | @@ -136,7 +110,7 @@ ILAP:ActivityInPlan_1 | ... | @@ -136,7 +110,7 @@ ILAP:ActivityInPlan_1 |
| 136 | "Specific object ID"^^xsd:string . | 110 | "Specific object ID"^^xsd:string . |
| 137 | 111 | ||
| 138 | ILAP:ActivityPlan | 112 | ILAP:ActivityPlan |
| 139 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; | 113 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; |
| 140 | rdfs:label "Activity Plan"^^xsd:string ; | 114 | rdfs:label "Activity Plan"^^xsd:string ; |
| 141 | rdfs:subClassOf ILAP:Network ; | 115 | rdfs:subClassOf ILAP:Network ; |
| 142 | rdfs:subClassOf | 116 | rdfs:subClassOf |
| ... | @@ -151,7 +125,7 @@ ILAP:ActivityStatus | ... | @@ -151,7 +125,7 @@ ILAP:ActivityStatus |
| 151 | rdfs:subClassOf ILAP:Status . | 125 | rdfs:subClassOf ILAP:Status . |
| 152 | 126 | ||
| 153 | ILAP:ActivityWBS | 127 | ILAP:ActivityWBS |
| 154 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; | 128 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; |
| 155 | rdfs:label "Activity WBS"^^xsd:string ; | 129 | rdfs:label "Activity WBS"^^xsd:string ; |
| 156 | rdfs:subClassOf ILAP:Network . | 130 | rdfs:subClassOf ILAP:Network . |
| 157 | 131 | ||
| ... | @@ -166,15 +140,15 @@ ILAP:After_Shutdown | ... | @@ -166,15 +140,15 @@ ILAP:After_Shutdown |
| 166 | ILAP:Application | 140 | ILAP:Application |
| 167 | rdf:type owl:Class ; | 141 | rdf:type owl:Class ; |
| 168 | rdfs:label "Application"^^xsd:string ; | 142 | rdfs:label "Application"^^xsd:string ; |
| 169 | - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS43165907246> , owl:Thing . | 143 | + rdfs:subClassOf owl:Thing , <http://data.posccaesar.org/rdl/RDS43165907246> . |
| 170 | 144 | ||
| 171 | ILAP:Asset | 145 | ILAP:Asset |
| 172 | rdf:type owl:Class ; | 146 | rdf:type owl:Class ; |
| 173 | rdfs:label "Asset"^^xsd:string ; | 147 | rdfs:label "Asset"^^xsd:string ; |
| 174 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13318199> , owl:Thing . | 148 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13318199> . |
| 175 | 149 | ||
| 176 | ILAP:Baseline | 150 | ILAP:Baseline |
| 177 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 151 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 178 | rdfs:label "Baseline"^^xsd:string ; | 152 | rdfs:label "Baseline"^^xsd:string ; |
| 179 | rdfs:subClassOf ILAP:Network . | 153 | rdfs:subClassOf ILAP:Network . |
| 180 | 154 | ||
| ... | @@ -192,9 +166,9 @@ ILAP:CAPEX | ... | @@ -192,9 +166,9 @@ ILAP:CAPEX |
| 192 | rdfs:label "CAPEX"^^xsd:string . | 166 | rdfs:label "CAPEX"^^xsd:string . |
| 193 | 167 | ||
| 194 | ILAP:Calendar | 168 | ILAP:Calendar |
| 195 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; | 169 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| 196 | rdfs:label "Calendar"^^xsd:string ; | 170 | rdfs:label "Calendar"^^xsd:string ; |
| 197 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7014210> ; | 171 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ; |
| 198 | rdfs:subClassOf | 172 | rdfs:subClassOf |
| 199 | [ rdf:type owl:Restriction ; | 173 | [ rdf:type owl:Restriction ; |
| 200 | owl:allValuesFrom ILAP:CalendarFreePeriod ; | 174 | owl:allValuesFrom ILAP:CalendarFreePeriod ; |
| ... | @@ -202,14 +176,14 @@ ILAP:Calendar | ... | @@ -202,14 +176,14 @@ ILAP:Calendar |
| 202 | ] . | 176 | ] . |
| 203 | 177 | ||
| 204 | ILAP:CalendarDay | 178 | ILAP:CalendarDay |
| 205 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; | 179 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; |
| 206 | rdfs:label "Calendar day"^^xsd:string ; | 180 | rdfs:label "Calendar day"^^xsd:string ; |
| 207 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> . | 181 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , owl:Thing . |
| 208 | 182 | ||
| 209 | ILAP:CalendarFreePeriod | 183 | ILAP:CalendarFreePeriod |
| 210 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; | 184 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; |
| 211 | rdfs:label "Calendar free period"^^xsd:string ; | 185 | rdfs:label "Calendar free period"^^xsd:string ; |
| 212 | - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ; | 186 | + rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ; |
| 213 | rdfs:subClassOf | 187 | rdfs:subClassOf |
| 214 | [ rdf:type owl:Restriction ; | 188 | [ rdf:type owl:Restriction ; |
| 215 | owl:onClass ILAP:Calendar ; | 189 | owl:onClass ILAP:Calendar ; |
| ... | @@ -221,28 +195,28 @@ ILAP:CalendarFreePeriod | ... | @@ -221,28 +195,28 @@ ILAP:CalendarFreePeriod |
| 221 | ] . | 195 | ] . |
| 222 | 196 | ||
| 223 | ILAP:CalendarFreePeriodWeekRepeat | 197 | ILAP:CalendarFreePeriodWeekRepeat |
| 224 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; | 198 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; |
| 225 | rdfs:label "Free day"^^xsd:string ; | 199 | rdfs:label "Free day"^^xsd:string ; |
| 226 | - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod . | 200 | + rdfs:subClassOf ILAP:CalendarFreePeriod , <http://posccaesar.org/rdl/page/RDS356215271> . |
| 227 | 201 | ||
| 228 | ILAP:CalendarHour | 202 | ILAP:CalendarHour |
| 229 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; | 203 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; |
| 230 | rdfs:label "calendar hour"^^xsd:string ; | 204 | rdfs:label "calendar hour"^^xsd:string ; |
| 231 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS380969> , <http://posccaesar.org/rdl/RDS1326734> . | 205 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> , owl:Thing . |
| 232 | 206 | ||
| 233 | ILAP:CalendarPeriod | 207 | ILAP:CalendarPeriod |
| 234 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> ; | 208 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ; |
| 235 | rdfs:label "Calendar period"^^xsd:string ; | 209 | rdfs:label "Calendar period"^^xsd:string ; |
| 236 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS4316824755> , owl:Thing ; | 210 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ; |
| 237 | rdfs:subClassOf | 211 | rdfs:subClassOf |
| 238 | [ rdf:type owl:Restriction ; | 212 | [ rdf:type owl:Restriction ; |
| 239 | - owl:allValuesFrom ILAP:CalendarDay ; | 213 | + owl:allValuesFrom ILAP:CalendarHour ; |
| 240 | - owl:onProperty ILAP:hasCalendarPeriodDay | 214 | + owl:onProperty ILAP:hasCalendarPeriodHour |
| 241 | ] ; | 215 | ] ; |
| 242 | rdfs:subClassOf | 216 | rdfs:subClassOf |
| 243 | [ rdf:type owl:Restriction ; | 217 | [ rdf:type owl:Restriction ; |
| 244 | - owl:allValuesFrom ILAP:CalendarHour ; | 218 | + owl:allValuesFrom ILAP:CalendarDay ; |
| 245 | - owl:onProperty ILAP:hasCalendarPeriodHour | 219 | + owl:onProperty ILAP:hasCalendarPeriodDay |
| 246 | ] . | 220 | ] . |
| 247 | 221 | ||
| 248 | ILAP:Campaign | 222 | ILAP:Campaign |
| ... | @@ -261,12 +235,12 @@ ILAP:Change_over | ... | @@ -261,12 +235,12 @@ ILAP:Change_over |
| 261 | ILAP:Constraint | 235 | ILAP:Constraint |
| 262 | rdf:type owl:Class ; | 236 | rdf:type owl:Class ; |
| 263 | rdfs:label "Constraint"^^xsd:string ; | 237 | rdfs:label "Constraint"^^xsd:string ; |
| 264 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS330344> , owl:Thing . | 238 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS330344> . |
| 265 | 239 | ||
| 266 | ILAP:Contract | 240 | ILAP:Contract |
| 267 | rdf:type owl:Class ; | 241 | rdf:type owl:Class ; |
| 268 | rdfs:label "Contract"^^xsd:string ; | 242 | rdfs:label "Contract"^^xsd:string ; |
| 269 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7953078> , owl:Thing . | 243 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7953078> . |
| 270 | 244 | ||
| 271 | ILAP:ControlSchedule | 245 | ILAP:ControlSchedule |
| 272 | rdf:type owl:Class ; | 246 | rdf:type owl:Class ; |
| ... | @@ -276,26 +250,22 @@ ILAP:ControlSchedule | ... | @@ -276,26 +250,22 @@ ILAP:ControlSchedule |
| 276 | ILAP:Cost | 250 | ILAP:Cost |
| 277 | rdf:type owl:Class ; | 251 | rdf:type owl:Class ; |
| 278 | rdfs:label "Cost"^^xsd:string ; | 252 | rdfs:label "Cost"^^xsd:string ; |
| 279 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945027> , owl:Thing . | 253 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945027> . |
| 280 | 254 | ||
| 281 | ILAP:CostBased | 255 | ILAP:CostBased |
| 282 | rdf:type owl:Class ; | 256 | rdf:type owl:Class ; |
| 283 | rdfs:label "Cost based"^^xsd:string ; | 257 | rdfs:label "Cost based"^^xsd:string ; |
| 284 | rdfs:subClassOf ILAP:Resource . | 258 | rdfs:subClassOf ILAP:Resource . |
| 285 | 259 | ||
| 286 | -ILAP:Critical | ||
| 287 | - rdf:type ILAP:ShutdownPriority ; | ||
| 288 | - rdfs:label "Critical"^^xsd:string . | ||
| 289 | - | ||
| 290 | ILAP:CurrentSchedule | 260 | ILAP:CurrentSchedule |
| 291 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 261 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 292 | rdfs:label "Current schedule"^^xsd:string ; | 262 | rdfs:label "Current schedule"^^xsd:string ; |
| 293 | rdfs:subClassOf ILAP:Schedule . | 263 | rdfs:subClassOf ILAP:Schedule . |
| 294 | 264 | ||
| 295 | ILAP:Data | 265 | ILAP:Data |
| 296 | rdf:type owl:Class ; | 266 | rdf:type owl:Class ; |
| 297 | rdfs:label "Data"^^xsd:string ; | 267 | rdfs:label "Data"^^xsd:string ; |
| 298 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS11708918> , ILAP:Information ; | 268 | + rdfs:subClassOf ILAP:Information , <http://posccaesar.org/rdl/RDS11708918> ; |
| 299 | rdfs:subClassOf | 269 | rdfs:subClassOf |
| 300 | [ rdf:type owl:Restriction ; | 270 | [ rdf:type owl:Restriction ; |
| 301 | owl:onClass ILAP:Project ; | 271 | owl:onClass ILAP:Project ; |
| ... | @@ -324,9 +294,9 @@ ILAP:Dependent_on_Shutdown | ... | @@ -324,9 +294,9 @@ ILAP:Dependent_on_Shutdown |
| 324 | rdfs:label "Dependent on Shutdown"^^xsd:string . | 294 | rdfs:label "Dependent on Shutdown"^^xsd:string . |
| 325 | 295 | ||
| 326 | ILAP:Discipline | 296 | ILAP:Discipline |
| 327 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; | 297 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; |
| 328 | rdfs:label "Discipline"^^xsd:string ; | 298 | rdfs:label "Discipline"^^xsd:string ; |
| 329 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS6811233> , owl:Thing . | 299 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS6811233> . |
| 330 | 300 | ||
| 331 | ILAP:Drilling_Shutdown | 301 | ILAP:Drilling_Shutdown |
| 332 | rdf:type ILAP:ShutdownContent ; | 302 | rdf:type ILAP:ShutdownContent ; |
| ... | @@ -345,15 +315,13 @@ ILAP:Equipment_Shutdown | ... | @@ -345,15 +315,13 @@ ILAP:Equipment_Shutdown |
| 345 | rdfs:label "Equipment Shutdown"^^xsd:string . | 315 | rdfs:label "Equipment Shutdown"^^xsd:string . |
| 346 | 316 | ||
| 347 | ILAP:ExternalReference | 317 | ILAP:ExternalReference |
| 348 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ; | 318 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ; |
| 349 | rdfs:label "External Reference"^^xsd:string ; | 319 | rdfs:label "External Reference"^^xsd:string ; |
| 350 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/page/RDS720105291> ; | 320 | + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ; |
| 351 | rdfs:subClassOf | 321 | rdfs:subClassOf |
| 352 | [ rdf:type owl:Restriction ; | 322 | [ rdf:type owl:Restriction ; |
| 353 | - owl:onDataRange xsd:string ; | 323 | + owl:allValuesFrom ILAP:Application ; |
| 354 | - owl:onProperty ILAP:hasObjectReferenceID ; | 324 | + owl:onProperty ILAP:hasReferenceApplication |
| 355 | - owl:qualifiedCardinality | ||
| 356 | - "1"^^xsd:nonNegativeInteger | ||
| 357 | ] ; | 325 | ] ; |
| 358 | rdfs:subClassOf | 326 | rdfs:subClassOf |
| 359 | [ rdf:type owl:Restriction ; | 327 | [ rdf:type owl:Restriction ; |
| ... | @@ -362,8 +330,10 @@ ILAP:ExternalReference | ... | @@ -362,8 +330,10 @@ ILAP:ExternalReference |
| 362 | ] ; | 330 | ] ; |
| 363 | rdfs:subClassOf | 331 | rdfs:subClassOf |
| 364 | [ rdf:type owl:Restriction ; | 332 | [ rdf:type owl:Restriction ; |
| 365 | - owl:allValuesFrom ILAP:Application ; | 333 | + owl:onDataRange xsd:string ; |
| 366 | - owl:onProperty ILAP:hasReferenceApplication | 334 | + owl:onProperty ILAP:hasObjectReferenceID ; |
| 335 | + owl:qualifiedCardinality | ||
| 336 | + "1"^^xsd:nonNegativeInteger | ||
| 367 | ] . | 337 | ] . |
| 368 | 338 | ||
| 369 | ILAP:Facility | 339 | ILAP:Facility |
| ... | @@ -376,14 +346,14 @@ ILAP:Field_Shutdown | ... | @@ -376,14 +346,14 @@ ILAP:Field_Shutdown |
| 376 | rdfs:label "Field Shutdown"^^xsd:string . | 346 | rdfs:label "Field Shutdown"^^xsd:string . |
| 377 | 347 | ||
| 378 | ILAP:FinishToFinish | 348 | ILAP:FinishToFinish |
| 379 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 349 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 380 | rdfs:label "Finish to finish"^^xsd:string ; | 350 | rdfs:label "Finish to finish"^^xsd:string ; |
| 381 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 351 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 382 | 352 | ||
| 383 | ILAP:FinishToStart | 353 | ILAP:FinishToStart |
| 384 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 354 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 385 | rdfs:label "Finish to start"^^xsd:string ; | 355 | rdfs:label "Finish to start"^^xsd:string ; |
| 386 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 356 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 387 | 357 | ||
| 388 | ILAP:FunctionalLocation | 358 | ILAP:FunctionalLocation |
| 389 | rdf:type owl:Class ; | 359 | rdf:type owl:Class ; |
| ... | @@ -434,7 +404,7 @@ ILAP:IndependentOfOperation | ... | @@ -434,7 +404,7 @@ ILAP:IndependentOfOperation |
| 434 | ILAP:Information | 404 | ILAP:Information |
| 435 | rdf:type owl:Class ; | 405 | rdf:type owl:Class ; |
| 436 | rdfs:label "Information"^^xsd:string ; | 406 | rdfs:label "Information"^^xsd:string ; |
| 437 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS11711488> , owl:Thing . | 407 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS11711488> . |
| 438 | 408 | ||
| 439 | ILAP:Knowledge | 409 | ILAP:Knowledge |
| 440 | rdf:type owl:Class ; | 410 | rdf:type owl:Class ; |
| ... | @@ -446,7 +416,7 @@ ILAP:LiftingOperation | ... | @@ -446,7 +416,7 @@ ILAP:LiftingOperation |
| 446 | rdfs:label "Lifting operation"^^xsd:string . | 416 | rdfs:label "Lifting operation"^^xsd:string . |
| 447 | 417 | ||
| 448 | ILAP:LiveSchedule | 418 | ILAP:LiveSchedule |
| 449 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 419 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 450 | rdfs:label "Live schedule"^^xsd:string ; | 420 | rdfs:label "Live schedule"^^xsd:string ; |
| 451 | rdfs:subClassOf ILAP:Schedule . | 421 | rdfs:subClassOf ILAP:Schedule . |
| 452 | 422 | ||
| ... | @@ -455,9 +425,9 @@ ILAP:Living_Quarter_Shutdown | ... | @@ -455,9 +425,9 @@ ILAP:Living_Quarter_Shutdown |
| 455 | rdfs:label "Living Quarter Shutdown"^^xsd:string . | 425 | rdfs:label "Living Quarter Shutdown"^^xsd:string . |
| 456 | 426 | ||
| 457 | ILAP:Location | 427 | ILAP:Location |
| 458 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ; | 428 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ; |
| 459 | rdfs:label "Location"^^xsd:string ; | 429 | rdfs:label "Location"^^xsd:string ; |
| 460 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS943618371> . | 430 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing . |
| 461 | 431 | ||
| 462 | ILAP:LowCriticality | 432 | ILAP:LowCriticality |
| 463 | rdf:type ILAP:DegreeOfCriticality ; | 433 | rdf:type ILAP:DegreeOfCriticality ; |
| ... | @@ -468,7 +438,7 @@ ILAP:LowPriority | ... | @@ -468,7 +438,7 @@ ILAP:LowPriority |
| 468 | rdfs:label "Low priority"^^xsd:string . | 438 | rdfs:label "Low priority"^^xsd:string . |
| 469 | 439 | ||
| 470 | ILAP:Milestone | 440 | ILAP:Milestone |
| 471 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> , owl:Class ; | 441 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ; |
| 472 | rdfs:label "Milestone"^^xsd:string . | 442 | rdfs:label "Milestone"^^xsd:string . |
| 473 | 443 | ||
| 474 | ILAP:MiniShutdown | 444 | ILAP:MiniShutdown |
| ... | @@ -478,7 +448,7 @@ ILAP:MiniShutdown | ... | @@ -478,7 +448,7 @@ ILAP:MiniShutdown |
| 478 | ILAP:Network | 448 | ILAP:Network |
| 479 | rdf:type owl:Class ; | 449 | rdf:type owl:Class ; |
| 480 | rdfs:label "Network"^^xsd:string ; | 450 | rdfs:label "Network"^^xsd:string ; |
| 481 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1293947091> , owl:Thing . | 451 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1293947091> . |
| 482 | 452 | ||
| 483 | ILAP:Non-Scheduled_Shutdown | 453 | ILAP:Non-Scheduled_Shutdown |
| 484 | rdf:type ILAP:ShutdownType ; | 454 | rdf:type ILAP:ShutdownType ; |
| ... | @@ -492,10 +462,6 @@ ILAP:NormalPriority | ... | @@ -492,10 +462,6 @@ ILAP:NormalPriority |
| 492 | rdf:type ILAP:DegreeOfPriority ; | 462 | rdf:type ILAP:DegreeOfPriority ; |
| 493 | rdfs:label "Normal priority"^^xsd:string . | 463 | rdfs:label "Normal priority"^^xsd:string . |
| 494 | 464 | ||
| 495 | -ILAP:Not_Critical | ||
| 496 | - rdf:type ILAP:ShutdownPriority ; | ||
| 497 | - rdfs:label "Not Critical"^^xsd:string . | ||
| 498 | - | ||
| 499 | ILAP:OPEX | 465 | ILAP:OPEX |
| 500 | rdf:type ILAP:ProjectType ; | 466 | rdf:type ILAP:ProjectType ; |
| 501 | rdfs:label "OPEX"^^xsd:string . | 467 | rdfs:label "OPEX"^^xsd:string . |
| ... | @@ -521,49 +487,49 @@ ILAP:PhysicalLocation | ... | @@ -521,49 +487,49 @@ ILAP:PhysicalLocation |
| 521 | rdfs:subClassOf ILAP:Location . | 487 | rdfs:subClassOf ILAP:Location . |
| 522 | 488 | ||
| 523 | ILAP:PlanClassifier | 489 | ILAP:PlanClassifier |
| 524 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; | 490 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; |
| 525 | rdfs:label "Plan classifier"^^xsd:string ; | 491 | rdfs:label "Plan classifier"^^xsd:string ; |
| 526 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> . | 492 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , owl:Thing . |
| 527 | 493 | ||
| 528 | ILAP:PlanContentType | 494 | ILAP:PlanContentType |
| 529 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; | 495 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; |
| 530 | rdfs:label "Plan content type"^^xsd:string ; | 496 | rdfs:label "Plan content type"^^xsd:string ; |
| 531 | - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> . | 497 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS892484261> , ILAP:PlanClassifier . |
| 532 | 498 | ||
| 533 | ILAP:PlanContractType | 499 | ILAP:PlanContractType |
| 534 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; | 500 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; |
| 535 | rdfs:label "Plan contract type"^^xsd:string ; | 501 | rdfs:label "Plan contract type"^^xsd:string ; |
| 536 | rdfs:subClassOf ILAP:PlanClassifier . | 502 | rdfs:subClassOf ILAP:PlanClassifier . |
| 537 | 503 | ||
| 538 | ILAP:PlanExpenseType | 504 | ILAP:PlanExpenseType |
| 539 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; | 505 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; |
| 540 | rdfs:label "Plan expense type"^^xsd:string ; | 506 | rdfs:label "Plan expense type"^^xsd:string ; |
| 541 | rdfs:subClassOf ILAP:PlanClassifier . | 507 | rdfs:subClassOf ILAP:PlanClassifier . |
| 542 | 508 | ||
| 543 | ILAP:PlanGeoArea | 509 | ILAP:PlanGeoArea |
| 544 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> ; | 510 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ; |
| 545 | rdfs:label "Plan geographic area"^^xsd:string ; | 511 | rdfs:label "Plan geographic area"^^xsd:string ; |
| 546 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . | 512 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . |
| 547 | 513 | ||
| 548 | ILAP:PlanLevel | 514 | ILAP:PlanLevel |
| 549 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; | 515 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; |
| 550 | rdfs:label "Plan level"^^xsd:string ; | 516 | rdfs:label "Plan level"^^xsd:string ; |
| 551 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . | 517 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . |
| 552 | 518 | ||
| 553 | ILAP:PlanLifecycleStage | 519 | ILAP:PlanLifecycleStage |
| 554 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 520 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; |
| 555 | rdfs:label "Plan lifecycle stage"^^xsd:string ; | 521 | rdfs:label "Plan lifecycle stage"^^xsd:string ; |
| 556 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . | 522 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . |
| 557 | 523 | ||
| 558 | ILAP:PlanObjectiveType | 524 | ILAP:PlanObjectiveType |
| 559 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> , owl:Class ; | 525 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ; |
| 560 | rdfs:label "Plan objective type"^^xsd:string ; | 526 | rdfs:label "Plan objective type"^^xsd:string ; |
| 561 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier . | 527 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS43168516168> . |
| 562 | 528 | ||
| 563 | ILAP:PlanProjectType | 529 | ILAP:PlanProjectType |
| 564 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; | 530 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; |
| 565 | rdfs:label "Plan project type"^^xsd:string ; | 531 | rdfs:label "Plan project type"^^xsd:string ; |
| 566 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier . | 532 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS10012097710> . |
| 567 | 533 | ||
| 568 | ILAP:PlannedActivity | 534 | ILAP:PlannedActivity |
| 569 | rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 535 | rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| ... | @@ -571,23 +537,15 @@ ILAP:PlannedActivity | ... | @@ -571,23 +537,15 @@ ILAP:PlannedActivity |
| 571 | rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; | 537 | rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; |
| 572 | rdfs:subClassOf | 538 | rdfs:subClassOf |
| 573 | [ rdf:type owl:Restriction ; | 539 | [ rdf:type owl:Restriction ; |
| 574 | - owl:allValuesFrom ILAP:ActivityDependency ; | 540 | + owl:maxQualifiedCardinality |
| 575 | - owl:onProperty ILAP:hasActivitySuccessor | 541 | + "1"^^xsd:nonNegativeInteger ; |
| 576 | - ] ; | 542 | + owl:onClass ILAP:ProjectExecutionPlan ; |
| 577 | - rdfs:subClassOf | 543 | + owl:onProperty ILAP:hasActivityPlan |
| 578 | - [ rdf:type owl:Restriction ; | ||
| 579 | - owl:allValuesFrom ILAP:ActivityDependency ; | ||
| 580 | - owl:onProperty ILAP:hasActivityPredecessor | ||
| 581 | - ] ; | ||
| 582 | - rdfs:subClassOf | ||
| 583 | - [ rdf:type owl:Restriction ; | ||
| 584 | - owl:allValuesFrom ILAP:ResponsiblePerson ; | ||
| 585 | - owl:onProperty ILAP:hasActivityResponsiblePerson | ||
| 586 | ] ; | 544 | ] ; |
| 587 | rdfs:subClassOf | 545 | rdfs:subClassOf |
| 588 | [ rdf:type owl:Restriction ; | 546 | [ rdf:type owl:Restriction ; |
| 589 | - owl:allValuesFrom ILAP:Location ; | 547 | + owl:allValuesFrom ILAP:ResourceProfile ; |
| 590 | - owl:onProperty ILAP:hasActivityLocation | 548 | + owl:onProperty ILAP:hasActivityResourceProfile |
| 591 | ] ; | 549 | ] ; |
| 592 | rdfs:subClassOf | 550 | rdfs:subClassOf |
| 593 | [ rdf:type owl:Restriction ; | 551 | [ rdf:type owl:Restriction ; |
| ... | @@ -596,20 +554,13 @@ ILAP:PlannedActivity | ... | @@ -596,20 +554,13 @@ ILAP:PlannedActivity |
| 596 | ] ; | 554 | ] ; |
| 597 | rdfs:subClassOf | 555 | rdfs:subClassOf |
| 598 | [ rdf:type owl:Restriction ; | 556 | [ rdf:type owl:Restriction ; |
| 599 | - owl:maxQualifiedCardinality | ||
| 600 | - "1"^^xsd:nonNegativeInteger ; | ||
| 601 | - owl:onClass ILAP:ProjectExecutionPlan ; | ||
| 602 | - owl:onProperty ILAP:hasActivityPlan | ||
| 603 | - ] ; | ||
| 604 | - rdfs:subClassOf | ||
| 605 | - [ rdf:type owl:Restriction ; | ||
| 606 | owl:onProperty ILAP:hasActivityDiscipline ; | 557 | owl:onProperty ILAP:hasActivityDiscipline ; |
| 607 | owl:someValuesFrom ILAP:Discipline | 558 | owl:someValuesFrom ILAP:Discipline |
| 608 | ] ; | 559 | ] ; |
| 609 | rdfs:subClassOf | 560 | rdfs:subClassOf |
| 610 | [ rdf:type owl:Restriction ; | 561 | [ rdf:type owl:Restriction ; |
| 611 | - owl:allValuesFrom ILAP:ResourceProfile ; | 562 | + owl:allValuesFrom ILAP:ActivityDependency ; |
| 612 | - owl:onProperty ILAP:hasActivityResourceProfile | 563 | + owl:onProperty ILAP:hasActivityPredecessor |
| 613 | ] ; | 564 | ] ; |
| 614 | rdfs:subClassOf | 565 | rdfs:subClassOf |
| 615 | [ rdf:type owl:Restriction ; | 566 | [ rdf:type owl:Restriction ; |
| ... | @@ -622,6 +573,21 @@ ILAP:PlannedActivity | ... | @@ -622,6 +573,21 @@ ILAP:PlannedActivity |
| 622 | "1"^^xsd:nonNegativeInteger ; | 573 | "1"^^xsd:nonNegativeInteger ; |
| 623 | owl:onClass ILAP:Facility ; | 574 | owl:onClass ILAP:Facility ; |
| 624 | owl:onProperty ILAP:hasPlatform | 575 | owl:onProperty ILAP:hasPlatform |
| 576 | + ] ; | ||
| 577 | + rdfs:subClassOf | ||
| 578 | + [ rdf:type owl:Restriction ; | ||
| 579 | + owl:allValuesFrom ILAP:Location ; | ||
| 580 | + owl:onProperty ILAP:hasActivityLocation | ||
| 581 | + ] ; | ||
| 582 | + rdfs:subClassOf | ||
| 583 | + [ rdf:type owl:Restriction ; | ||
| 584 | + owl:allValuesFrom ILAP:ActivityDependency ; | ||
| 585 | + owl:onProperty ILAP:hasActivitySuccessor | ||
| 586 | + ] ; | ||
| 587 | + rdfs:subClassOf | ||
| 588 | + [ rdf:type owl:Restriction ; | ||
| 589 | + owl:allValuesFrom ILAP:ResponsiblePerson ; | ||
| 590 | + owl:onProperty ILAP:hasActivityResponsiblePerson | ||
| 625 | ] . | 591 | ] . |
| 626 | 592 | ||
| 627 | ILAP:PlannedMilestone | 593 | ILAP:PlannedMilestone |
| ... | @@ -649,18 +615,13 @@ ILAP:Programme | ... | @@ -649,18 +615,13 @@ ILAP:Programme |
| 649 | rdfs:subClassOf ILAP:Project . | 615 | rdfs:subClassOf ILAP:Project . |
| 650 | 616 | ||
| 651 | ILAP:Project | 617 | ILAP:Project |
| 652 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 618 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; |
| 653 | rdfs:label "Project"^^xsd:string ; | 619 | rdfs:label "Project"^^xsd:string ; |
| 654 | rdfs:subClassOf ILAP:Activity ; | 620 | rdfs:subClassOf ILAP:Activity ; |
| 655 | rdfs:subClassOf | 621 | rdfs:subClassOf |
| 656 | [ rdf:type owl:Restriction ; | 622 | [ rdf:type owl:Restriction ; |
| 657 | - owl:allValuesFrom ILAP:Project ; | 623 | + owl:allValuesFrom BRREG:OilCompany ; |
| 658 | - owl:onProperty ILAP:hasProjectSubproject | 624 | + owl:onProperty ILAP:hasProjectResponsible |
| 659 | - ] ; | ||
| 660 | - rdfs:subClassOf | ||
| 661 | - [ rdf:type owl:Restriction ; | ||
| 662 | - owl:allValuesFrom ILAP:ExternalReference ; | ||
| 663 | - owl:onProperty ILAP:hasExternalReference | ||
| 664 | ] ; | 625 | ] ; |
| 665 | rdfs:subClassOf | 626 | rdfs:subClassOf |
| 666 | [ rdf:type owl:Restriction ; | 627 | [ rdf:type owl:Restriction ; |
| ... | @@ -671,8 +632,13 @@ ILAP:Project | ... | @@ -671,8 +632,13 @@ ILAP:Project |
| 671 | ] ; | 632 | ] ; |
| 672 | rdfs:subClassOf | 633 | rdfs:subClassOf |
| 673 | [ rdf:type owl:Restriction ; | 634 | [ rdf:type owl:Restriction ; |
| 674 | - owl:allValuesFrom BRREG:OilCompany ; | 635 | + owl:allValuesFrom ILAP:ExternalReference ; |
| 675 | - owl:onProperty ILAP:hasProjectResponsible | 636 | + owl:onProperty ILAP:hasExternalReference |
| 637 | + ] ; | ||
| 638 | + rdfs:subClassOf | ||
| 639 | + [ rdf:type owl:Restriction ; | ||
| 640 | + owl:allValuesFrom ILAP:Project ; | ||
| 641 | + owl:onProperty ILAP:hasProjectSubproject | ||
| 676 | ] . | 642 | ] . |
| 677 | 643 | ||
| 678 | ILAP:ProjectExecutionPlan | 644 | ILAP:ProjectExecutionPlan |
| ... | @@ -681,72 +647,72 @@ ILAP:ProjectExecutionPlan | ... | @@ -681,72 +647,72 @@ ILAP:ProjectExecutionPlan |
| 681 | rdfs:subClassOf ILAP:Network ; | 647 | rdfs:subClassOf ILAP:Network ; |
| 682 | rdfs:subClassOf | 648 | rdfs:subClassOf |
| 683 | [ rdf:type owl:Restriction ; | 649 | [ rdf:type owl:Restriction ; |
| 684 | - owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; | 650 | + owl:maxQualifiedCardinality |
| 685 | - owl:onProperty ILAP:hasPlanAsset | 651 | + "1"^^xsd:nonNegativeInteger ; |
| 652 | + owl:onClass ILAP:Project ; | ||
| 653 | + owl:onProperty ILAP:hasPlanProject | ||
| 686 | ] ; | 654 | ] ; |
| 687 | rdfs:subClassOf | 655 | rdfs:subClassOf |
| 688 | [ rdf:type owl:Restriction ; | 656 | [ rdf:type owl:Restriction ; |
| 689 | owl:allValuesFrom ILAP:ProjectExecutionPlan ; | 657 | owl:allValuesFrom ILAP:ProjectExecutionPlan ; |
| 690 | - owl:onProperty ILAP:hasPlanRollUpPlan | 658 | + owl:onProperty ILAP:hasPlanSubplan |
| 691 | ] ; | 659 | ] ; |
| 692 | rdfs:subClassOf | 660 | rdfs:subClassOf |
| 693 | [ rdf:type owl:Restriction ; | 661 | [ rdf:type owl:Restriction ; |
| 694 | - owl:allValuesFrom BRREG:LegalEntity ; | 662 | + owl:onProperty ILAP:hasPlanGeoArea ; |
| 695 | - owl:onProperty ILAP:hasPlanResponsible | 663 | + owl:someValuesFrom ILAP:PlanGeoArea |
| 696 | ] ; | 664 | ] ; |
| 697 | rdfs:subClassOf | 665 | rdfs:subClassOf |
| 698 | [ rdf:type owl:Restriction ; | 666 | [ rdf:type owl:Restriction ; |
| 699 | - owl:onProperty ILAP:hasPlanLevel ; | 667 | + owl:onProperty ILAP:hasPlanContentType ; |
| 700 | - owl:someValuesFrom ILAP:PlanLevel | 668 | + owl:someValuesFrom ILAP:PlanContentType |
| 701 | ] ; | 669 | ] ; |
| 702 | rdfs:subClassOf | 670 | rdfs:subClassOf |
| 703 | [ rdf:type owl:Restriction ; | 671 | [ rdf:type owl:Restriction ; |
| 704 | - owl:allValuesFrom ILAP:PlanContractType ; | 672 | + owl:allValuesFrom ILAP:PlanObjectiveType ; |
| 705 | - owl:onProperty ILAP:hasPlanContractType | 673 | + owl:onProperty ILAP:hasPlanObjectiveType |
| 706 | ] ; | 674 | ] ; |
| 707 | rdfs:subClassOf | 675 | rdfs:subClassOf |
| 708 | [ rdf:type owl:Restriction ; | 676 | [ rdf:type owl:Restriction ; |
| 709 | - owl:allValuesFrom ILAP:PlanLifecycleStage ; | 677 | + owl:onProperty ILAP:hasPlanProjectType ; |
| 710 | - owl:onProperty ILAP:hasPlanLifecycleStage | 678 | + owl:someValuesFrom ILAP:PlanProjectType |
| 711 | ] ; | 679 | ] ; |
| 712 | rdfs:subClassOf | 680 | rdfs:subClassOf |
| 713 | [ rdf:type owl:Restriction ; | 681 | [ rdf:type owl:Restriction ; |
| 714 | - owl:maxQualifiedCardinality | 682 | + owl:allValuesFrom ILAP:ProjectExecutionPlan ; |
| 715 | - "1"^^xsd:nonNegativeInteger ; | 683 | + owl:onProperty ILAP:hasPlanRollUpPlan |
| 716 | - owl:onClass ILAP:PlanLevel ; | ||
| 717 | - owl:onProperty ILAP:hasPlanLevel | ||
| 718 | ] ; | 684 | ] ; |
| 719 | rdfs:subClassOf | 685 | rdfs:subClassOf |
| 720 | [ rdf:type owl:Restriction ; | 686 | [ rdf:type owl:Restriction ; |
| 721 | - owl:onProperty ILAP:hasPlanProjectType ; | 687 | + owl:allValuesFrom ILAP:PlanContractType ; |
| 722 | - owl:someValuesFrom ILAP:PlanProjectType | 688 | + owl:onProperty ILAP:hasPlanContractType |
| 723 | ] ; | 689 | ] ; |
| 724 | rdfs:subClassOf | 690 | rdfs:subClassOf |
| 725 | [ rdf:type owl:Restriction ; | 691 | [ rdf:type owl:Restriction ; |
| 726 | - owl:allValuesFrom ILAP:ProjectExecutionPlan ; | 692 | + owl:allValuesFrom BRREG:LegalEntity ; |
| 727 | - owl:onProperty ILAP:hasPlanSubplan | 693 | + owl:onProperty ILAP:hasPlanResponsible |
| 728 | ] ; | 694 | ] ; |
| 729 | rdfs:subClassOf | 695 | rdfs:subClassOf |
| 730 | [ rdf:type owl:Restriction ; | 696 | [ rdf:type owl:Restriction ; |
| 731 | - owl:allValuesFrom ILAP:PlanObjectiveType ; | 697 | + owl:onProperty ILAP:hasPlanLevel ; |
| 732 | - owl:onProperty ILAP:hasPlanObjectiveType | 698 | + owl:someValuesFrom ILAP:PlanLevel |
| 733 | ] ; | 699 | ] ; |
| 734 | rdfs:subClassOf | 700 | rdfs:subClassOf |
| 735 | [ rdf:type owl:Restriction ; | 701 | [ rdf:type owl:Restriction ; |
| 736 | - owl:maxQualifiedCardinality | 702 | + owl:allValuesFrom ILAP:PlanLifecycleStage ; |
| 737 | - "1"^^xsd:nonNegativeInteger ; | 703 | + owl:onProperty ILAP:hasPlanLifecycleStage |
| 738 | - owl:onClass ILAP:Project ; | ||
| 739 | - owl:onProperty ILAP:hasPlanProject | ||
| 740 | ] ; | 704 | ] ; |
| 741 | rdfs:subClassOf | 705 | rdfs:subClassOf |
| 742 | [ rdf:type owl:Restriction ; | 706 | [ rdf:type owl:Restriction ; |
| 743 | - owl:onProperty ILAP:hasPlanGeoArea ; | 707 | + owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; |
| 744 | - owl:someValuesFrom ILAP:PlanGeoArea | 708 | + owl:onProperty ILAP:hasPlanAsset |
| 745 | ] ; | 709 | ] ; |
| 746 | rdfs:subClassOf | 710 | rdfs:subClassOf |
| 747 | [ rdf:type owl:Restriction ; | 711 | [ rdf:type owl:Restriction ; |
| 748 | - owl:onProperty ILAP:hasPlanContentType ; | 712 | + owl:maxQualifiedCardinality |
| 749 | - owl:someValuesFrom ILAP:PlanContentType | 713 | + "1"^^xsd:nonNegativeInteger ; |
| 714 | + owl:onClass ILAP:PlanLevel ; | ||
| 715 | + owl:onProperty ILAP:hasPlanLevel | ||
| 750 | ] . | 716 | ] . |
| 751 | 717 | ||
| 752 | ILAP:ProjectType | 718 | ILAP:ProjectType |
| ... | @@ -755,9 +721,9 @@ ILAP:ProjectType | ... | @@ -755,9 +721,9 @@ ILAP:ProjectType |
| 755 | rdfs:subClassOf owl:Thing . | 721 | rdfs:subClassOf owl:Thing . |
| 756 | 722 | ||
| 757 | ILAP:Regular8To16WorkingDayCalendar | 723 | ILAP:Regular8To16WorkingDayCalendar |
| 758 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; | 724 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; |
| 759 | rdfs:label "Regular8To16Working day calendar"^^xsd:string ; | 725 | rdfs:label "Regular8To16Working day calendar"^^xsd:string ; |
| 760 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS7014210> . | 726 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> . |
| 761 | 727 | ||
| 762 | ILAP:RemovalOfBarriers | 728 | ILAP:RemovalOfBarriers |
| 763 | rdf:type ILAP:RiskType ; | 729 | rdf:type ILAP:RiskType ; |
| ... | @@ -768,9 +734,9 @@ ILAP:ReservoirDrillingOperation | ... | @@ -768,9 +734,9 @@ ILAP:ReservoirDrillingOperation |
| 768 | rdfs:label "Reservoir drilling operation"^^xsd:string . | 734 | rdfs:label "Reservoir drilling operation"^^xsd:string . |
| 769 | 735 | ||
| 770 | ILAP:Resource | 736 | ILAP:Resource |
| 771 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ; | 737 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; |
| 772 | rdfs:label "Resource"^^xsd:string ; | 738 | rdfs:label "Resource"^^xsd:string ; |
| 773 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS47466180194> , owl:Thing . | 739 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> . |
| 774 | 740 | ||
| 775 | ILAP:ResourceEstimate | 741 | ILAP:ResourceEstimate |
| 776 | rdf:type owl:Class ; | 742 | rdf:type owl:Class ; |
| ... | @@ -778,14 +744,14 @@ ILAP:ResourceEstimate | ... | @@ -778,14 +744,14 @@ ILAP:ResourceEstimate |
| 778 | rdfs:subClassOf ILAP:ResourceStructure . | 744 | rdfs:subClassOf ILAP:ResourceStructure . |
| 779 | 745 | ||
| 780 | ILAP:ResourceProfile | 746 | ILAP:ResourceProfile |
| 781 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> , owl:Class ; | 747 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ; |
| 782 | rdfs:label "Resource profile"^^xsd:string ; | 748 | rdfs:label "Resource profile"^^xsd:string ; |
| 783 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing . | 749 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1685084301> . |
| 784 | 750 | ||
| 785 | ILAP:ResourceProfilePoint | 751 | ILAP:ResourceProfilePoint |
| 786 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ; | 752 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; |
| 787 | rdfs:label "resource Profile point"^^xsd:string ; | 753 | rdfs:label "resource Profile point"^^xsd:string ; |
| 788 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2213258891> , owl:Thing . | 754 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> . |
| 789 | 755 | ||
| 790 | ILAP:ResourceStructure | 756 | ILAP:ResourceStructure |
| 791 | rdf:type owl:Class ; | 757 | rdf:type owl:Class ; |
| ... | @@ -793,17 +759,17 @@ ILAP:ResourceStructure | ... | @@ -793,17 +759,17 @@ ILAP:ResourceStructure |
| 793 | rdfs:subClassOf ILAP:Network . | 759 | rdfs:subClassOf ILAP:Network . |
| 794 | 760 | ||
| 795 | ILAP:ResponsibleOrganization | 761 | ILAP:ResponsibleOrganization |
| 796 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; | 762 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; |
| 797 | rdfs:label "Responsible organization"^^xsd:string ; | 763 | rdfs:label "Responsible organization"^^xsd:string ; |
| 798 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS282149> , owl:Thing . | 764 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS282149> . |
| 799 | 765 | ||
| 800 | ILAP:ResponsiblePerson | 766 | ILAP:ResponsiblePerson |
| 801 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> , owl:Class ; | 767 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ; |
| 802 | rdfs:label "Responsible"^^xsd:string ; | 768 | rdfs:label "Responsible"^^xsd:string ; |
| 803 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS413954> , owl:Thing . | 769 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS413954> . |
| 804 | 770 | ||
| 805 | ILAP:Result | 771 | ILAP:Result |
| 806 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; | 772 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; |
| 807 | rdfs:label "Result"^^xsd:string ; | 773 | rdfs:label "Result"^^xsd:string ; |
| 808 | rdfs:subClassOf owl:Thing . | 774 | rdfs:subClassOf owl:Thing . |
| 809 | 775 | ||
| ... | @@ -831,9 +797,9 @@ ILAP:Safety_Test_Shutdown | ... | @@ -831,9 +797,9 @@ ILAP:Safety_Test_Shutdown |
| 831 | rdfs:label "Safety Test Shutdown"^^xsd:string . | 797 | rdfs:label "Safety Test Shutdown"^^xsd:string . |
| 832 | 798 | ||
| 833 | ILAP:Schedule | 799 | ILAP:Schedule |
| 834 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; | 800 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; |
| 835 | rdfs:label "Scheduled Activity Network"^^xsd:string ; | 801 | rdfs:label "Scheduled Activity Network"^^xsd:string ; |
| 836 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS333764> , ILAP:Network ; | 802 | + rdfs:subClassOf ILAP:Network , <http://posccaesar.org/rdl/RDS333764> ; |
| 837 | rdfs:subClassOf | 803 | rdfs:subClassOf |
| 838 | [ rdf:type owl:Restriction ; | 804 | [ rdf:type owl:Restriction ; |
| 839 | owl:maxQualifiedCardinality | 805 | owl:maxQualifiedCardinality |
| ... | @@ -843,22 +809,22 @@ ILAP:Schedule | ... | @@ -843,22 +809,22 @@ ILAP:Schedule |
| 843 | ] . | 809 | ] . |
| 844 | 810 | ||
| 845 | ILAP:ScheduledActivity | 811 | ILAP:ScheduledActivity |
| 846 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 812 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; |
| 847 | rdfs:label "Activity in Network Schedule"^^xsd:string ; | 813 | rdfs:label "Activity in Network Schedule"^^xsd:string ; |
| 848 | rdfs:subClassOf ILAP:PlannedActivity ; | 814 | rdfs:subClassOf ILAP:PlannedActivity ; |
| 849 | rdfs:subClassOf | 815 | rdfs:subClassOf |
| 850 | [ rdf:type owl:Restriction ; | 816 | [ rdf:type owl:Restriction ; |
| 851 | owl:maxQualifiedCardinality | 817 | owl:maxQualifiedCardinality |
| 852 | "1"^^xsd:nonNegativeInteger ; | 818 | "1"^^xsd:nonNegativeInteger ; |
| 853 | - owl:onClass ILAP:Schedule ; | 819 | + owl:onClass ILAP:PlannedActivity ; |
| 854 | - owl:onProperty ILAP:hasActivitySchedule | 820 | + owl:onProperty ILAP:hasActivityInScheduleActivityInPlan |
| 855 | ] ; | 821 | ] ; |
| 856 | rdfs:subClassOf | 822 | rdfs:subClassOf |
| 857 | [ rdf:type owl:Restriction ; | 823 | [ rdf:type owl:Restriction ; |
| 858 | owl:maxQualifiedCardinality | 824 | owl:maxQualifiedCardinality |
| 859 | "1"^^xsd:nonNegativeInteger ; | 825 | "1"^^xsd:nonNegativeInteger ; |
| 860 | - owl:onClass ILAP:PlannedActivity ; | 826 | + owl:onClass ILAP:Schedule ; |
| 861 | - owl:onProperty ILAP:hasActivityInScheduleActivityInPlan | 827 | + owl:onProperty ILAP:hasActivitySchedule |
| 862 | ] . | 828 | ] . |
| 863 | 829 | ||
| 864 | ILAP:ScheduledMilestone | 830 | ILAP:ScheduledMilestone |
| ... | @@ -889,30 +855,11 @@ ILAP:ShutdownPeriod | ... | @@ -889,30 +855,11 @@ ILAP:ShutdownPeriod |
| 889 | rdfs:label "Shutdown period"^^xsd:string ; | 855 | rdfs:label "Shutdown period"^^xsd:string ; |
| 890 | rdfs:subClassOf owl:Thing . | 856 | rdfs:subClassOf owl:Thing . |
| 891 | 857 | ||
| 892 | -ILAP:ShutdownPriority | ||
| 893 | - rdf:type owl:Class ; | ||
| 894 | - rdfs:label "Shutdown priority"^^xsd:string ; | ||
| 895 | - rdfs:subClassOf owl:Thing . | ||
| 896 | - | ||
| 897 | ILAP:ShutdownType | 858 | ILAP:ShutdownType |
| 898 | rdf:type owl:Class ; | 859 | rdf:type owl:Class ; |
| 899 | rdfs:label "Shutdown type"^^xsd:string ; | 860 | rdfs:label "Shutdown type"^^xsd:string ; |
| 900 | rdfs:subClassOf owl:Thing . | 861 | rdfs:subClassOf owl:Thing . |
| 901 | 862 | ||
| 902 | -ILAP:Shutdown_1 | ||
| 903 | - rdf:type ILAP:Shutdown ; | ||
| 904 | - rdfs:label "Shutdown 1"^^xsd:string ; | ||
| 905 | - <http://data.posccaesar.org/ilap/shutdown/hasShutdownContent> | ||
| 906 | - <http://data.posccaesar.org/ilap/shutdown/ProductionShutdown> ; | ||
| 907 | - <http://data.posccaesar.org/ilap/shutdown/hasShutdownOperation> | ||
| 908 | - <http://data.posccaesar.org/ilap/shutdown/Dependent_on_Shutdown> , <http://data.posccaesar.org/ilap/shutdown/During_Shutdown> ; | ||
| 909 | - <http://data.posccaesar.org/ilap/shutdown/hasShutdownPeriod> | ||
| 910 | - <http://data.posccaesar.org/ilap/shutdown/Shutdown_Period> ; | ||
| 911 | - <http://data.posccaesar.org/ilap/shutdown/hasShutdownPriority> | ||
| 912 | - <http://data.posccaesar.org/ilap/shutdown/Critical> ; | ||
| 913 | - <http://data.posccaesar.org/ilap/shutdown/hasShutdownType> | ||
| 914 | - <http://data.posccaesar.org/ilap/shutdown/Scheduled_Shutdown> . | ||
| 915 | - | ||
| 916 | ILAP:Shutdown_Period | 863 | ILAP:Shutdown_Period |
| 917 | rdf:type ILAP:ShutdownPeriod ; | 864 | rdf:type ILAP:ShutdownPeriod ; |
| 918 | rdfs:label "Shutdown Period"^^xsd:string . | 865 | rdfs:label "Shutdown Period"^^xsd:string . |
| ... | @@ -922,9 +869,9 @@ ILAP:Shutdown_not_evaluated | ... | @@ -922,9 +869,9 @@ ILAP:Shutdown_not_evaluated |
| 922 | rdfs:label "Shutdown not evaluated"^^xsd:string . | 869 | rdfs:label "Shutdown not evaluated"^^xsd:string . |
| 923 | 870 | ||
| 924 | ILAP:Source | 871 | ILAP:Source |
| 925 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; | 872 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; |
| 926 | rdfs:label "Source"^^xsd:string ; | 873 | rdfs:label "Source"^^xsd:string ; |
| 927 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13103560> , owl:Thing . | 874 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> . |
| 928 | 875 | ||
| 929 | ILAP:SourceSpecifiedUserField | 876 | ILAP:SourceSpecifiedUserField |
| 930 | rdf:type owl:Class ; | 877 | rdf:type owl:Class ; |
| ... | @@ -937,26 +884,26 @@ ILAP:SpecifiedUserField | ... | @@ -937,26 +884,26 @@ ILAP:SpecifiedUserField |
| 937 | rdfs:subClassOf ILAP:UserField . | 884 | rdfs:subClassOf ILAP:UserField . |
| 938 | 885 | ||
| 939 | ILAP:StartToFinish | 886 | ILAP:StartToFinish |
| 940 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 887 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 941 | rdfs:label "Start to finish"^^xsd:string ; | 888 | rdfs:label "Start to finish"^^xsd:string ; |
| 942 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 889 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 943 | 890 | ||
| 944 | ILAP:StartToStart | 891 | ILAP:StartToStart |
| 945 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 892 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 946 | rdfs:label "Start to start"^^xsd:string ; | 893 | rdfs:label "Start to start"^^xsd:string ; |
| 947 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 894 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 948 | 895 | ||
| 949 | ILAP:Status | 896 | ILAP:Status |
| 950 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> ; | 897 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ; |
| 951 | rdfs:label "Status"^^xsd:string ; | 898 | rdfs:label "Status"^^xsd:string ; |
| 952 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS427322951> . | 899 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing . |
| 953 | 900 | ||
| 954 | ILAP:System_Shutdown | 901 | ILAP:System_Shutdown |
| 955 | rdf:type ILAP:ShutdownContent ; | 902 | rdf:type ILAP:ShutdownContent ; |
| 956 | rdfs:label "System Shutdown"^^xsd:string . | 903 | rdfs:label "System Shutdown"^^xsd:string . |
| 957 | 904 | ||
| 958 | ILAP:TargetSchedule | 905 | ILAP:TargetSchedule |
| 959 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; | 906 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; |
| 960 | rdfs:label "Target schedule"^^xsd:string ; | 907 | rdfs:label "Target schedule"^^xsd:string ; |
| 961 | rdfs:subClassOf ILAP:Schedule . | 908 | rdfs:subClassOf ILAP:Schedule . |
| 962 | 909 | ||
| ... | @@ -975,7 +922,7 @@ ILAP:UnitBased | ... | @@ -975,7 +922,7 @@ ILAP:UnitBased |
| 975 | rdfs:subClassOf ILAP:Resource . | 922 | rdfs:subClassOf ILAP:Resource . |
| 976 | 923 | ||
| 977 | ILAP:UserField | 924 | ILAP:UserField |
| 978 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; | 925 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; |
| 979 | rdfs:label "User field"^^xsd:string ; | 926 | rdfs:label "User field"^^xsd:string ; |
| 980 | rdfs:subClassOf ILAP:Data ; | 927 | rdfs:subClassOf ILAP:Data ; |
| 981 | rdfs:subClassOf | 928 | rdfs:subClassOf |
| ... | @@ -989,7 +936,7 @@ ILAP:UserField | ... | @@ -989,7 +936,7 @@ ILAP:UserField |
| 989 | ILAP:Value | 936 | ILAP:Value |
| 990 | rdf:type owl:Class ; | 937 | rdf:type owl:Class ; |
| 991 | rdfs:label "Value"^^xsd:string ; | 938 | rdfs:label "Value"^^xsd:string ; |
| 992 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945844> , owl:Thing . | 939 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945844> . |
| 993 | 940 | ||
| 994 | ILAP:VesselOperation | 941 | ILAP:VesselOperation |
| 995 | rdf:type ILAP:RiskType ; | 942 | rdf:type ILAP:RiskType ; |
| ... | @@ -1004,9 +951,9 @@ ILAP:Water_Production_Shutdown | ... | @@ -1004,9 +951,9 @@ ILAP:Water_Production_Shutdown |
| 1004 | rdfs:label "Water Production Shutdown"^^xsd:string . | 951 | rdfs:label "Water Production Shutdown"^^xsd:string . |
| 1005 | 952 | ||
| 1006 | ILAP:WeekendsFreeCalendar | 953 | ILAP:WeekendsFreeCalendar |
| 1007 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 954 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 1008 | rdfs:label "Weekends free calendar"^^xsd:string ; | 955 | rdfs:label "Weekends free calendar"^^xsd:string ; |
| 1009 | - rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> . | 956 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:Calendar . |
| 1010 | 957 | ||
| 1011 | ILAP:Well_Transfer | 958 | ILAP:Well_Transfer |
| 1012 | rdf:type ILAP:ShutdownContent ; | 959 | rdf:type ILAP:ShutdownContent ; |
| ... | @@ -1018,18 +965,18 @@ ILAP:WorkOrder | ... | @@ -1018,18 +965,18 @@ ILAP:WorkOrder |
| 1018 | rdfs:subClassOf ILAP:WorkTask . | 965 | rdfs:subClassOf ILAP:WorkTask . |
| 1019 | 966 | ||
| 1020 | ILAP:WorkTask | 967 | ILAP:WorkTask |
| 1021 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; | 968 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| 1022 | rdfs:label "Work task"^^xsd:string ; | 969 | rdfs:label "Work task"^^xsd:string ; |
| 1023 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS3149> ; | 970 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , owl:Thing ; |
| 1024 | rdfs:subClassOf | 971 | rdfs:subClassOf |
| 1025 | [ rdf:type owl:Restriction ; | 972 | [ rdf:type owl:Restriction ; |
| 1026 | - owl:onProperty ILAP:hasWorkTaskActivity ; | 973 | + owl:allValuesFrom BRREG:LegalEntity ; |
| 1027 | - owl:someValuesFrom ILAP:Activity | 974 | + owl:onProperty ILAP:hasWorkTaskResponsible |
| 1028 | ] ; | 975 | ] ; |
| 1029 | rdfs:subClassOf | 976 | rdfs:subClassOf |
| 1030 | [ rdf:type owl:Restriction ; | 977 | [ rdf:type owl:Restriction ; |
| 1031 | - owl:allValuesFrom BRREG:LegalEntity ; | 978 | + owl:onProperty ILAP:hasWorkTaskActivity ; |
| 1032 | - owl:onProperty ILAP:hasWorkTaskResponsible | 979 | + owl:someValuesFrom ILAP:Activity |
| 1033 | ] . | 980 | ] . |
| 1034 | 981 | ||
| 1035 | ILAP:WorkTaskStatus | 982 | ILAP:WorkTaskStatus |
| ... | @@ -1125,7 +1072,7 @@ ILAP:hasActivityPhysicalPercentComplete | ... | @@ -1125,7 +1072,7 @@ ILAP:hasActivityPhysicalPercentComplete |
| 1125 | rdfs:range xsd:float . | 1072 | rdfs:range xsd:float . |
| 1126 | 1073 | ||
| 1127 | ILAP:hasActivityPlan | 1074 | ILAP:hasActivityPlan |
| 1128 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1075 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1129 | rdfs:domain ILAP:PlannedActivity ; | 1076 | rdfs:domain ILAP:PlannedActivity ; |
| 1130 | rdfs:label "has activity plan"^^xsd:string ; | 1077 | rdfs:label "has activity plan"^^xsd:string ; |
| 1131 | rdfs:range ILAP:ProjectExecutionPlan . | 1078 | rdfs:range ILAP:ProjectExecutionPlan . |
| ... | @@ -1173,7 +1120,7 @@ ILAP:hasActivityResponsibleOrganization | ... | @@ -1173,7 +1120,7 @@ ILAP:hasActivityResponsibleOrganization |
| 1173 | rdfs:range ILAP:ResponsibleOrganization . | 1120 | rdfs:range ILAP:ResponsibleOrganization . |
| 1174 | 1121 | ||
| 1175 | ILAP:hasActivityResponsiblePerson | 1122 | ILAP:hasActivityResponsiblePerson |
| 1176 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1123 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1177 | rdfs:domain ILAP:PlannedActivity ; | 1124 | rdfs:domain ILAP:PlannedActivity ; |
| 1178 | rdfs:label "has activity responsible"^^xsd:string ; | 1125 | rdfs:label "has activity responsible"^^xsd:string ; |
| 1179 | rdfs:range ILAP:ResponsiblePerson . | 1126 | rdfs:range ILAP:ResponsiblePerson . |
| ... | @@ -1208,7 +1155,7 @@ ILAP:hasActivityStatus | ... | @@ -1208,7 +1155,7 @@ ILAP:hasActivityStatus |
| 1208 | rdfs:range ILAP:Status . | 1155 | rdfs:range ILAP:Status . |
| 1209 | 1156 | ||
| 1210 | ILAP:hasActivitySuccessor | 1157 | ILAP:hasActivitySuccessor |
| 1211 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1158 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1212 | rdfs:domain ILAP:PlannedActivity ; | 1159 | rdfs:domain ILAP:PlannedActivity ; |
| 1213 | rdfs:label "has activity successor"^^xsd:string ; | 1160 | rdfs:label "has activity successor"^^xsd:string ; |
| 1214 | rdfs:range ILAP:ActivityDependency ; | 1161 | rdfs:range ILAP:ActivityDependency ; |
| ... | @@ -1269,7 +1216,7 @@ ILAP:hasCalendarDate | ... | @@ -1269,7 +1216,7 @@ ILAP:hasCalendarDate |
| 1269 | rdfs:label "has calendar date"^^xsd:string . | 1216 | rdfs:label "has calendar date"^^xsd:string . |
| 1270 | 1217 | ||
| 1271 | ILAP:hasCalendarFreePeriod | 1218 | ILAP:hasCalendarFreePeriod |
| 1272 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1219 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1273 | rdfs:domain ILAP:Calendar ; | 1220 | rdfs:domain ILAP:Calendar ; |
| 1274 | rdfs:label "has calendarcalendar free period"^^xsd:string ; | 1221 | rdfs:label "has calendarcalendar free period"^^xsd:string ; |
| 1275 | rdfs:range ILAP:CalendarFreePeriod . | 1222 | rdfs:range ILAP:CalendarFreePeriod . |
| ... | @@ -1552,7 +1499,7 @@ ILAP:hasPlanRegulator | ... | @@ -1552,7 +1499,7 @@ ILAP:hasPlanRegulator |
| 1552 | rdfs:subPropertyOf ILAP:hasPlanResponsible . | 1499 | rdfs:subPropertyOf ILAP:hasPlanResponsible . |
| 1553 | 1500 | ||
| 1554 | ILAP:hasPlanResponsible | 1501 | ILAP:hasPlanResponsible |
| 1555 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1502 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1556 | rdfs:domain ILAP:ResponsibleOrganization ; | 1503 | rdfs:domain ILAP:ResponsibleOrganization ; |
| 1557 | rdfs:label "has plan responsible"^^xsd:string . | 1504 | rdfs:label "has plan responsible"^^xsd:string . |
| 1558 | 1505 | ||
| ... | @@ -1714,8 +1661,22 @@ ILAP:hasScheduledStart | ... | @@ -1714,8 +1661,22 @@ ILAP:hasScheduledStart |
| 1714 | rdfs:range xsd:date ; | 1661 | rdfs:range xsd:date ; |
| 1715 | rdfs:subPropertyOf ILAP:hasScheduleDate . | 1662 | rdfs:subPropertyOf ILAP:hasScheduleDate . |
| 1716 | 1663 | ||
| 1664 | +ILAP:hasShutdownContent | ||
| 1665 | + rdf:type owl:ObjectProperty ; | ||
| 1666 | + rdfs:domain ILAP:Shutdown ; | ||
| 1667 | + rdfs:label "has shutdown content"^^xsd:string ; | ||
| 1668 | + rdfs:range ILAP:ShutdownContent . | ||
| 1669 | + | ||
| 1670 | +ILAP:hasShutdownPeriod | ||
| 1671 | + rdfs:domain ILAP:Shutdown . | ||
| 1672 | + | ||
| 1673 | +ILAP:hasShutdownType | ||
| 1674 | + rdf:type owl:ObjectProperty ; | ||
| 1675 | + rdfs:domain ILAP:Shutdown ; | ||
| 1676 | + rdfs:label "has shutdown type"^^xsd:string . | ||
| 1677 | + | ||
| 1717 | ILAP:hasSuccessorActivity | 1678 | ILAP:hasSuccessorActivity |
| 1718 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1679 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1719 | rdfs:domain ILAP:ActivityDependency ; | 1680 | rdfs:domain ILAP:ActivityDependency ; |
| 1720 | rdfs:label "has successor activity "^^xsd:string ; | 1681 | rdfs:label "has successor activity "^^xsd:string ; |
| 1721 | rdfs:range ILAP:PlannedActivity ; | 1682 | rdfs:range ILAP:PlannedActivity ; |
| ... | @@ -1743,7 +1704,7 @@ ILAP:hasTimeNow | ... | @@ -1743,7 +1704,7 @@ ILAP:hasTimeNow |
| 1743 | rdf:type owl:DatatypeProperty ; | 1704 | rdf:type owl:DatatypeProperty ; |
| 1744 | rdfs:domain ILAP:Schedule ; | 1705 | rdfs:domain ILAP:Schedule ; |
| 1745 | rdfs:label "has time now"^^xsd:string ; | 1706 | rdfs:label "has time now"^^xsd:string ; |
| 1746 | - rdfs:range xsd:dateTime , xsd:date . | 1707 | + rdfs:range xsd:date , xsd:dateTime . |
| 1747 | 1708 | ||
| 1748 | ILAP:hasUserFieldName | 1709 | ILAP:hasUserFieldName |
| 1749 | rdf:type owl:DatatypeProperty ; | 1710 | rdf:type owl:DatatypeProperty ; |
| ... | @@ -1809,9 +1770,6 @@ ILAP:hasWorkTaskVendor | ... | @@ -1809,9 +1770,6 @@ ILAP:hasWorkTaskVendor |
| 1809 | rdfs:range BRREG:Contractor ; | 1770 | rdfs:range BRREG:Contractor ; |
| 1810 | rdfs:subPropertyOf ILAP:hasWorkTaskResponsible . | 1771 | rdfs:subPropertyOf ILAP:hasWorkTaskResponsible . |
| 1811 | 1772 | ||
| 1812 | -<http://data.posccaesar.org/ilap/riskfactor/RiskType> | ||
| 1813 | - rdf:type owl:Thing . | ||
| 1814 | - | ||
| 1815 | <http://data.posccaesar.org/ilap/riskfactor/hasRiskType> | 1773 | <http://data.posccaesar.org/ilap/riskfactor/hasRiskType> |
| 1816 | rdfs:range ILAP:RiskType . | 1774 | rdfs:range ILAP:RiskType . |
| 1817 | 1775 | ||
| ... | @@ -1821,8 +1779,5 @@ ILAP:hasWorkTaskVendor | ... | @@ -1821,8 +1779,5 @@ ILAP:hasWorkTaskVendor |
| 1821 | <http://data.posccaesar.org/ilap/shutdown/hasShutdownPeriod> | 1779 | <http://data.posccaesar.org/ilap/shutdown/hasShutdownPeriod> |
| 1822 | rdfs:range ILAP:ShutdownPeriod . | 1780 | rdfs:range ILAP:ShutdownPeriod . |
| 1823 | 1781 | ||
| 1824 | -<http://data.posccaesar.org/ilap/shutdown/hasShutdownPriority> | ||
| 1825 | - rdfs:range ILAP:ShutdownPriority . | ||
| 1826 | - | ||
| 1827 | <http://data.posccaesar.org/ilap/shutdown/hasShutdownType> | 1782 | <http://data.posccaesar.org/ilap/shutdown/hasShutdownType> |
| 1828 | rdfs:range ILAP:ShutdownType . | 1783 | rdfs:range ILAP:ShutdownType . | ... | ... |
| ... | @@ -14,11 +14,11 @@ | ... | @@ -14,11 +14,11 @@ |
| 14 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 14 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 15 | 15 | ||
| 16 | : rdf:type owl:Ontology ; | 16 | : rdf:type owl:Ontology ; |
| 17 | - owl:imports <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> , ILAP: . | 17 | + owl:imports ILAP: , <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> . |
| 18 | 18 | ||
| 19 | -:ResponsibleOrganization_1 | 19 | +:RiskFactor_1 |
| 20 | - rdf:type ILAP:ResponsibleOrganization ; | 20 | + rdf:type ILAP:RiskFactor ; |
| 21 | - rdfs:label "Responsible organization 1"^^xsd:string . | 21 | + rdfs:label "Risk factor 1"^^xsd:string . |
| 22 | 22 | ||
| 23 | ILAP: | 23 | ILAP: |
| 24 | rdf:type owl:Ontology ; | 24 | rdf:type owl:Ontology ; |
| ... | @@ -114,8 +114,8 @@ ILAP:DG7 | ... | @@ -114,8 +114,8 @@ ILAP:DG7 |
| 114 | rdfs:label "DG7"^^xsd:string . | 114 | rdfs:label "DG7"^^xsd:string . |
| 115 | 115 | ||
| 116 | ILAP:Development | 116 | ILAP:Development |
| 117 | - rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ; | 117 | + rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; |
| 118 | - rdfs:label "Develop"^^xsd:string , "Development"^^xsd:string . | 118 | + rdfs:label "Development"^^xsd:string , "Develop"^^xsd:string . |
| 119 | 119 | ||
| 120 | ILAP:DisasterRecovery | 120 | ILAP:DisasterRecovery |
| 121 | rdf:type ILAP:PlanObjectiveType ; | 121 | rdf:type ILAP:PlanObjectiveType ; |
| ... | @@ -130,7 +130,7 @@ ILAP:DrillingAndWell | ... | @@ -130,7 +130,7 @@ ILAP:DrillingAndWell |
| 130 | rdfs:label "Drilling and well"^^xsd:string . | 130 | rdfs:label "Drilling and well"^^xsd:string . |
| 131 | 131 | ||
| 132 | ILAP:Exploration | 132 | ILAP:Exploration |
| 133 | - rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ; | 133 | + rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; |
| 134 | rdfs:label "Exploration"^^xsd:string . | 134 | rdfs:label "Exploration"^^xsd:string . |
| 135 | 135 | ||
| 136 | ILAP:Facility | 136 | ILAP:Facility |
| ... | @@ -242,7 +242,7 @@ ILAP:OPEX | ... | @@ -242,7 +242,7 @@ ILAP:OPEX |
| 242 | rdfs:label "OPEX"^^xsd:string . | 242 | rdfs:label "OPEX"^^xsd:string . |
| 243 | 243 | ||
| 244 | ILAP:Operation | 244 | ILAP:Operation |
| 245 | - rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ; | 245 | + rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; |
| 246 | rdfs:label "Operation"^^xsd:string . | 246 | rdfs:label "Operation"^^xsd:string . |
| 247 | 247 | ||
| 248 | ILAP:OperationAndMaintenance | 248 | ILAP:OperationAndMaintenance |
| ... | @@ -264,7 +264,7 @@ ILAP:PlannedActivity_1 | ... | @@ -264,7 +264,7 @@ ILAP:PlannedActivity_1 |
| 264 | ILAP:ActivityWBS_1 . | 264 | ILAP:ActivityWBS_1 . |
| 265 | 265 | ||
| 266 | ILAP:Planning | 266 | ILAP:Planning |
| 267 | - rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ; | 267 | + rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; |
| 268 | rdfs:label "Planning"^^xsd:string . | 268 | rdfs:label "Planning"^^xsd:string . |
| 269 | 269 | ||
| 270 | ILAP:Primavera | 270 | ILAP:Primavera |
| ... | @@ -292,7 +292,7 @@ ILAP:Released | ... | @@ -292,7 +292,7 @@ ILAP:Released |
| 292 | rdfs:label "Released"^^xsd:string . | 292 | rdfs:label "Released"^^xsd:string . |
| 293 | 293 | ||
| 294 | ILAP:Removal | 294 | ILAP:Removal |
| 295 | - rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ; | 295 | + rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; |
| 296 | rdfs:label "Removal"^^xsd:string . | 296 | rdfs:label "Removal"^^xsd:string . |
| 297 | 297 | ||
| 298 | ILAP:Renewal | 298 | ILAP:Renewal |
| ... | @@ -328,14 +328,14 @@ ILAP:Scheduled | ... | @@ -328,14 +328,14 @@ ILAP:Scheduled |
| 328 | rdfs:label "Scheduled"^^xsd:string . | 328 | rdfs:label "Scheduled"^^xsd:string . |
| 329 | 329 | ||
| 330 | ILAP:ShutdownAndDecommisioning | 330 | ILAP:ShutdownAndDecommisioning |
| 331 | - rdf:type ILAP:PlanLifecycleStage , ILAP:PlanPhase ; | 331 | + rdf:type ILAP:PlanPhase , ILAP:PlanLifecycleStage ; |
| 332 | rdfs:label "Shutdown and decommisioning"^^xsd:string . | 332 | rdfs:label "Shutdown and decommisioning"^^xsd:string . |
| 333 | 333 | ||
| 334 | ILAP:StandardFreeWeekendPeriod | 334 | ILAP:StandardFreeWeekendPeriod |
| 335 | rdf:type ILAP:CalendarFreePeriodWeekRepeat ; | 335 | rdf:type ILAP:CalendarFreePeriodWeekRepeat ; |
| 336 | rdfs:label "Standard free weekend period"^^xsd:string ; | 336 | rdfs:label "Standard free weekend period"^^xsd:string ; |
| 337 | ILAP:hasCalendarPeriodFreeDay | 337 | ILAP:hasCalendarPeriodFreeDay |
| 338 | - ILAP:Sunday , ILAP:Saturday . | 338 | + ILAP:Saturday , ILAP:Sunday . |
| 339 | 339 | ||
| 340 | ILAP:StandardWorkWeekdayPeriod | 340 | ILAP:StandardWorkWeekdayPeriod |
| 341 | rdf:type ILAP:CalendarWorkPeriodWeekRepeat ; | 341 | rdf:type ILAP:CalendarWorkPeriodWeekRepeat ; |
| ... | @@ -422,6 +422,21 @@ ILAP:hasPlanAsset | ... | @@ -422,6 +422,21 @@ ILAP:hasPlanAsset |
| 422 | ILAP:hasPlanResponsible | 422 | ILAP:hasPlanResponsible |
| 423 | rdfs:range ILAP:ResponsibleOrganization . | 423 | rdfs:range ILAP:ResponsibleOrganization . |
| 424 | 424 | ||
| 425 | +ILAP:hasRiskType | ||
| 426 | + rdfs:domain ILAP:RiskFactor . | ||
| 427 | + | ||
| 428 | +ILAP:hasShutdownContent | ||
| 429 | + rdfs:domain ILAP:Shutdown . | ||
| 430 | + | ||
| 431 | +ILAP:hasShutdownOperation | ||
| 432 | + rdfs:domain ILAP:Shutdown . | ||
| 433 | + | ||
| 434 | +ILAP:hasShutdownPriority | ||
| 435 | + rdfs:domain ILAP:Shutdown . | ||
| 436 | + | ||
| 437 | +ILAP:hasShutdownType | ||
| 438 | + rdfs:domain ILAP:Shutdown . | ||
| 439 | + | ||
| 425 | ILAP:hasWBSResource | 440 | ILAP:hasWBSResource |
| 426 | rdfs:range <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_Thing> . | 441 | rdfs:range <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/COR_Thing> . |
| 427 | 442 | ||
| ... | @@ -434,33 +449,15 @@ ILAP:hasWBSphase | ... | @@ -434,33 +449,15 @@ ILAP:hasWBSphase |
| 434 | ILAP:hasWorkTaskResponsible | 449 | ILAP:hasWorkTaskResponsible |
| 435 | rdfs:range ILAP:ResponsiblePerson . | 450 | rdfs:range ILAP:ResponsiblePerson . |
| 436 | 451 | ||
| 437 | -riskfactor:hasRiskType | ||
| 438 | - rdfs:domain ILAP:RiskFactor . | ||
| 439 | - | ||
| 440 | -shutdown:hasShutdownContent | ||
| 441 | - rdfs:domain ILAP:Shutdown . | ||
| 442 | - | ||
| 443 | -shutdown:hasShutdownOperation | ||
| 444 | - rdfs:domain ILAP:Shutdown . | ||
| 445 | - | ||
| 446 | -shutdown:hasShutdownPeriod | ||
| 447 | - rdfs:domain ILAP:Shutdown . | ||
| 448 | - | ||
| 449 | -shutdown:hasShutdownPriority | ||
| 450 | - rdfs:domain ILAP:Shutdown . | ||
| 451 | - | ||
| 452 | -shutdown:hasShutdownType | ||
| 453 | - rdfs:domain ILAP:Shutdown . | ||
| 454 | - | ||
| 455 | <http://data.posccaesar.org/npd/ontology/ilap-interface/Facility> | 452 | <http://data.posccaesar.org/npd/ontology/ilap-interface/Facility> |
| 456 | rdf:type owl:Class ; | 453 | rdf:type owl:Class ; |
| 457 | rdfs:label "Facility"^^xsd:string ; | 454 | rdfs:label "Facility"^^xsd:string ; |
| 458 | - rdfs:subClassOf ILAP:Facility , owl:Thing . | 455 | + rdfs:subClassOf owl:Thing , ILAP:Facility . |
| 459 | 456 | ||
| 460 | <http://data.posccaesar.org/rdl/RDS282149> | 457 | <http://data.posccaesar.org/rdl/RDS282149> |
| 461 | rdf:type owl:Class ; | 458 | rdf:type owl:Class ; |
| 462 | rdfs:label "RDS282149"^^xsd:string ; | 459 | rdfs:label "RDS282149"^^xsd:string ; |
| 463 | - rdfs:subClassOf ILAP:ResponsibleOrganization , owl:Thing . | 460 | + rdfs:subClassOf owl:Thing , ILAP:ResponsibleOrganization . |
| 464 | 461 | ||
| 465 | <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A> | 462 | <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#A> |
| 466 | rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> . | 463 | rdfs:subClassOf <http://data.posccaesar.org/sccs/CORcode> . | ... | ... |
| ... | @@ -6,319 +6,38 @@ | ... | @@ -6,319 +6,38 @@ |
| 6 | @prefix owl: <http://www.w3.org/2002/07/owl#> . | 6 | @prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 7 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 7 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 8 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 8 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 9 | -@prefix shutdown: <http://data.posccaesar.org/ilap/shutdown/> . | ||
| 10 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 9 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 11 | 10 | ||
| 12 | UC1: rdf:type owl:Ontology ; | 11 | UC1: rdf:type owl:Ontology ; |
| 13 | owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ; | 12 | owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ; |
| 14 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 13 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 15 | 14 | ||
| 16 | -UC1:ActivityDependency_1 | ||
| 17 | - rdf:type ILAP:ActivityDependency ; | ||
| 18 | - rdfs:label "Activity dependency 1"^^xsd:string . | ||
| 19 | - | ||
| 20 | -UC1:ActivityInPlan_2 | ||
| 21 | - rdf:type ILAP:PlannedActivity ; | ||
| 22 | - rdfs:label "Activity in plan 2"^^xsd:string ; | ||
| 23 | - ILAP:hasActivityPlan | ||
| 24 | - UC1:ProjectPlan_1 . | ||
| 25 | - | ||
| 26 | -UC1:ActivityInSchedule_1 | ||
| 27 | - rdf:type ILAP:ScheduledActivity ; | ||
| 28 | - rdfs:label "Activity in schedule 1"^^xsd:string ; | ||
| 29 | - ILAP:hasActivityActualWeight | ||
| 30 | - "100750"^^xsd:float ; | ||
| 31 | - ILAP:hasActivitySchedule | ||
| 32 | - UC1:LiveSchedule_1 ; | ||
| 33 | - ILAP:hasActivityScheduledResource | ||
| 34 | - UC1:ScheduledResource_1 . | ||
| 35 | - | ||
| 36 | -UC1:ActivityInSchedule_2 | ||
| 37 | - rdf:type ILAP:ScheduledActivity ; | ||
| 38 | - rdfs:label "Activity in schedule 2"^^xsd:string ; | ||
| 39 | - ILAP:hasActivitySchedule | ||
| 40 | - UC1:ActualSchedule_1 . | ||
| 41 | - | ||
| 42 | -UC1:ActivityInSchedule_3 | ||
| 43 | - rdf:type ILAP:ScheduledActivity ; | ||
| 44 | - rdfs:label "Activity in schedule 3"^^xsd:string ; | ||
| 45 | - ILAP:hasActivityInScheduleActivityInPlan | ||
| 46 | - UC1:ActivityInPlan_2 ; | ||
| 47 | - ILAP:hasActivitySchedule | ||
| 48 | - UC1:LiveSchedule_1 . | ||
| 49 | - | ||
| 50 | -UC1:ActivityInSchedule_4 | ||
| 51 | - rdf:type ILAP:ScheduledActivity ; | ||
| 52 | - rdfs:label "Activity in schedule 4"^^xsd:string ; | ||
| 53 | - ILAP:hasActivityInScheduleActivityInPlan | ||
| 54 | - UC1:ActivityInPlan_2 ; | ||
| 55 | - ILAP:hasActivitySchedule | ||
| 56 | - UC1:ActualSchedule_1 . | ||
| 57 | - | ||
| 58 | -UC1:ActivityStatus_1 | ||
| 59 | - rdf:type ILAP:ActivityStatus ; | ||
| 60 | - rdfs:label "Activity status 1"^^xsd:string . | ||
| 61 | - | ||
| 62 | -UC1:ActualSchedule_1 | ||
| 63 | - rdf:type ILAP:TargetSchedule ; | ||
| 64 | - rdfs:label "Actual schedule 1"^^xsd:string ; | ||
| 65 | - ILAP:hasPlanUserField | ||
| 66 | - <http://data.posccaesar.org/NCS_PLANNING/UserField_3> ; | ||
| 67 | - ILAP:hasScheduleBaseline | ||
| 68 | - UC1:Baseline_1 ; | ||
| 69 | - ILAP:hasSchedulePlan | ||
| 70 | - UC1:ProjectPlan_1 . | ||
| 71 | - | ||
| 72 | -UC1:Baseline_1 | ||
| 73 | - rdf:type ILAP:Baseline ; | ||
| 74 | - rdfs:label "Baseline 1"^^xsd:string ; | ||
| 75 | - ILAP:hasBaselineCreatedDate | ||
| 76 | - "2014-03-25"^^xsd:date . | ||
| 77 | - | ||
| 78 | -UC1:Baseline_2 | ||
| 79 | - rdf:type ILAP:Baseline ; | ||
| 80 | - rdfs:label "Baseline 2"^^xsd:string ; | ||
| 81 | - ILAP:hasBaselineCreatedDate | ||
| 82 | - "2014-03-25"^^xsd:date . | ||
| 83 | - | ||
| 84 | -UC1:Baseline_3 | ||
| 85 | - rdf:type ILAP:Baseline ; | ||
| 86 | - rdfs:label "Baseline 3"^^xsd:string ; | ||
| 87 | - ILAP:hasBaselineCreatedDate | ||
| 88 | - "2014-03-25"^^xsd:date . | ||
| 89 | - | ||
| 90 | -UC1:Baseline_4 | ||
| 91 | - rdf:type ILAP:Baseline ; | ||
| 92 | - rdfs:label "Baseline 4"^^xsd:string ; | ||
| 93 | - ILAP:hasBaselineCreatedDate | ||
| 94 | - "2014-03-25"^^xsd:date . | ||
| 95 | - | ||
| 96 | -UC1:Calendar_1 | ||
| 97 | - rdf:type ILAP:Calendar ; | ||
| 98 | - rdfs:label "Calendar 1"^^xsd:string . | ||
| 99 | - | ||
| 100 | -UC1:CurrentSchedule_1 | ||
| 101 | - rdf:type ILAP:CurrentSchedule ; | ||
| 102 | - rdfs:label "Current schedule 1"^^xsd:string ; | ||
| 103 | - ILAP:hasScheduleBaseline | ||
| 104 | - UC1:Baseline_2 ; | ||
| 105 | - ILAP:hasSchedulePlan | ||
| 106 | - UC1:ProjectPlan_1 . | ||
| 107 | - | ||
| 108 | -UC1:DecisionGate_1 | ||
| 109 | - rdf:type ILAP:DecisionGate ; | ||
| 110 | - rdfs:label "Decision gate 1"^^xsd:string . | ||
| 111 | - | ||
| 112 | -UC1:Discipline_1 | ||
| 113 | - rdf:type ILAP:Discipline ; | ||
| 114 | - rdfs:label "Discipline 1"^^xsd:string . | ||
| 115 | - | ||
| 116 | -UC1:ExternalReference_1 | ||
| 117 | - rdf:type ILAP:ExternalReference ; | ||
| 118 | - rdfs:label "External reference 1"^^xsd:string ; | ||
| 119 | - ILAP:hasObjectReferenceID | ||
| 120 | - "UC2-Ex2-P6-102"^^xsd:string ; | ||
| 121 | - ILAP:hasReferenceApplication | ||
| 122 | - ILAP:SAP . | ||
| 123 | - | ||
| 124 | -UC1:LiveSchedule_1 | ||
| 125 | - rdf:type ILAP:LiveSchedule ; | ||
| 126 | - rdfs:label "Live schedule 1"^^xsd:string ; | ||
| 127 | - ILAP:hasScheduleBaseline | ||
| 128 | - UC1:Baseline_3 . | ||
| 129 | - | ||
| 130 | -UC1:Milestone_1 | ||
| 131 | - rdf:type ILAP:Milestone ; | ||
| 132 | - rdfs:label "Milestone 1"^^xsd:string . | ||
| 133 | - | ||
| 134 | -UC1:Milestone_2 | ||
| 135 | - rdf:type ILAP:Milestone ; | ||
| 136 | - rdfs:label "Milestone 2"^^xsd:string . | ||
| 137 | - | ||
| 138 | -UC1:Phase_1 | ||
| 139 | - rdf:type ILAP:Phase ; | ||
| 140 | - rdfs:label "Phase 1"^^xsd:string . | ||
| 141 | - | ||
| 142 | -UC1:PlannedActivity_1 | ||
| 143 | - rdf:type ILAP:PlannedActivity ; | ||
| 144 | - rdfs:label "Planned activity 1"^^xsd:string ; | ||
| 145 | - ILAP:hasActivityActualProgressPercent | ||
| 146 | - "50"^^xsd:float ; | ||
| 147 | - ILAP:hasActivityCalendar | ||
| 148 | - <http://data.posccaesar.org/Data/UC2/Regular8To16WorkingDayCalendar_1> ; | ||
| 149 | - ILAP:hasActivityContractor | ||
| 150 | - <http://data.posccaesar.org/brreg/Subsea7> ; | ||
| 151 | - ILAP:hasActivityDiscipline | ||
| 152 | - <http://data.posccaesar.org/Data/UC2/Discipline_1> ; | ||
| 153 | - ILAP:hasActivityEstimatedWeight | ||
| 154 | - "15000"^^xsd:float ; | ||
| 155 | - ILAP:hasActivityLocation | ||
| 156 | - <http://data.posccaesar.org/npd/StafjordA> , <http://data.posccaesar.org/Data/UC2/Location_1> ; | ||
| 157 | - ILAP:hasActivityPartActivity | ||
| 158 | - <http://data.posccaesar.org/Data/UC2/PlannedActivity_2> ; | ||
| 159 | - ILAP:hasActivityPhase | ||
| 160 | - <http://data.posccaesar.org/NCS_PLANNING/Operation> ; | ||
| 161 | - ILAP:hasActivityPhysicalPercentComplete | ||
| 162 | - "45"^^xsd:float ; | ||
| 163 | - ILAP:hasActivityPlannedProgressPercent | ||
| 164 | - 55 ; | ||
| 165 | - ILAP:hasActivityRegulator | ||
| 166 | - <http://data.posccaesar.org/brreg/NPD> ; | ||
| 167 | - ILAP:hasActivityResponsibleOrganization | ||
| 168 | - <http://data.posccaesar.org/Data/UC2/ResponsibleOrganization_1> ; | ||
| 169 | - ILAP:hasActivityResponsiblePerson | ||
| 170 | - <http://data.posccaesar.org/Data/UC2/ResponsiblePerson_1> ; | ||
| 171 | - ILAP:hasActivityStatus | ||
| 172 | - <http://data.posccaesar.org/NCS_PLANNING/Active> ; | ||
| 173 | - ILAP:hasActivitySupplier | ||
| 174 | - <http://data.posccaesar.org/brreg/Schlumberger> ; | ||
| 175 | - ILAP:hasActivityTaskLeader | ||
| 176 | - <http://data.posccaesar.org/Data/UC2/ResponsiblePerson_1> ; | ||
| 177 | - ILAP:hasActivityVendor | ||
| 178 | - <http://data.posccaesar.org/brreg/BakerHughes> ; | ||
| 179 | - ILAP:hasActivityWBSelement | ||
| 180 | - <http://data.posccaesar.org/Data/UC2/ActivityWBS_1> ; | ||
| 181 | - ILAP:hasActivityWorkVolume | ||
| 182 | - "550"^^xsd:float . | ||
| 183 | - | ||
| 184 | UC1:PlannedResource_1 | 15 | UC1:PlannedResource_1 |
| 185 | rdf:type ILAP:PlannedResource ; | 16 | rdf:type ILAP:PlannedResource ; |
| 186 | - rdfs:label "Planned resource 1"^^xsd:string ; | 17 | + rdfs:label "Planned resource 1"^^xsd:string . |
| 187 | - ILAP:hasResourceProfile | ||
| 188 | - UC1:Profile_1 . | ||
| 189 | - | ||
| 190 | -UC1:ProfilePoint_1 | ||
| 191 | - rdf:type ILAP:ResourceProfilePoint ; | ||
| 192 | - rdfs:label "Profile point 1"^^xsd:string ; | ||
| 193 | - ILAP:hasProfilePointXValue | ||
| 194 | - "0.1"^^xsd:float ; | ||
| 195 | - ILAP:hasProfilePointYValue | ||
| 196 | - "0.2"^^xsd:float . | ||
| 197 | - | ||
| 198 | -UC1:ProfilePoint_2 | ||
| 199 | - rdf:type ILAP:ResourceProfilePoint ; | ||
| 200 | - rdfs:label "Profile point 2"^^xsd:string ; | ||
| 201 | - ILAP:hasProfilePointXValue | ||
| 202 | - "1.0"^^xsd:float ; | ||
| 203 | - ILAP:hasProfilePointYValue | ||
| 204 | - "0.9"^^xsd:float . | ||
| 205 | - | ||
| 206 | -UC1:Profile_1 | ||
| 207 | - rdf:type ILAP:ResourceProfile ; | ||
| 208 | - rdfs:label "Profile 1"^^xsd:string ; | ||
| 209 | - ILAP:hasProfilePoint | ||
| 210 | - ILAP:ProfilePoint_1 , ILAP:ProfilePoint_2 . | ||
| 211 | - | ||
| 212 | -UC1:ProjectPlan_1 | ||
| 213 | - rdf:type ILAP:ProjectPlan ; | ||
| 214 | - rdfs:label "Project plan 1"^^xsd:string ; | ||
| 215 | - ILAP:hasExternalReference | ||
| 216 | - <http://data.posccaesar.org/Data/UC2/R-1234567890> ; | ||
| 217 | - ILAP:hasObjectReferenceID | ||
| 218 | - "RDS489590"^^xsd:string ; | ||
| 219 | - ILAP:hasPlanAssetOwner | ||
| 220 | - <http://data.posccaesar.org/brreg/EniNorge> ; | ||
| 221 | - ILAP:hasPlanContractType | ||
| 222 | - ILAP:ScheduleDriven ; | ||
| 223 | - ILAP:hasPlanContractor | ||
| 224 | - <http://data.posccaesar.org/brreg/Subsea7> ; | ||
| 225 | - ILAP:hasPlanExpenseType | ||
| 226 | - ILAP:CAPEX ; | ||
| 227 | - ILAP:hasPlanGeoArea ILAP:Facility ; | ||
| 228 | - ILAP:hasPlanLevel ILAP:L4_ContractControlNetworkSchedule ; | ||
| 229 | - ILAP:hasPlanLicenseOperator | ||
| 230 | - <http://data.posccaesar.org/brreg/EniNorge> ; | ||
| 231 | - ILAP:hasPlanLicensePartner | ||
| 232 | - <http://data.posccaesar.org/brreg/EniNorge> ; | ||
| 233 | - ILAP:hasPlanLifecycleStage | ||
| 234 | - ILAP:Development ; | ||
| 235 | - ILAP:hasPlanNPDelement | ||
| 236 | - <http://data.posccaesar.org/Data/UC2/Location_1> , <http://data.posccaesar.org/npd/Goliat> ; | ||
| 237 | - ILAP:hasPlanObjectiveType | ||
| 238 | - ILAP:BusinessAsUsual ; | ||
| 239 | - ILAP:hasPlanProject <http://data.posccaesar.org/Data/UC2/Project_1> ; | ||
| 240 | - ILAP:hasPlanProjectType | ||
| 241 | - ILAP:GreenFieldProject ; | ||
| 242 | - ILAP:hasPlanRegulator | ||
| 243 | - <http://data.posccaesar.org/brreg/NPD> ; | ||
| 244 | - ILAP:hasPlanResponsible | ||
| 245 | - <http://data.posccaesar.org/brreg/EniNorge> ; | ||
| 246 | - ILAP:hasPlanRollUpPlan | ||
| 247 | - <http://data.posccaesar.org/Data/UC2/ProjectPlan_2> ; | ||
| 248 | - ILAP:hasPlanSubplan <http://data.posccaesar.org/Data/UC2/ProjectPlan_2> ; | ||
| 249 | - ILAP:hasPlanSupplier | ||
| 250 | - <http://data.posccaesar.org/brreg/BakerHughes> , <http://data.posccaesar.org/brreg/Schlumberger> ; | ||
| 251 | - ILAP:hasPlanUserField | ||
| 252 | - <http://data.posccaesar.org/NCS_PLANNING/UserField_2> , <http://data.posccaesar.org/NCS_PLANNING/UserField_3> , <http://data.posccaesar.org/NCS_PLANNING/UserField_1> . | ||
| 253 | - | ||
| 254 | -UC1:Project_1 | ||
| 255 | - rdf:type ILAP:Project ; | ||
| 256 | - rdfs:label "Project 1"^^xsd:string . | ||
| 257 | - | ||
| 258 | -UC1:Result_1 | ||
| 259 | - rdf:type ILAP:Result ; | ||
| 260 | - rdfs:label "Result 1"^^xsd:string . | ||
| 261 | - | ||
| 262 | -UC1:RiskFactor_1 | ||
| 263 | - rdf:type ILAP:RiskFactor ; | ||
| 264 | - rdfs:label "Risk factor 1"^^xsd:string . | ||
| 265 | 18 | ||
| 266 | UC1:ScheduledResource_1 | 19 | UC1:ScheduledResource_1 |
| 267 | rdf:type ILAP:ScheduledResource ; | 20 | rdf:type ILAP:ScheduledResource ; |
| 268 | - rdfs:label "Scheduled resource 1"^^xsd:string ; | 21 | + rdfs:label "Scheduled resource 1"^^xsd:string . |
| 269 | - ILAP:hasResourceProfile | 22 | + |
| 270 | - UC1:Profile_1 . | 23 | +UC1:Shutdown_2 |
| 271 | - | 24 | + rdf:type ILAP:Shutdown ; |
| 272 | -UC1:TargetSchedule_1 | 25 | + rdfs:label "Shutdown 2"^^xsd:string ; |
| 273 | - rdf:type ILAP:TargetSchedule ; | 26 | + ILAP:hasShutdownContent |
| 274 | - rdfs:label "Target schedule 1"^^xsd:string ; | 27 | + ILAP:Equipment_Shutdown ; |
| 275 | - ILAP:hasScheduleBaseline | 28 | + ILAP:hasShutdownPeriod |
| 276 | - UC1:Baseline_4 ; | 29 | + "SD-2015"^^xsd:string ; |
| 277 | - ILAP:hasSchedulePlan | 30 | + ILAP:hasShutdownType |
| 278 | - UC1:ProjectPlan_1 . | 31 | + ILAP:Scheduled_Shutdown . |
| 279 | 32 | ||
| 280 | -UC1:UserField_1 | 33 | +ILAP:PlannedActivity_1 |
| 281 | - rdf:type ILAP:UserField ; | ||
| 282 | - rdfs:label "User field 1"^^xsd:string . | ||
| 283 | - | ||
| 284 | -UC1:UserField_2 | ||
| 285 | - rdf:type ILAP:UserField ; | ||
| 286 | - rdfs:label "User field 2"^^xsd:string . | ||
| 287 | - | ||
| 288 | -UC1:UserField_3 | ||
| 289 | - rdf:type ILAP:UserField ; | ||
| 290 | - rdfs:label "User field 3"^^xsd:string . | ||
| 291 | - | ||
| 292 | -<http://data.posccaesar.org/Data/UC2/NetworkSchedule_1> | ||
| 293 | - ILAP:hasSchedulePlan | ||
| 294 | - UC1:ProjectPlan_1 . | ||
| 295 | - | ||
| 296 | -<http://data.posccaesar.org/Data/UC2/PlannedActivity_1> | ||
| 297 | ILAP:hasActivityPlan | 34 | ILAP:hasActivityPlan |
| 298 | UC1:ProjectPlan_1 . | 35 | UC1:ProjectPlan_1 . |
| 299 | 36 | ||
| 300 | -<http://data.posccaesar.org/NCS_PLANNING/UserField_1> | 37 | +ILAP:hasShutdownPeriod |
| 301 | - ILAP:hasUserFieldName | 38 | + rdf:type owl:DatatypeProperty ; |
| 302 | - "Area"^^xsd:string ; | 39 | + rdfs:label "has shutdown period"^^xsd:string ; |
| 303 | - ILAP:hasUserFieldSource | 40 | + rdfs:range xsd:string . |
| 304 | - <http://data.posccaesar.org/brreg/Sevan> ; | ||
| 305 | - ILAP:hasUserFieldValue | ||
| 306 | - "Processing System"^^xsd:string . | ||
| 307 | 41 | ||
| 308 | -<http://data.posccaesar.org/NCS_PLANNING/UserField_2> | 42 | +ILAP:hasShutdownType |
| 309 | - ILAP:hasUserFieldSource | 43 | + rdfs:range ILAP:ShutdownType . |
| 310 | - <http://data.posccaesar.org/brreg/Sevan> ; | ||
| 311 | - ILAP:hasUserFieldValue | ||
| 312 | - "SAP-WO-101-3"^^xsd:string . | ||
| 313 | - | ||
| 314 | -<http://data.posccaesar.org/NCS_PLANNING/UserField_3> | ||
| 315 | - ILAP:hasUserFieldName | ||
| 316 | - "Risk Factor"^^xsd:string ; | ||
| 317 | - ILAP:hasUserFieldSource | ||
| 318 | - <http://data.posccaesar.org/brreg/Sevan> ; | ||
| 319 | - ILAP:hasUserFieldValue | ||
| 320 | - "Explosive Environment"^^xsd:string . | ||
| 321 | - | ||
| 322 | -ILAP:PlannedActivity_1 | ||
| 323 | - ILAP:hasActivityPlan | ||
| 324 | - UC1:ProjectPlan_1 . | ... | ... |
UseCaseData/UC2.ttl
deleted
100644 → 0
| 1 | -# baseURI: http://data.posccaesar.org/Data/UC2/ | ||
| 2 | -# imports: http://data.posccaesar.org/NCS_PLANNING/ | ||
| 3 | - | ||
| 4 | -@prefix : <http://data.posccaesar.org/Data/UC2/> . | ||
| 5 | -@prefix COR: <http://www.ilap.no/codes/NORSOK/Z-014/CORCoding#> . | ||
| 6 | -@prefix ILAP: <http://data.posccaesar.org/ilap/> . | ||
| 7 | -@prefix NCS: <http://data.posccaesar.org/NCS_PLANNING/> . | ||
| 8 | -@prefix NPD: <http://data.posccaesar.org/npd/> . | ||
| 9 | -@prefix PBS: <http://www.ilap.no/codes/NORSOK/Z-014/PBSCoding#> . | ||
| 10 | -@prefix UC2: <http://data.posccaesar.org/Data/UC2/> . | ||
| 11 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
| 12 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| 13 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| 14 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
| 15 | - | ||
| 16 | -UC2: rdf:type owl:Ontology ; | ||
| 17 | - owl:imports NCS: . | ||
| 18 | - | ||
| 19 | -UC2:ActivityWBS_1 | ||
| 20 | - rdf:type <http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#6> , PBS:AC , ILAP:ActivityWBS , COR:ADA ; | ||
| 21 | - rdfs:label "Activity WBS 1"^^xsd:string . | ||
| 22 | - | ||
| 23 | -UC2:Baseline_1 | ||
| 24 | - rdf:type ILAP:Baseline ; | ||
| 25 | - rdfs:label "Baseline 1"^^xsd:string . | ||
| 26 | - | ||
| 27 | -UC2:ContractorsContractControlSchedule_1 | ||
| 28 | - rdf:type ILAP:ContractorsContractControlSchedule ; | ||
| 29 | - rdfs:label "Contractors contract control schedule 1"^^xsd:string . | ||
| 30 | - | ||
| 31 | -UC2:CurrentControlEstimate_1 | ||
| 32 | - rdf:type ILAP:CurrentControlEstimate ; | ||
| 33 | - rdfs:label "Current control estimate 1"^^xsd:string . | ||
| 34 | - | ||
| 35 | -UC2:Discipline_1 | ||
| 36 | - rdf:type ILAP:Discipline , COR:BEA ; | ||
| 37 | - rdfs:label "Discipline 1"^^xsd:string . | ||
| 38 | - | ||
| 39 | -UC2:Discipline_2 | ||
| 40 | - rdf:type ILAP:Discipline ; | ||
| 41 | - rdfs:label "Discipline 2"^^xsd:string . | ||
| 42 | - | ||
| 43 | -UC2:Location_1 | ||
| 44 | - rdf:type ILAP:Location , NPD:StatfjordA ; | ||
| 45 | - rdfs:label "Location 1"^^xsd:string . | ||
| 46 | - | ||
| 47 | -UC2:Milestone_1 | ||
| 48 | - rdf:type ILAP:Milestone ; | ||
| 49 | - rdfs:label "Milestone 1"^^xsd:string . | ||
| 50 | - | ||
| 51 | -UC2:NetworkSchedule_1 | ||
| 52 | - rdf:type ILAP:Schedule ; | ||
| 53 | - rdfs:label "Network schedule 1"^^xsd:string . | ||
| 54 | - | ||
| 55 | -UC2:PlannedActivity_2 | ||
| 56 | - rdf:type ILAP:PlannedActivity ; | ||
| 57 | - rdfs:label "Planned activity 2"^^xsd:string . | ||
| 58 | - | ||
| 59 | -UC2:ProfilePoint_1 | ||
| 60 | - rdf:type ILAP:ResourceProfilePoint ; | ||
| 61 | - rdfs:label "Profile point 1"^^xsd:string ; | ||
| 62 | - ILAP:hasProfilePointXValue | ||
| 63 | - "0"^^xsd:float ; | ||
| 64 | - ILAP:hasProfilePointYValue | ||
| 65 | - "0"^^xsd:float . | ||
| 66 | - | ||
| 67 | -UC2:ProfilePoint_2 | ||
| 68 | - rdf:type ILAP:ResourceProfilePoint ; | ||
| 69 | - rdfs:label "Profile point 2"^^xsd:string ; | ||
| 70 | - ILAP:hasProfilePointXValue | ||
| 71 | - "1"^^xsd:float ; | ||
| 72 | - ILAP:hasProfilePointYValue | ||
| 73 | - "1"^^xsd:float . | ||
| 74 | - | ||
| 75 | -UC2:Profile_1 | ||
| 76 | - rdf:type ILAP:ResourceProfile ; | ||
| 77 | - rdfs:label "Profile 1"^^xsd:string ; | ||
| 78 | - ILAP:hasProfilePoint | ||
| 79 | - UC2:ProfilePoint_2 , UC2:ProfilePoint_1 . | ||
| 80 | - | ||
| 81 | -UC2:ProjectPlan_2 | ||
| 82 | - rdf:type ILAP:ProjectPlan ; | ||
| 83 | - rdfs:label "Project plan 2"^^xsd:string . | ||
| 84 | - | ||
| 85 | -UC2:Project_1 | ||
| 86 | - rdf:type ILAP:Project ; | ||
| 87 | - rdfs:label "Project 1"^^xsd:string . | ||
| 88 | - | ||
| 89 | -UC2:R-1234567890 | ||
| 90 | - rdf:type ILAP:ExternalReference ; | ||
| 91 | - rdfs:label "R-1234567890"^^xsd:string . | ||
| 92 | - | ||
| 93 | -UC2:Regular8To16WorkingDayCalendar_1 | ||
| 94 | - rdf:type ILAP:Regular8To16WorkingDayCalendar ; | ||
| 95 | - rdfs:label "Regular8To16Working day calendar 1"^^xsd:string . | ||
| 96 | - | ||
| 97 | -UC2:ResourceStructure_1 | ||
| 98 | - rdf:type ILAP:Resource ; | ||
| 99 | - rdfs:label "Resource structure 1"^^xsd:string . | ||
| 100 | - | ||
| 101 | -UC2:ResponsibleOrganization_1 | ||
| 102 | - rdf:type ILAP:ResponsibleOrganization ; | ||
| 103 | - rdfs:label "Responsible organization 1"^^xsd:string . | ||
| 104 | - | ||
| 105 | -UC2:ResponsiblePerson_1 | ||
| 106 | - rdf:type ILAP:ResponsiblePerson ; | ||
| 107 | - rdfs:label "Responsible person 1"^^xsd:string . | ||
| 108 | - | ||
| 109 | -UC2:Result_1 | ||
| 110 | - rdf:type ILAP:Result ; | ||
| 111 | - rdfs:label "Result 1"^^xsd:string . | ||
| 112 | - | ||
| 113 | -<http://data.posccaesar.org/brreg/LegalEntity> | ||
| 114 | - rdfs:subClassOf ILAP:ResponsibleOrganization . | ||
| 115 | - | ||
| 116 | -ILAP:ContractorWBS_1 | ||
| 117 | - rdf:type ILAP:ContractorWBS ; | ||
| 118 | - rdfs:label "Contractor WBS 1"^^xsd:string ; | ||
| 119 | - ILAP:hasContractorWBSelement | ||
| 120 | - "Pump engineer"^^xsd:string , "Installing pump"^^xsd:string , "Installation activity"^^xsd:string . | ||
| 121 | - | ||
| 122 | -ILAP:Discipline_1 | ||
| 123 | - rdf:type COR:CDA . | ||
| 124 | - | ||
| 125 | -ILAP:PlannedActivity | ||
| 126 | - rdfs:subClassOf | ||
| 127 | - [ rdf:type owl:Restriction ; | ||
| 128 | - owl:allValuesFrom ILAP:ResponsibleOrganization ; | ||
| 129 | - owl:onProperty ILAP:hasActivityResponsibleOrganization | ||
| 130 | - ] ; | ||
| 131 | - rdfs:subClassOf | ||
| 132 | - [ rdf:type owl:Restriction ; | ||
| 133 | - owl:allValuesFrom ILAP:Calendar ; | ||
| 134 | - owl:onProperty ILAP:hasActivityCalendar | ||
| 135 | - ] . | ||
| 136 | - | ||
| 137 | -ILAP:PlannedActivity_1 | ||
| 138 | - rdf:type <http://www.ilap.no/codes/NORSOK/Z-014/SABCoding#412> , PBS:ACAE , COR:ADA ; | ||
| 139 | - ILAP:hasActivityContractor | ||
| 140 | - <http://data.posccaesar.org/brreg/Subsea7> ; | ||
| 141 | - ILAP:hasActivityDiscipline | ||
| 142 | - UC2:Discipline_2 . | ||
| 143 | - | ||
| 144 | -ILAP:TargetSchedule_1 | ||
| 145 | - rdf:type ILAP:TargetSchedule ; | ||
| 146 | - rdfs:label "Target schedule 1"^^xsd:string ; | ||
| 147 | - ILAP:hasBaselineCreatedDate | ||
| 148 | - "2014-03-01"^^xsd:date . | ||
| 149 | - | ||
| 150 | -ILAP:UC2_ActivityInSchedule_1-hasActivityInScheduleActivityInPlan-UC2_ActivityInPlan_1 | ||
| 151 | - rdf:type rdf:Statement ; | ||
| 152 | - rdf:predicate ILAP:hasActivityInScheduleActivityInPlan ; | ||
| 153 | - rdfs:label "UC2 Activity in schedule 1-has activity in schedule activity in plan-UC2 Activity in plan 1"^^xsd:string . | ||
| 154 | - | ||
| 155 | -ILAP:hasActivityWBSelement | ||
| 156 | - rdfs:range ILAP:ActivityWBS . | ||
| 157 | - | ||
| 158 | -ILAP:hasObjectReferenceID | ||
| 159 | - rdfs:domain owl:Thing . |
UseCaseData/UC3.ttl
deleted
100644 → 0
| 1 | -# baseURI: http://data.posccaesar.org/Data/UC3/ | ||
| 2 | -# imports: http://data.posccaesar.org/NCS_PLANNING/ | ||
| 3 | - | ||
| 4 | -@prefix ILAP: <http://data.posccaesar.org/ilap/> . | ||
| 5 | -@prefix UC3: <http://data.posccaesar.org/Data/UC3/> . | ||
| 6 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
| 7 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| 8 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| 9 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
| 10 | - | ||
| 11 | -UC3: rdf:type owl:Ontology ; | ||
| 12 | - owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ; | ||
| 13 | - owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
| 14 | - | ||
| 15 | -UC3:Asset_1 | ||
| 16 | - rdf:type <http://ILAP_1.5/diskos#Asset> ; | ||
| 17 | - rdfs:label "Asset 1"^^xsd:string . | ||
| 18 | - | ||
| 19 | -UC3:ContractorWBS_1 | ||
| 20 | - rdf:type ILAP:ContractorWBS ; | ||
| 21 | - rdfs:label "Contractor WBS 1"^^xsd:string . | ||
| 22 | - | ||
| 23 | -UC3:ContractorWBS_2 | ||
| 24 | - rdf:type ILAP:ContractorWBS ; | ||
| 25 | - rdfs:label "Contractor WBS 2"^^xsd:string . | ||
| 26 | - | ||
| 27 | -UC3:TargetSchedule_1 | ||
| 28 | - rdf:type ILAP:TargetSchedule ; | ||
| 29 | - rdfs:label "Target schedule 1"^^xsd:string . | ||
| 30 | - | ||
| 31 | -<http://data.posccaesar.org/brreg/LegalEntity> | ||
| 32 | - rdfs:subClassOf ILAP:ResponsibleOrganization . |
UseCaseData/UC4.ttl
deleted
100644 → 0
| 1 | -# baseURI: http://data.posccaesar.org/Data/UC4/ | ||
| 2 | -# imports: http://data.posccaesar.org/NCS_PLANNING/ | ||
| 3 | - | ||
| 4 | -@prefix ILAP: <http://data.posccaesar.org/ilap/> . | ||
| 5 | -@prefix UC4: <http://data.posccaesar.org/Data/UC4/> . | ||
| 6 | -@prefix lci: <http://data.posccaesar.org/15926/tech/ontology/> . | ||
| 7 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
| 8 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
| 9 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
| 10 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
| 11 | - | ||
| 12 | -UC4: rdf:type owl:Ontology ; | ||
| 13 | - owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ; | ||
| 14 | - owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
| 15 | - | ||
| 16 | -UC4:BaselineSetting_1 | ||
| 17 | - rdf:type ILAP:BaselineSetting ; | ||
| 18 | - rdfs:label "Baseline setting 1"^^xsd:string . | ||
| 19 | - | ||
| 20 | -UC4:Planning_1 | ||
| 21 | - rdf:type ILAP:Planning ; | ||
| 22 | - rdfs:label "Planning 1"^^xsd:string ; | ||
| 23 | - lci:hasPart UC4:BaselineSetting_1 . |
-
Please register or login to post a comment