Showing
2 changed files
with
192 additions
and
197 deletions
| 1 | # baseURI: http://data.posccaesar.org/ilap/ | 1 | # baseURI: http://data.posccaesar.org/ilap/ |
| 2 | 2 | ||
| 3 | @prefix BRREG: <http://data.posccaesar.org/brreg/> . | 3 | @prefix BRREG: <http://data.posccaesar.org/brreg/> . |
| 4 | -@prefix CCU: <http://data.posccaesar.org/ccu/> . | ||
| 5 | -@prefix DISKOS: <http://data.posccaesar.org/diskos/> . | ||
| 6 | -@prefix EPCIS: <http://data.posccaesar.org/epcis/> . | ||
| 7 | @prefix ILAP: <http://data.posccaesar.org/ilap/> . | 4 | @prefix ILAP: <http://data.posccaesar.org/ilap/> . |
| 8 | -@prefix NCS: <http://data.posccaesar.org/NCS_PLANNING/> . | ||
| 9 | @prefix NPD: <http://data.posccaesar.org/npd/> . | 5 | @prefix NPD: <http://data.posccaesar.org/npd/> . |
| 10 | -@prefix POB: <http://data.posccaesar.org/pob/> . | 6 | +@prefix NPD-interface: <http://data.posccaesar.org/npd/ontology/ilap-interface/> . |
| 11 | @prefix owl: <http://www.w3.org/2002/07/owl#> . | 7 | @prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 12 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 8 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 13 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 9 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| ... | @@ -18,44 +14,44 @@ ILAP: | ... | @@ -18,44 +14,44 @@ ILAP: |
| 18 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 14 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 19 | 15 | ||
| 20 | ILAP:Activity | 16 | ILAP:Activity |
| 21 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; | 17 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| 22 | rdfs:label "Activity"^^xsd:string ; | 18 | rdfs:label "Activity"^^xsd:string ; |
| 23 | rdfs:subClassOf | 19 | rdfs:subClassOf |
| 24 | [ rdf:type owl:Restriction ; | 20 | [ rdf:type owl:Restriction ; |
| 25 | - owl:allValuesFrom ILAP:Discipline ; | 21 | + owl:allValuesFrom ILAP:Status ; |
| 26 | - owl:onProperty ILAP:hasActivityDiscipline | 22 | + owl:onProperty ILAP:hasActivityStatus |
| 27 | ] ; | 23 | ] ; |
| 28 | rdfs:subClassOf | 24 | rdfs:subClassOf |
| 29 | [ rdf:type owl:Restriction ; | 25 | [ rdf:type owl:Restriction ; |
| 30 | - owl:allValuesFrom ILAP:Calendar ; | 26 | + owl:onProperty ILAP:hasExternalReference ; |
| 31 | - owl:onProperty ILAP:hasActivityCalendar | 27 | + owl:someValuesFrom ILAP:ExternalReference |
| 32 | ] ; | 28 | ] ; |
| 33 | rdfs:subClassOf | 29 | rdfs:subClassOf |
| 34 | [ rdf:type owl:Restriction ; | 30 | [ rdf:type owl:Restriction ; |
| 35 | - owl:onProperty ILAP:hasExternalReference ; | 31 | + owl:allValuesFrom ILAP:Calendar ; |
| 36 | - owl:someValuesFrom ILAP:ExternalReference | 32 | + owl:onProperty ILAP:hasActivityCalendar |
| 37 | ] ; | 33 | ] ; |
| 38 | rdfs:subClassOf | 34 | rdfs:subClassOf |
| 39 | [ rdf:type owl:Restriction ; | 35 | [ rdf:type owl:Restriction ; |
| 40 | - owl:allValuesFrom ILAP:Status ; | 36 | + owl:allValuesFrom ILAP:Discipline ; |
| 41 | - owl:onProperty ILAP:hasActivityStatus | 37 | + owl:onProperty ILAP:hasActivityDiscipline |
| 42 | ] . | 38 | ] . |
| 43 | 39 | ||
| 44 | ILAP:ActivityDependency | 40 | ILAP:ActivityDependency |
| 45 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; | 41 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; |
| 46 | rdfs:label "Activity Dependency"^^xsd:string ; | 42 | rdfs:label "Activity Dependency"^^xsd:string ; |
| 47 | rdfs:subClassOf ILAP:Constraint ; | 43 | rdfs:subClassOf ILAP:Constraint ; |
| 48 | rdfs:subClassOf | 44 | rdfs:subClassOf |
| 49 | [ rdf:type owl:Restriction ; | 45 | [ rdf:type owl:Restriction ; |
| 50 | owl:onClass ILAP:Activity ; | 46 | owl:onClass ILAP:Activity ; |
| 51 | - owl:onProperty ILAP:hasPredecessorActivity ; | 47 | + owl:onProperty ILAP:hasSuccessorActivity ; |
| 52 | owl:qualifiedCardinality | 48 | owl:qualifiedCardinality |
| 53 | "1"^^xsd:nonNegativeInteger | 49 | "1"^^xsd:nonNegativeInteger |
| 54 | ] ; | 50 | ] ; |
| 55 | rdfs:subClassOf | 51 | rdfs:subClassOf |
| 56 | [ rdf:type owl:Restriction ; | 52 | [ rdf:type owl:Restriction ; |
| 57 | owl:onClass ILAP:Activity ; | 53 | owl:onClass ILAP:Activity ; |
| 58 | - owl:onProperty ILAP:hasSuccessorActivity ; | 54 | + owl:onProperty ILAP:hasPredecessorActivity ; |
| 59 | owl:qualifiedCardinality | 55 | owl:qualifiedCardinality |
| 60 | "1"^^xsd:nonNegativeInteger | 56 | "1"^^xsd:nonNegativeInteger |
| 61 | ] . | 57 | ] . |
| ... | @@ -70,7 +66,7 @@ ILAP:ActivityInPlan_1 | ... | @@ -70,7 +66,7 @@ ILAP:ActivityInPlan_1 |
| 70 | ILAP:hasActivityEstimatedWeight | 66 | ILAP:hasActivityEstimatedWeight |
| 71 | "10500"^^xsd:float ; | 67 | "10500"^^xsd:float ; |
| 72 | ILAP:hasActivityLocation | 68 | ILAP:hasActivityLocation |
| 73 | - NCS:NPDelement_1 ; | 69 | + <http://data.posccaesar.org/NCS_PLANNING/NPDelement_1> ; |
| 74 | ILAP:hasActivityPhysicalPercentComplete | 70 | ILAP:hasActivityPhysicalPercentComplete |
| 75 | "70"^^xsd:float ; | 71 | "70"^^xsd:float ; |
| 76 | ILAP:hasActivityPlan | 72 | ILAP:hasActivityPlan |
| ... | @@ -82,13 +78,13 @@ ILAP:ActivityInPlan_1 | ... | @@ -82,13 +78,13 @@ ILAP:ActivityInPlan_1 |
| 82 | ILAP:hasActivityRegulator | 78 | ILAP:hasActivityRegulator |
| 83 | BRREG:NPD ; | 79 | BRREG:NPD ; |
| 84 | ILAP:hasActivityResponsiblePerson | 80 | ILAP:hasActivityResponsiblePerson |
| 85 | - POB:RolfHansen ; | 81 | + <http://data.posccaesar.org/pob/RolfHansen> ; |
| 86 | ILAP:hasActivityStatus | 82 | ILAP:hasActivityStatus |
| 87 | ILAP:Active ; | 83 | ILAP:Active ; |
| 88 | ILAP:hasActivitySupplier | 84 | ILAP:hasActivitySupplier |
| 89 | BRREG:BakerHughes ; | 85 | BRREG:BakerHughes ; |
| 90 | ILAP:hasActivityTaskLeader | 86 | ILAP:hasActivityTaskLeader |
| 91 | - POB:NiloErdal ; | 87 | + <http://data.posccaesar.org/pob/NiloErdal> ; |
| 92 | ILAP:hasActivityVendor | 88 | ILAP:hasActivityVendor |
| 93 | BRREG:BakerHughes ; | 89 | BRREG:BakerHughes ; |
| 94 | ILAP:hasActivityWBSelement | 90 | ILAP:hasActivityWBSelement |
| ... | @@ -108,7 +104,7 @@ ILAP:ActivityInPlan_1 | ... | @@ -108,7 +104,7 @@ ILAP:ActivityInPlan_1 |
| 108 | "Specific object ID"^^xsd:string . | 104 | "Specific object ID"^^xsd:string . |
| 109 | 105 | ||
| 110 | ILAP:ActivityPlan | 106 | ILAP:ActivityPlan |
| 111 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; | 107 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; |
| 112 | rdfs:label "Activity Plan"^^xsd:string ; | 108 | rdfs:label "Activity Plan"^^xsd:string ; |
| 113 | rdfs:subClassOf ILAP:Network ; | 109 | rdfs:subClassOf ILAP:Network ; |
| 114 | rdfs:subClassOf | 110 | rdfs:subClassOf |
| ... | @@ -123,7 +119,7 @@ ILAP:ActivityStatus | ... | @@ -123,7 +119,7 @@ ILAP:ActivityStatus |
| 123 | rdfs:subClassOf ILAP:Status . | 119 | rdfs:subClassOf ILAP:Status . |
| 124 | 120 | ||
| 125 | ILAP:ActivityWBS | 121 | ILAP:ActivityWBS |
| 126 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; | 122 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; |
| 127 | rdfs:label "Activity WBS"^^xsd:string ; | 123 | rdfs:label "Activity WBS"^^xsd:string ; |
| 128 | rdfs:subClassOf ILAP:Network . | 124 | rdfs:subClassOf ILAP:Network . |
| 129 | 125 | ||
| ... | @@ -138,15 +134,15 @@ ILAP:After_Shutdown | ... | @@ -138,15 +134,15 @@ ILAP:After_Shutdown |
| 138 | ILAP:Application | 134 | ILAP:Application |
| 139 | rdf:type owl:Class ; | 135 | rdf:type owl:Class ; |
| 140 | rdfs:label "Application"^^xsd:string ; | 136 | rdfs:label "Application"^^xsd:string ; |
| 141 | - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS43165907246> , owl:Thing . | 137 | + rdfs:subClassOf owl:Thing , <http://data.posccaesar.org/rdl/RDS43165907246> . |
| 142 | 138 | ||
| 143 | ILAP:Asset | 139 | ILAP:Asset |
| 144 | rdf:type owl:Class ; | 140 | rdf:type owl:Class ; |
| 145 | rdfs:label "Asset"^^xsd:string ; | 141 | rdfs:label "Asset"^^xsd:string ; |
| 146 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13318199> , owl:Thing . | 142 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13318199> . |
| 147 | 143 | ||
| 148 | ILAP:Baseline | 144 | ILAP:Baseline |
| 149 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 145 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 150 | rdfs:label "Baseline"^^xsd:string ; | 146 | rdfs:label "Baseline"^^xsd:string ; |
| 151 | rdfs:subClassOf ILAP:Network . | 147 | rdfs:subClassOf ILAP:Network . |
| 152 | 148 | ||
| ... | @@ -164,9 +160,9 @@ ILAP:CAPEX | ... | @@ -164,9 +160,9 @@ ILAP:CAPEX |
| 164 | rdfs:label "CAPEX"^^xsd:string . | 160 | rdfs:label "CAPEX"^^xsd:string . |
| 165 | 161 | ||
| 166 | ILAP:Calendar | 162 | ILAP:Calendar |
| 167 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; | 163 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| 168 | rdfs:label "Calendar"^^xsd:string ; | 164 | rdfs:label "Calendar"^^xsd:string ; |
| 169 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7014210> ; | 165 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , owl:Thing ; |
| 170 | rdfs:subClassOf | 166 | rdfs:subClassOf |
| 171 | [ rdf:type owl:Restriction ; | 167 | [ rdf:type owl:Restriction ; |
| 172 | owl:allValuesFrom ILAP:CalendarFreePeriod ; | 168 | owl:allValuesFrom ILAP:CalendarFreePeriod ; |
| ... | @@ -174,14 +170,14 @@ ILAP:Calendar | ... | @@ -174,14 +170,14 @@ ILAP:Calendar |
| 174 | ] . | 170 | ] . |
| 175 | 171 | ||
| 176 | ILAP:CalendarDay | 172 | ILAP:CalendarDay |
| 177 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; | 173 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; |
| 178 | rdfs:label "Calendar day"^^xsd:string ; | 174 | rdfs:label "Calendar day"^^xsd:string ; |
| 179 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS8945301> . | 175 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , owl:Thing . |
| 180 | 176 | ||
| 181 | ILAP:CalendarFreePeriod | 177 | ILAP:CalendarFreePeriod |
| 182 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; | 178 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; |
| 183 | rdfs:label "Calendar free period"^^xsd:string ; | 179 | rdfs:label "Calendar free period"^^xsd:string ; |
| 184 | - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarPeriod ; | 180 | + rdfs:subClassOf ILAP:CalendarPeriod , <http://posccaesar.org/rdl/page/RDS356215271> ; |
| 185 | rdfs:subClassOf | 181 | rdfs:subClassOf |
| 186 | [ rdf:type owl:Restriction ; | 182 | [ rdf:type owl:Restriction ; |
| 187 | owl:onClass ILAP:Calendar ; | 183 | owl:onClass ILAP:Calendar ; |
| ... | @@ -193,28 +189,28 @@ ILAP:CalendarFreePeriod | ... | @@ -193,28 +189,28 @@ ILAP:CalendarFreePeriod |
| 193 | ] . | 189 | ] . |
| 194 | 190 | ||
| 195 | ILAP:CalendarFreePeriodWeekRepeat | 191 | ILAP:CalendarFreePeriodWeekRepeat |
| 196 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> ; | 192 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPeriodInTime> , owl:Class ; |
| 197 | rdfs:label "Free day"^^xsd:string ; | 193 | rdfs:label "Free day"^^xsd:string ; |
| 198 | - rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS356215271> , ILAP:CalendarFreePeriod . | 194 | + rdfs:subClassOf ILAP:CalendarFreePeriod , <http://posccaesar.org/rdl/page/RDS356215271> . |
| 199 | 195 | ||
| 200 | ILAP:CalendarHour | 196 | ILAP:CalendarHour |
| 201 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; | 197 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; |
| 202 | rdfs:label "calendar hour"^^xsd:string ; | 198 | rdfs:label "calendar hour"^^xsd:string ; |
| 203 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS380969> , <http://posccaesar.org/rdl/RDS1326734> . | 199 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS1326734> , <http://posccaesar.org/rdl/RDS380969> , owl:Thing . |
| 204 | 200 | ||
| 205 | ILAP:CalendarPeriod | 201 | ILAP:CalendarPeriod |
| 206 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> ; | 202 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#PropertySpace> , owl:Class ; |
| 207 | rdfs:label "Calendar period"^^xsd:string ; | 203 | rdfs:label "Calendar period"^^xsd:string ; |
| 208 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS4316824755> , owl:Thing ; | 204 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS4316824755> ; |
| 209 | rdfs:subClassOf | 205 | rdfs:subClassOf |
| 210 | [ rdf:type owl:Restriction ; | 206 | [ rdf:type owl:Restriction ; |
| 211 | - owl:allValuesFrom ILAP:CalendarDay ; | 207 | + owl:allValuesFrom ILAP:CalendarHour ; |
| 212 | - owl:onProperty ILAP:hasCalendarPeriodDay | 208 | + owl:onProperty ILAP:hasCalendarPeriodHour |
| 213 | ] ; | 209 | ] ; |
| 214 | rdfs:subClassOf | 210 | rdfs:subClassOf |
| 215 | [ rdf:type owl:Restriction ; | 211 | [ rdf:type owl:Restriction ; |
| 216 | - owl:allValuesFrom ILAP:CalendarHour ; | 212 | + owl:allValuesFrom ILAP:CalendarDay ; |
| 217 | - owl:onProperty ILAP:hasCalendarPeriodHour | 213 | + owl:onProperty ILAP:hasCalendarPeriodDay |
| 218 | ] . | 214 | ] . |
| 219 | 215 | ||
| 220 | ILAP:Campaign | 216 | ILAP:Campaign |
| ... | @@ -233,12 +229,12 @@ ILAP:Change_over | ... | @@ -233,12 +229,12 @@ ILAP:Change_over |
| 233 | ILAP:Constraint | 229 | ILAP:Constraint |
| 234 | rdf:type owl:Class ; | 230 | rdf:type owl:Class ; |
| 235 | rdfs:label "Constraint"^^xsd:string ; | 231 | rdfs:label "Constraint"^^xsd:string ; |
| 236 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS330344> , owl:Thing . | 232 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS330344> . |
| 237 | 233 | ||
| 238 | ILAP:Contract | 234 | ILAP:Contract |
| 239 | rdf:type owl:Class ; | 235 | rdf:type owl:Class ; |
| 240 | rdfs:label "Contract"^^xsd:string ; | 236 | rdfs:label "Contract"^^xsd:string ; |
| 241 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7953078> , owl:Thing . | 237 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7953078> . |
| 242 | 238 | ||
| 243 | ILAP:ControlSchedule | 239 | ILAP:ControlSchedule |
| 244 | rdf:type owl:Class ; | 240 | rdf:type owl:Class ; |
| ... | @@ -248,7 +244,7 @@ ILAP:ControlSchedule | ... | @@ -248,7 +244,7 @@ ILAP:ControlSchedule |
| 248 | ILAP:Cost | 244 | ILAP:Cost |
| 249 | rdf:type owl:Class ; | 245 | rdf:type owl:Class ; |
| 250 | rdfs:label "Cost"^^xsd:string ; | 246 | rdfs:label "Cost"^^xsd:string ; |
| 251 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945027> , owl:Thing . | 247 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945027> . |
| 252 | 248 | ||
| 253 | ILAP:CostBased | 249 | ILAP:CostBased |
| 254 | rdf:type owl:Class ; | 250 | rdf:type owl:Class ; |
| ... | @@ -256,14 +252,14 @@ ILAP:CostBased | ... | @@ -256,14 +252,14 @@ ILAP:CostBased |
| 256 | rdfs:subClassOf ILAP:Resource . | 252 | rdfs:subClassOf ILAP:Resource . |
| 257 | 253 | ||
| 258 | ILAP:CurrentSchedule | 254 | ILAP:CurrentSchedule |
| 259 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 255 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 260 | rdfs:label "Current schedule"^^xsd:string ; | 256 | rdfs:label "Current schedule"^^xsd:string ; |
| 261 | rdfs:subClassOf ILAP:Schedule . | 257 | rdfs:subClassOf ILAP:Schedule . |
| 262 | 258 | ||
| 263 | ILAP:Data | 259 | ILAP:Data |
| 264 | rdf:type owl:Class ; | 260 | rdf:type owl:Class ; |
| 265 | rdfs:label "Data"^^xsd:string ; | 261 | rdfs:label "Data"^^xsd:string ; |
| 266 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS11708918> , ILAP:Information ; | 262 | + rdfs:subClassOf ILAP:Information , <http://posccaesar.org/rdl/RDS11708918> ; |
| 267 | rdfs:subClassOf | 263 | rdfs:subClassOf |
| 268 | [ rdf:type owl:Restriction ; | 264 | [ rdf:type owl:Restriction ; |
| 269 | owl:onClass ILAP:Project ; | 265 | owl:onClass ILAP:Project ; |
| ... | @@ -292,9 +288,9 @@ ILAP:Dependent_on_Shutdown | ... | @@ -292,9 +288,9 @@ ILAP:Dependent_on_Shutdown |
| 292 | rdfs:label "Dependent on Shutdown"^^xsd:string . | 288 | rdfs:label "Dependent on Shutdown"^^xsd:string . |
| 293 | 289 | ||
| 294 | ILAP:Discipline | 290 | ILAP:Discipline |
| 295 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; | 291 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; |
| 296 | rdfs:label "Discipline"^^xsd:string ; | 292 | rdfs:label "Discipline"^^xsd:string ; |
| 297 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS6811233> , owl:Thing . | 293 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS6811233> . |
| 298 | 294 | ||
| 299 | ILAP:Drilling_Shutdown | 295 | ILAP:Drilling_Shutdown |
| 300 | rdf:type ILAP:ShutdownContent ; | 296 | rdf:type ILAP:ShutdownContent ; |
| ... | @@ -313,15 +309,13 @@ ILAP:Equipment_Shutdown | ... | @@ -313,15 +309,13 @@ ILAP:Equipment_Shutdown |
| 313 | rdfs:label "Equipment Shutdown"^^xsd:string . | 309 | rdfs:label "Equipment Shutdown"^^xsd:string . |
| 314 | 310 | ||
| 315 | ILAP:ExternalReference | 311 | ILAP:ExternalReference |
| 316 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> ; | 312 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIdentification> , owl:Class ; |
| 317 | rdfs:label "External Reference"^^xsd:string ; | 313 | rdfs:label "External Reference"^^xsd:string ; |
| 318 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/page/RDS720105291> ; | 314 | + rdfs:subClassOf <http://posccaesar.org/rdl/page/RDS720105291> , owl:Thing ; |
| 319 | rdfs:subClassOf | 315 | rdfs:subClassOf |
| 320 | [ rdf:type owl:Restriction ; | 316 | [ rdf:type owl:Restriction ; |
| 321 | - owl:onDataRange xsd:string ; | 317 | + owl:allValuesFrom ILAP:Application ; |
| 322 | - owl:onProperty ILAP:hasObjectReferenceID ; | 318 | + owl:onProperty ILAP:hasReferenceApplication |
| 323 | - owl:qualifiedCardinality | ||
| 324 | - "1"^^xsd:nonNegativeInteger | ||
| 325 | ] ; | 319 | ] ; |
| 326 | rdfs:subClassOf | 320 | rdfs:subClassOf |
| 327 | [ rdf:type owl:Restriction ; | 321 | [ rdf:type owl:Restriction ; |
| ... | @@ -330,8 +324,10 @@ ILAP:ExternalReference | ... | @@ -330,8 +324,10 @@ ILAP:ExternalReference |
| 330 | ] ; | 324 | ] ; |
| 331 | rdfs:subClassOf | 325 | rdfs:subClassOf |
| 332 | [ rdf:type owl:Restriction ; | 326 | [ rdf:type owl:Restriction ; |
| 333 | - owl:allValuesFrom ILAP:Application ; | 327 | + owl:onDataRange xsd:string ; |
| 334 | - owl:onProperty ILAP:hasReferenceApplication | 328 | + owl:onProperty ILAP:hasObjectReferenceID ; |
| 329 | + owl:qualifiedCardinality | ||
| 330 | + "1"^^xsd:nonNegativeInteger | ||
| 335 | ] . | 331 | ] . |
| 336 | 332 | ||
| 337 | ILAP:Facility | 333 | ILAP:Facility |
| ... | @@ -344,14 +340,14 @@ ILAP:Field_Shutdown | ... | @@ -344,14 +340,14 @@ ILAP:Field_Shutdown |
| 344 | rdfs:label "Field Shutdown"^^xsd:string . | 340 | rdfs:label "Field Shutdown"^^xsd:string . |
| 345 | 341 | ||
| 346 | ILAP:FinishToFinish | 342 | ILAP:FinishToFinish |
| 347 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 343 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 348 | rdfs:label "Finish to finish"^^xsd:string ; | 344 | rdfs:label "Finish to finish"^^xsd:string ; |
| 349 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 345 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 350 | 346 | ||
| 351 | ILAP:FinishToStart | 347 | ILAP:FinishToStart |
| 352 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 348 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 353 | rdfs:label "Finish to start"^^xsd:string ; | 349 | rdfs:label "Finish to start"^^xsd:string ; |
| 354 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 350 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 355 | 351 | ||
| 356 | ILAP:FunctionalLocation | 352 | ILAP:FunctionalLocation |
| 357 | rdf:type owl:Class ; | 353 | rdf:type owl:Class ; |
| ... | @@ -402,7 +398,7 @@ ILAP:IndependentOfOperation | ... | @@ -402,7 +398,7 @@ ILAP:IndependentOfOperation |
| 402 | ILAP:Information | 398 | ILAP:Information |
| 403 | rdf:type owl:Class ; | 399 | rdf:type owl:Class ; |
| 404 | rdfs:label "Information"^^xsd:string ; | 400 | rdfs:label "Information"^^xsd:string ; |
| 405 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS11711488> , owl:Thing . | 401 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS11711488> . |
| 406 | 402 | ||
| 407 | ILAP:Knowledge | 403 | ILAP:Knowledge |
| 408 | rdf:type owl:Class ; | 404 | rdf:type owl:Class ; |
| ... | @@ -414,7 +410,7 @@ ILAP:LiftingOperation | ... | @@ -414,7 +410,7 @@ ILAP:LiftingOperation |
| 414 | rdfs:label "Lifting operation"^^xsd:string . | 410 | rdfs:label "Lifting operation"^^xsd:string . |
| 415 | 411 | ||
| 416 | ILAP:LiveSchedule | 412 | ILAP:LiveSchedule |
| 417 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 413 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 418 | rdfs:label "Live schedule"^^xsd:string ; | 414 | rdfs:label "Live schedule"^^xsd:string ; |
| 419 | rdfs:subClassOf ILAP:Schedule . | 415 | rdfs:subClassOf ILAP:Schedule . |
| 420 | 416 | ||
| ... | @@ -423,9 +419,9 @@ ILAP:Living_Quarter_Shutdown | ... | @@ -423,9 +419,9 @@ ILAP:Living_Quarter_Shutdown |
| 423 | rdfs:label "Living Quarter Shutdown"^^xsd:string . | 419 | rdfs:label "Living Quarter Shutdown"^^xsd:string . |
| 424 | 420 | ||
| 425 | ILAP:Location | 421 | ILAP:Location |
| 426 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> ; | 422 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfRelativeLocation> , owl:Class ; |
| 427 | rdfs:label "Location"^^xsd:string ; | 423 | rdfs:label "Location"^^xsd:string ; |
| 428 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS943618371> . | 424 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS943618371> , owl:Thing . |
| 429 | 425 | ||
| 430 | ILAP:LowCriticality | 426 | ILAP:LowCriticality |
| 431 | rdf:type ILAP:DegreeOfCriticality ; | 427 | rdf:type ILAP:DegreeOfCriticality ; |
| ... | @@ -436,7 +432,7 @@ ILAP:LowPriority | ... | @@ -436,7 +432,7 @@ ILAP:LowPriority |
| 436 | rdfs:label "Low priority"^^xsd:string . | 432 | rdfs:label "Low priority"^^xsd:string . |
| 437 | 433 | ||
| 438 | ILAP:Milestone | 434 | ILAP:Milestone |
| 439 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> , owl:Class ; | 435 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfEvent> ; |
| 440 | rdfs:label "Milestone"^^xsd:string . | 436 | rdfs:label "Milestone"^^xsd:string . |
| 441 | 437 | ||
| 442 | ILAP:MiniShutdown | 438 | ILAP:MiniShutdown |
| ... | @@ -446,7 +442,7 @@ ILAP:MiniShutdown | ... | @@ -446,7 +442,7 @@ ILAP:MiniShutdown |
| 446 | ILAP:Network | 442 | ILAP:Network |
| 447 | rdf:type owl:Class ; | 443 | rdf:type owl:Class ; |
| 448 | rdfs:label "Network"^^xsd:string ; | 444 | rdfs:label "Network"^^xsd:string ; |
| 449 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1293947091> , owl:Thing . | 445 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1293947091> . |
| 450 | 446 | ||
| 451 | ILAP:Non-Scheduled_Shutdown | 447 | ILAP:Non-Scheduled_Shutdown |
| 452 | rdf:type ILAP:ShutdownType ; | 448 | rdf:type ILAP:ShutdownType ; |
| ... | @@ -485,49 +481,49 @@ ILAP:PhysicalLocation | ... | @@ -485,49 +481,49 @@ ILAP:PhysicalLocation |
| 485 | rdfs:subClassOf ILAP:Location . | 481 | rdfs:subClassOf ILAP:Location . |
| 486 | 482 | ||
| 487 | ILAP:PlanClassifier | 483 | ILAP:PlanClassifier |
| 488 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; | 484 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; |
| 489 | rdfs:label "Plan classifier"^^xsd:string ; | 485 | rdfs:label "Plan classifier"^^xsd:string ; |
| 490 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS436990091> . | 486 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , owl:Thing . |
| 491 | 487 | ||
| 492 | ILAP:PlanContentType | 488 | ILAP:PlanContentType |
| 493 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; | 489 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; |
| 494 | rdfs:label "Plan content type"^^xsd:string ; | 490 | rdfs:label "Plan content type"^^xsd:string ; |
| 495 | - rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS892484261> . | 491 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS892484261> , ILAP:PlanClassifier . |
| 496 | 492 | ||
| 497 | ILAP:PlanContractType | 493 | ILAP:PlanContractType |
| 498 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; | 494 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; |
| 499 | rdfs:label "Plan contract type"^^xsd:string ; | 495 | rdfs:label "Plan contract type"^^xsd:string ; |
| 500 | rdfs:subClassOf ILAP:PlanClassifier . | 496 | rdfs:subClassOf ILAP:PlanClassifier . |
| 501 | 497 | ||
| 502 | ILAP:PlanExpenseType | 498 | ILAP:PlanExpenseType |
| 503 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; | 499 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; |
| 504 | rdfs:label "Plan expense type"^^xsd:string ; | 500 | rdfs:label "Plan expense type"^^xsd:string ; |
| 505 | rdfs:subClassOf ILAP:PlanClassifier . | 501 | rdfs:subClassOf ILAP:PlanClassifier . |
| 506 | 502 | ||
| 507 | ILAP:PlanGeoArea | 503 | ILAP:PlanGeoArea |
| 508 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> ; | 504 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfArrangedIndividual> , owl:Class ; |
| 509 | rdfs:label "Plan geographic area"^^xsd:string ; | 505 | rdfs:label "Plan geographic area"^^xsd:string ; |
| 510 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . | 506 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . |
| 511 | 507 | ||
| 512 | ILAP:PlanLevel | 508 | ILAP:PlanLevel |
| 513 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; | 509 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; |
| 514 | rdfs:label "Plan level"^^xsd:string ; | 510 | rdfs:label "Plan level"^^xsd:string ; |
| 515 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . | 511 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . |
| 516 | 512 | ||
| 517 | ILAP:PlanLifecycleStage | 513 | ILAP:PlanLifecycleStage |
| 518 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 514 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; |
| 519 | rdfs:label "Plan lifecycle stage"^^xsd:string ; | 515 | rdfs:label "Plan lifecycle stage"^^xsd:string ; |
| 520 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS436990091> , ILAP:PlanClassifier . | 516 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS436990091> . |
| 521 | 517 | ||
| 522 | ILAP:PlanObjectiveType | 518 | ILAP:PlanObjectiveType |
| 523 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> , owl:Class ; | 519 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfInformationRepresentation> ; |
| 524 | rdfs:label "Plan objective type"^^xsd:string ; | 520 | rdfs:label "Plan objective type"^^xsd:string ; |
| 525 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS43168516168> , ILAP:PlanClassifier . | 521 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS43168516168> . |
| 526 | 522 | ||
| 527 | ILAP:PlanProjectType | 523 | ILAP:PlanProjectType |
| 528 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> ; | 524 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfClassOfIndividual> , owl:Class ; |
| 529 | rdfs:label "Plan project type"^^xsd:string ; | 525 | rdfs:label "Plan project type"^^xsd:string ; |
| 530 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS10012097710> , ILAP:PlanClassifier . | 526 | + rdfs:subClassOf ILAP:PlanClassifier , <http://posccaesar.org/rdl/RDS10012097710> . |
| 531 | 527 | ||
| 532 | ILAP:PlannedActivity | 528 | ILAP:PlannedActivity |
| 533 | rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 529 | rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| ... | @@ -535,25 +531,23 @@ ILAP:PlannedActivity | ... | @@ -535,25 +531,23 @@ ILAP:PlannedActivity |
| 535 | rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; | 531 | rdfs:subClassOf ILAP:Activity , <http://data.posccaesar.org/rdl/RDS3149> ; |
| 536 | rdfs:subClassOf | 532 | rdfs:subClassOf |
| 537 | [ rdf:type owl:Restriction ; | 533 | [ rdf:type owl:Restriction ; |
| 538 | - owl:allValuesFrom ILAP:ResourceProfile ; | 534 | + owl:allValuesFrom ILAP:ActivityDependency ; |
| 539 | - owl:onProperty ILAP:hasActivityResourceProfile | 535 | + owl:onProperty ILAP:hasActivityPredecessor |
| 540 | ] ; | 536 | ] ; |
| 541 | rdfs:subClassOf | 537 | rdfs:subClassOf |
| 542 | [ rdf:type owl:Restriction ; | 538 | [ rdf:type owl:Restriction ; |
| 543 | - owl:maxQualifiedCardinality | 539 | + owl:allValuesFrom ILAP:Result ; |
| 544 | - "1"^^xsd:nonNegativeInteger ; | 540 | + owl:onProperty ILAP:hasActivityResult |
| 545 | - owl:onClass ILAP:ProjectExecutionPlan ; | ||
| 546 | - owl:onProperty ILAP:hasActivityPlan | ||
| 547 | ] ; | 541 | ] ; |
| 548 | rdfs:subClassOf | 542 | rdfs:subClassOf |
| 549 | [ rdf:type owl:Restriction ; | 543 | [ rdf:type owl:Restriction ; |
| 550 | - owl:allValuesFrom ILAP:Location ; | 544 | + owl:allValuesFrom ILAP:ResourceProfile ; |
| 551 | - owl:onProperty ILAP:hasActivityLocation | 545 | + owl:onProperty ILAP:hasActivityResourceProfile |
| 552 | ] ; | 546 | ] ; |
| 553 | rdfs:subClassOf | 547 | rdfs:subClassOf |
| 554 | [ rdf:type owl:Restriction ; | 548 | [ rdf:type owl:Restriction ; |
| 555 | - owl:onProperty ILAP:hasActivityDiscipline ; | 549 | + owl:allValuesFrom ILAP:Location ; |
| 556 | - owl:someValuesFrom ILAP:Discipline | 550 | + owl:onProperty ILAP:hasActivityLocation |
| 557 | ] ; | 551 | ] ; |
| 558 | rdfs:subClassOf | 552 | rdfs:subClassOf |
| 559 | [ rdf:type owl:Restriction ; | 553 | [ rdf:type owl:Restriction ; |
| ... | @@ -562,8 +556,10 @@ ILAP:PlannedActivity | ... | @@ -562,8 +556,10 @@ ILAP:PlannedActivity |
| 562 | ] ; | 556 | ] ; |
| 563 | rdfs:subClassOf | 557 | rdfs:subClassOf |
| 564 | [ rdf:type owl:Restriction ; | 558 | [ rdf:type owl:Restriction ; |
| 565 | - owl:allValuesFrom ILAP:ActivityWBS ; | 559 | + owl:maxQualifiedCardinality |
| 566 | - owl:onProperty ILAP:hasActivityWBSelement | 560 | + "1"^^xsd:nonNegativeInteger ; |
| 561 | + owl:onClass ILAP:ProjectExecutionPlan ; | ||
| 562 | + owl:onProperty ILAP:hasActivityPlan | ||
| 567 | ] ; | 563 | ] ; |
| 568 | rdfs:subClassOf | 564 | rdfs:subClassOf |
| 569 | [ rdf:type owl:Restriction ; | 565 | [ rdf:type owl:Restriction ; |
| ... | @@ -574,8 +570,8 @@ ILAP:PlannedActivity | ... | @@ -574,8 +570,8 @@ ILAP:PlannedActivity |
| 574 | ] ; | 570 | ] ; |
| 575 | rdfs:subClassOf | 571 | rdfs:subClassOf |
| 576 | [ rdf:type owl:Restriction ; | 572 | [ rdf:type owl:Restriction ; |
| 577 | - owl:allValuesFrom ILAP:ActivityDependency ; | 573 | + owl:onProperty ILAP:hasActivityDiscipline ; |
| 578 | - owl:onProperty ILAP:hasActivityPredecessor | 574 | + owl:someValuesFrom ILAP:Discipline |
| 579 | ] ; | 575 | ] ; |
| 580 | rdfs:subClassOf | 576 | rdfs:subClassOf |
| 581 | [ rdf:type owl:Restriction ; | 577 | [ rdf:type owl:Restriction ; |
| ... | @@ -584,8 +580,8 @@ ILAP:PlannedActivity | ... | @@ -584,8 +580,8 @@ ILAP:PlannedActivity |
| 584 | ] ; | 580 | ] ; |
| 585 | rdfs:subClassOf | 581 | rdfs:subClassOf |
| 586 | [ rdf:type owl:Restriction ; | 582 | [ rdf:type owl:Restriction ; |
| 587 | - owl:allValuesFrom ILAP:Result ; | 583 | + owl:allValuesFrom ILAP:ActivityWBS ; |
| 588 | - owl:onProperty ILAP:hasActivityResult | 584 | + owl:onProperty ILAP:hasActivityWBSelement |
| 589 | ] . | 585 | ] . |
| 590 | 586 | ||
| 591 | ILAP:PlannedMilestone | 587 | ILAP:PlannedMilestone |
| ... | @@ -613,18 +609,13 @@ ILAP:Programme | ... | @@ -613,18 +609,13 @@ ILAP:Programme |
| 613 | rdfs:subClassOf ILAP:Project . | 609 | rdfs:subClassOf ILAP:Project . |
| 614 | 610 | ||
| 615 | ILAP:Project | 611 | ILAP:Project |
| 616 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 612 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; |
| 617 | rdfs:label "Project"^^xsd:string ; | 613 | rdfs:label "Project"^^xsd:string ; |
| 618 | rdfs:subClassOf ILAP:Activity ; | 614 | rdfs:subClassOf ILAP:Activity ; |
| 619 | rdfs:subClassOf | 615 | rdfs:subClassOf |
| 620 | [ rdf:type owl:Restriction ; | 616 | [ rdf:type owl:Restriction ; |
| 621 | - owl:allValuesFrom ILAP:Project ; | 617 | + owl:allValuesFrom BRREG:OilCompany ; |
| 622 | - owl:onProperty ILAP:hasProjectSubproject | 618 | + owl:onProperty ILAP:hasProjectResponsible |
| 623 | - ] ; | ||
| 624 | - rdfs:subClassOf | ||
| 625 | - [ rdf:type owl:Restriction ; | ||
| 626 | - owl:allValuesFrom ILAP:ExternalReference ; | ||
| 627 | - owl:onProperty ILAP:hasExternalReference | ||
| 628 | ] ; | 619 | ] ; |
| 629 | rdfs:subClassOf | 620 | rdfs:subClassOf |
| 630 | [ rdf:type owl:Restriction ; | 621 | [ rdf:type owl:Restriction ; |
| ... | @@ -635,8 +626,13 @@ ILAP:Project | ... | @@ -635,8 +626,13 @@ ILAP:Project |
| 635 | ] ; | 626 | ] ; |
| 636 | rdfs:subClassOf | 627 | rdfs:subClassOf |
| 637 | [ rdf:type owl:Restriction ; | 628 | [ rdf:type owl:Restriction ; |
| 638 | - owl:allValuesFrom BRREG:OilCompany ; | 629 | + owl:allValuesFrom ILAP:ExternalReference ; |
| 639 | - owl:onProperty ILAP:hasProjectResponsible | 630 | + owl:onProperty ILAP:hasExternalReference |
| 631 | + ] ; | ||
| 632 | + rdfs:subClassOf | ||
| 633 | + [ rdf:type owl:Restriction ; | ||
| 634 | + owl:allValuesFrom ILAP:Project ; | ||
| 635 | + owl:onProperty ILAP:hasProjectSubproject | ||
| 640 | ] . | 636 | ] . |
| 641 | 637 | ||
| 642 | ILAP:ProjectExecutionPlan | 638 | ILAP:ProjectExecutionPlan |
| ... | @@ -645,13 +641,20 @@ ILAP:ProjectExecutionPlan | ... | @@ -645,13 +641,20 @@ ILAP:ProjectExecutionPlan |
| 645 | rdfs:subClassOf ILAP:Network ; | 641 | rdfs:subClassOf ILAP:Network ; |
| 646 | rdfs:subClassOf | 642 | rdfs:subClassOf |
| 647 | [ rdf:type owl:Restriction ; | 643 | [ rdf:type owl:Restriction ; |
| 648 | - owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; | 644 | + owl:maxQualifiedCardinality |
| 649 | - owl:onProperty ILAP:hasPlanAsset | 645 | + "1"^^xsd:nonNegativeInteger ; |
| 646 | + owl:onClass ILAP:Project ; | ||
| 647 | + owl:onProperty ILAP:hasPlanProject | ||
| 650 | ] ; | 648 | ] ; |
| 651 | rdfs:subClassOf | 649 | rdfs:subClassOf |
| 652 | [ rdf:type owl:Restriction ; | 650 | [ rdf:type owl:Restriction ; |
| 653 | - owl:onProperty ILAP:hasPlanGeoArea ; | 651 | + owl:allValuesFrom ILAP:PlanLifecycleStage ; |
| 654 | - owl:someValuesFrom ILAP:PlanGeoArea | 652 | + owl:onProperty ILAP:hasPlanLifecycleStage |
| 653 | + ] ; | ||
| 654 | + rdfs:subClassOf | ||
| 655 | + [ rdf:type owl:Restriction ; | ||
| 656 | + owl:onProperty ILAP:hasPlanLevel ; | ||
| 657 | + owl:someValuesFrom ILAP:PlanLevel | ||
| 655 | ] ; | 658 | ] ; |
| 656 | rdfs:subClassOf | 659 | rdfs:subClassOf |
| 657 | [ rdf:type owl:Restriction ; | 660 | [ rdf:type owl:Restriction ; |
| ... | @@ -660,30 +663,28 @@ ILAP:ProjectExecutionPlan | ... | @@ -660,30 +663,28 @@ ILAP:ProjectExecutionPlan |
| 660 | ] ; | 663 | ] ; |
| 661 | rdfs:subClassOf | 664 | rdfs:subClassOf |
| 662 | [ rdf:type owl:Restriction ; | 665 | [ rdf:type owl:Restriction ; |
| 663 | - owl:allValuesFrom BRREG:LegalEntity ; | 666 | + owl:allValuesFrom ILAP:ProjectExecutionPlan ; |
| 664 | - owl:onProperty ILAP:hasPlanResponsible | 667 | + owl:onProperty ILAP:hasPlanRollUpPlan |
| 665 | ] ; | 668 | ] ; |
| 666 | rdfs:subClassOf | 669 | rdfs:subClassOf |
| 667 | [ rdf:type owl:Restriction ; | 670 | [ rdf:type owl:Restriction ; |
| 668 | - owl:maxQualifiedCardinality | 671 | + owl:onProperty ILAP:hasPlanProjectType ; |
| 669 | - "1"^^xsd:nonNegativeInteger ; | 672 | + owl:someValuesFrom ILAP:PlanProjectType |
| 670 | - owl:onClass ILAP:Project ; | ||
| 671 | - owl:onProperty ILAP:hasPlanProject | ||
| 672 | ] ; | 673 | ] ; |
| 673 | rdfs:subClassOf | 674 | rdfs:subClassOf |
| 674 | [ rdf:type owl:Restriction ; | 675 | [ rdf:type owl:Restriction ; |
| 675 | - owl:allValuesFrom ILAP:ProjectExecutionPlan ; | 676 | + owl:allValuesFrom <http://ILAP_1.5/diskos#Asset> ; |
| 676 | - owl:onProperty ILAP:hasPlanRollUpPlan | 677 | + owl:onProperty ILAP:hasPlanAsset |
| 677 | ] ; | 678 | ] ; |
| 678 | rdfs:subClassOf | 679 | rdfs:subClassOf |
| 679 | [ rdf:type owl:Restriction ; | 680 | [ rdf:type owl:Restriction ; |
| 680 | - owl:allValuesFrom ILAP:ProjectExecutionPlan ; | 681 | + owl:allValuesFrom BRREG:LegalEntity ; |
| 681 | - owl:onProperty ILAP:hasPlanSubplan | 682 | + owl:onProperty ILAP:hasPlanResponsible |
| 682 | ] ; | 683 | ] ; |
| 683 | rdfs:subClassOf | 684 | rdfs:subClassOf |
| 684 | [ rdf:type owl:Restriction ; | 685 | [ rdf:type owl:Restriction ; |
| 685 | - owl:allValuesFrom ILAP:PlanLifecycleStage ; | 686 | + owl:onProperty ILAP:hasPlanGeoArea ; |
| 686 | - owl:onProperty ILAP:hasPlanLifecycleStage | 687 | + owl:someValuesFrom ILAP:PlanGeoArea |
| 687 | ] ; | 688 | ] ; |
| 688 | rdfs:subClassOf | 689 | rdfs:subClassOf |
| 689 | [ rdf:type owl:Restriction ; | 690 | [ rdf:type owl:Restriction ; |
| ... | @@ -692,8 +693,13 @@ ILAP:ProjectExecutionPlan | ... | @@ -692,8 +693,13 @@ ILAP:ProjectExecutionPlan |
| 692 | ] ; | 693 | ] ; |
| 693 | rdfs:subClassOf | 694 | rdfs:subClassOf |
| 694 | [ rdf:type owl:Restriction ; | 695 | [ rdf:type owl:Restriction ; |
| 695 | - owl:onProperty ILAP:hasPlanProjectType ; | 696 | + owl:onProperty ILAP:hasPlanContentType ; |
| 696 | - owl:someValuesFrom ILAP:PlanProjectType | 697 | + owl:someValuesFrom ILAP:PlanContentType |
| 698 | + ] ; | ||
| 699 | + rdfs:subClassOf | ||
| 700 | + [ rdf:type owl:Restriction ; | ||
| 701 | + owl:allValuesFrom ILAP:ProjectExecutionPlan ; | ||
| 702 | + owl:onProperty ILAP:hasPlanSubplan | ||
| 697 | ] ; | 703 | ] ; |
| 698 | rdfs:subClassOf | 704 | rdfs:subClassOf |
| 699 | [ rdf:type owl:Restriction ; | 705 | [ rdf:type owl:Restriction ; |
| ... | @@ -701,16 +707,6 @@ ILAP:ProjectExecutionPlan | ... | @@ -701,16 +707,6 @@ ILAP:ProjectExecutionPlan |
| 701 | "1"^^xsd:nonNegativeInteger ; | 707 | "1"^^xsd:nonNegativeInteger ; |
| 702 | owl:onClass ILAP:PlanLevel ; | 708 | owl:onClass ILAP:PlanLevel ; |
| 703 | owl:onProperty ILAP:hasPlanLevel | 709 | owl:onProperty ILAP:hasPlanLevel |
| 704 | - ] ; | ||
| 705 | - rdfs:subClassOf | ||
| 706 | - [ rdf:type owl:Restriction ; | ||
| 707 | - owl:onProperty ILAP:hasPlanLevel ; | ||
| 708 | - owl:someValuesFrom ILAP:PlanLevel | ||
| 709 | - ] ; | ||
| 710 | - rdfs:subClassOf | ||
| 711 | - [ rdf:type owl:Restriction ; | ||
| 712 | - owl:onProperty ILAP:hasPlanContentType ; | ||
| 713 | - owl:someValuesFrom ILAP:PlanContentType | ||
| 714 | ] . | 710 | ] . |
| 715 | 711 | ||
| 716 | ILAP:ProjectType | 712 | ILAP:ProjectType |
| ... | @@ -719,9 +715,9 @@ ILAP:ProjectType | ... | @@ -719,9 +715,9 @@ ILAP:ProjectType |
| 719 | rdfs:subClassOf owl:Thing . | 715 | rdfs:subClassOf owl:Thing . |
| 720 | 716 | ||
| 721 | ILAP:Regular8To16WorkingDayCalendar | 717 | ILAP:Regular8To16WorkingDayCalendar |
| 722 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> , owl:Class ; | 718 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#Scale> ; |
| 723 | rdfs:label "Regular8To16Working day calendar"^^xsd:string ; | 719 | rdfs:label "Regular8To16Working day calendar"^^xsd:string ; |
| 724 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS8945301> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS7014210> . | 720 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:WeekendsFreeCalendar , <http://posccaesar.org/rdl/RDS8945301> . |
| 725 | 721 | ||
| 726 | ILAP:RemovalOfBarriers | 722 | ILAP:RemovalOfBarriers |
| 727 | rdf:type ILAP:RiskType ; | 723 | rdf:type ILAP:RiskType ; |
| ... | @@ -732,9 +728,9 @@ ILAP:ReservoirDrillingOperation | ... | @@ -732,9 +728,9 @@ ILAP:ReservoirDrillingOperation |
| 732 | rdfs:label "Reservoir drilling operation"^^xsd:string . | 728 | rdfs:label "Reservoir drilling operation"^^xsd:string . |
| 733 | 729 | ||
| 734 | ILAP:Resource | 730 | ILAP:Resource |
| 735 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ; | 731 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; |
| 736 | rdfs:label "Resource"^^xsd:string ; | 732 | rdfs:label "Resource"^^xsd:string ; |
| 737 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS47466180194> , owl:Thing . | 733 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS47466180194> . |
| 738 | 734 | ||
| 739 | ILAP:ResourceEstimate | 735 | ILAP:ResourceEstimate |
| 740 | rdf:type owl:Class ; | 736 | rdf:type owl:Class ; |
| ... | @@ -742,14 +738,14 @@ ILAP:ResourceEstimate | ... | @@ -742,14 +738,14 @@ ILAP:ResourceEstimate |
| 742 | rdfs:subClassOf ILAP:ResourceStructure . | 738 | rdfs:subClassOf ILAP:ResourceStructure . |
| 743 | 739 | ||
| 744 | ILAP:ResourceProfile | 740 | ILAP:ResourceProfile |
| 745 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> , owl:Class ; | 741 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationRepresentation> ; |
| 746 | rdfs:label "Resource profile"^^xsd:string ; | 742 | rdfs:label "Resource profile"^^xsd:string ; |
| 747 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS1685084301> , owl:Thing . | 743 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS1685084301> . |
| 748 | 744 | ||
| 749 | ILAP:ResourceProfilePoint | 745 | ILAP:ResourceProfilePoint |
| 750 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> ; | 746 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfAbstractObject> , owl:Class ; |
| 751 | rdfs:label "resource Profile point"^^xsd:string ; | 747 | rdfs:label "resource Profile point"^^xsd:string ; |
| 752 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS2213258891> , owl:Thing . | 748 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS2213258891> . |
| 753 | 749 | ||
| 754 | ILAP:ResourceStructure | 750 | ILAP:ResourceStructure |
| 755 | rdf:type owl:Class ; | 751 | rdf:type owl:Class ; |
| ... | @@ -757,17 +753,17 @@ ILAP:ResourceStructure | ... | @@ -757,17 +753,17 @@ ILAP:ResourceStructure |
| 757 | rdfs:subClassOf ILAP:Network . | 753 | rdfs:subClassOf ILAP:Network . |
| 758 | 754 | ||
| 759 | ILAP:ResponsibleOrganization | 755 | ILAP:ResponsibleOrganization |
| 760 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> , owl:Class ; | 756 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfOrganization> ; |
| 761 | rdfs:label "Responsible organization"^^xsd:string ; | 757 | rdfs:label "Responsible organization"^^xsd:string ; |
| 762 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS282149> , owl:Thing . | 758 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS282149> . |
| 763 | 759 | ||
| 764 | ILAP:ResponsiblePerson | 760 | ILAP:ResponsiblePerson |
| 765 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> , owl:Class ; | 761 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfPerson> ; |
| 766 | rdfs:label "Responsible"^^xsd:string ; | 762 | rdfs:label "Responsible"^^xsd:string ; |
| 767 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS413954> , owl:Thing . | 763 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS413954> . |
| 768 | 764 | ||
| 769 | ILAP:Result | 765 | ILAP:Result |
| 770 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> ; | 766 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfIndividual> , owl:Class ; |
| 771 | rdfs:label "Result"^^xsd:string ; | 767 | rdfs:label "Result"^^xsd:string ; |
| 772 | rdfs:subClassOf owl:Thing . | 768 | rdfs:subClassOf owl:Thing . |
| 773 | 769 | ||
| ... | @@ -795,9 +791,9 @@ ILAP:Safety_Test_Shutdown | ... | @@ -795,9 +791,9 @@ ILAP:Safety_Test_Shutdown |
| 795 | rdfs:label "Safety Test Shutdown"^^xsd:string . | 791 | rdfs:label "Safety Test Shutdown"^^xsd:string . |
| 796 | 792 | ||
| 797 | ILAP:Schedule | 793 | ILAP:Schedule |
| 798 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; | 794 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; |
| 799 | rdfs:label "Scheduled Activity Network"^^xsd:string ; | 795 | rdfs:label "Scheduled Activity Network"^^xsd:string ; |
| 800 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS333764> , ILAP:Network ; | 796 | + rdfs:subClassOf ILAP:Network , <http://posccaesar.org/rdl/RDS333764> ; |
| 801 | rdfs:subClassOf | 797 | rdfs:subClassOf |
| 802 | [ rdf:type owl:Restriction ; | 798 | [ rdf:type owl:Restriction ; |
| 803 | owl:maxQualifiedCardinality | 799 | owl:maxQualifiedCardinality |
| ... | @@ -807,22 +803,22 @@ ILAP:Schedule | ... | @@ -807,22 +803,22 @@ ILAP:Schedule |
| 807 | ] . | 803 | ] . |
| 808 | 804 | ||
| 809 | ILAP:ScheduledActivity | 805 | ILAP:ScheduledActivity |
| 810 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; | 806 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; |
| 811 | rdfs:label "Activity in Network Schedule"^^xsd:string ; | 807 | rdfs:label "Activity in Network Schedule"^^xsd:string ; |
| 812 | rdfs:subClassOf ILAP:PlannedActivity ; | 808 | rdfs:subClassOf ILAP:PlannedActivity ; |
| 813 | rdfs:subClassOf | 809 | rdfs:subClassOf |
| 814 | [ rdf:type owl:Restriction ; | 810 | [ rdf:type owl:Restriction ; |
| 815 | owl:maxQualifiedCardinality | 811 | owl:maxQualifiedCardinality |
| 816 | "1"^^xsd:nonNegativeInteger ; | 812 | "1"^^xsd:nonNegativeInteger ; |
| 817 | - owl:onClass ILAP:Schedule ; | 813 | + owl:onClass ILAP:PlannedActivity ; |
| 818 | - owl:onProperty ILAP:hasActivitySchedule | 814 | + owl:onProperty ILAP:hasActivityInScheduleActivityInPlan |
| 819 | ] ; | 815 | ] ; |
| 820 | rdfs:subClassOf | 816 | rdfs:subClassOf |
| 821 | [ rdf:type owl:Restriction ; | 817 | [ rdf:type owl:Restriction ; |
| 822 | owl:maxQualifiedCardinality | 818 | owl:maxQualifiedCardinality |
| 823 | "1"^^xsd:nonNegativeInteger ; | 819 | "1"^^xsd:nonNegativeInteger ; |
| 824 | - owl:onClass ILAP:PlannedActivity ; | 820 | + owl:onClass ILAP:Schedule ; |
| 825 | - owl:onProperty ILAP:hasActivityInScheduleActivityInPlan | 821 | + owl:onProperty ILAP:hasActivitySchedule |
| 826 | ] . | 822 | ] . |
| 827 | 823 | ||
| 828 | ILAP:ScheduledMilestone | 824 | ILAP:ScheduledMilestone |
| ... | @@ -867,9 +863,9 @@ ILAP:Shutdown_not_evaluated | ... | @@ -867,9 +863,9 @@ ILAP:Shutdown_not_evaluated |
| 867 | rdfs:label "Shutdown not evaluated"^^xsd:string . | 863 | rdfs:label "Shutdown not evaluated"^^xsd:string . |
| 868 | 864 | ||
| 869 | ILAP:Source | 865 | ILAP:Source |
| 870 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> , owl:Class ; | 866 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInanimatePhysicalObject> ; |
| 871 | rdfs:label "Source"^^xsd:string ; | 867 | rdfs:label "Source"^^xsd:string ; |
| 872 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS13103560> , owl:Thing . | 868 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS13103560> . |
| 873 | 869 | ||
| 874 | ILAP:SourceSpecifiedUserField | 870 | ILAP:SourceSpecifiedUserField |
| 875 | rdf:type owl:Class ; | 871 | rdf:type owl:Class ; |
| ... | @@ -882,26 +878,26 @@ ILAP:SpecifiedUserField | ... | @@ -882,26 +878,26 @@ ILAP:SpecifiedUserField |
| 882 | rdfs:subClassOf ILAP:UserField . | 878 | rdfs:subClassOf ILAP:UserField . |
| 883 | 879 | ||
| 884 | ILAP:StartToFinish | 880 | ILAP:StartToFinish |
| 885 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 881 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 886 | rdfs:label "Start to finish"^^xsd:string ; | 882 | rdfs:label "Start to finish"^^xsd:string ; |
| 887 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 883 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 888 | 884 | ||
| 889 | ILAP:StartToStart | 885 | ILAP:StartToStart |
| 890 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> ; | 886 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfConnectionOfIndividual> , owl:Class ; |
| 891 | rdfs:label "Start to start"^^xsd:string ; | 887 | rdfs:label "Start to start"^^xsd:string ; |
| 892 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS44294438194> , ILAP:ActivityDependency . | 888 | + rdfs:subClassOf ILAP:ActivityDependency , <http://posccaesar.org/rdl/RDS44294438194> . |
| 893 | 889 | ||
| 894 | ILAP:Status | 890 | ILAP:Status |
| 895 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> ; | 891 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfStatus> , owl:Class ; |
| 896 | rdfs:label "Status"^^xsd:string ; | 892 | rdfs:label "Status"^^xsd:string ; |
| 897 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS427322951> . | 893 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS427322951> , owl:Thing . |
| 898 | 894 | ||
| 899 | ILAP:System_Shutdown | 895 | ILAP:System_Shutdown |
| 900 | rdf:type ILAP:ShutdownContent ; | 896 | rdf:type ILAP:ShutdownContent ; |
| 901 | rdfs:label "System Shutdown"^^xsd:string . | 897 | rdfs:label "System Shutdown"^^xsd:string . |
| 902 | 898 | ||
| 903 | ILAP:TargetSchedule | 899 | ILAP:TargetSchedule |
| 904 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; | 900 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; |
| 905 | rdfs:label "Target schedule"^^xsd:string ; | 901 | rdfs:label "Target schedule"^^xsd:string ; |
| 906 | rdfs:subClassOf ILAP:Schedule . | 902 | rdfs:subClassOf ILAP:Schedule . |
| 907 | 903 | ||
| ... | @@ -920,7 +916,7 @@ ILAP:UnitBased | ... | @@ -920,7 +916,7 @@ ILAP:UnitBased |
| 920 | rdfs:subClassOf ILAP:Resource . | 916 | rdfs:subClassOf ILAP:Resource . |
| 921 | 917 | ||
| 922 | ILAP:UserField | 918 | ILAP:UserField |
| 923 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> , owl:Class ; | 919 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#DocumentDefinition> ; |
| 924 | rdfs:label "User field"^^xsd:string ; | 920 | rdfs:label "User field"^^xsd:string ; |
| 925 | rdfs:subClassOf ILAP:Data ; | 921 | rdfs:subClassOf ILAP:Data ; |
| 926 | rdfs:subClassOf | 922 | rdfs:subClassOf |
| ... | @@ -934,7 +930,7 @@ ILAP:UserField | ... | @@ -934,7 +930,7 @@ ILAP:UserField |
| 934 | ILAP:Value | 930 | ILAP:Value |
| 935 | rdf:type owl:Class ; | 931 | rdf:type owl:Class ; |
| 936 | rdfs:label "Value"^^xsd:string ; | 932 | rdfs:label "Value"^^xsd:string ; |
| 937 | - rdfs:subClassOf <http://posccaesar.org/rdl/RDS7945844> , owl:Thing . | 933 | + rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS7945844> . |
| 938 | 934 | ||
| 939 | ILAP:VesselOperation | 935 | ILAP:VesselOperation |
| 940 | rdf:type ILAP:RiskType ; | 936 | rdf:type ILAP:RiskType ; |
| ... | @@ -949,9 +945,9 @@ ILAP:Water_Production_Shutdown | ... | @@ -949,9 +945,9 @@ ILAP:Water_Production_Shutdown |
| 949 | rdfs:label "Water Production Shutdown"^^xsd:string . | 945 | rdfs:label "Water Production Shutdown"^^xsd:string . |
| 950 | 946 | ||
| 951 | ILAP:WeekendsFreeCalendar | 947 | ILAP:WeekendsFreeCalendar |
| 952 | - rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> , owl:Class ; | 948 | + rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfInformationObject> ; |
| 953 | rdfs:label "Weekends free calendar"^^xsd:string ; | 949 | rdfs:label "Weekends free calendar"^^xsd:string ; |
| 954 | - rdfs:subClassOf ILAP:Calendar , <http://posccaesar.org/rdl/RDS7014210> . | 950 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS7014210> , ILAP:Calendar . |
| 955 | 951 | ||
| 956 | ILAP:Well_Transfer | 952 | ILAP:Well_Transfer |
| 957 | rdf:type ILAP:ShutdownContent ; | 953 | rdf:type ILAP:ShutdownContent ; |
| ... | @@ -963,18 +959,18 @@ ILAP:WorkOrder | ... | @@ -963,18 +959,18 @@ ILAP:WorkOrder |
| 963 | rdfs:subClassOf ILAP:WorkTask . | 959 | rdfs:subClassOf ILAP:WorkTask . |
| 964 | 960 | ||
| 965 | ILAP:WorkTask | 961 | ILAP:WorkTask |
| 966 | - rdf:type owl:Class , <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> ; | 962 | + rdf:type <http://rds.posccaesar.org/2008/02/OWL/ISO-15926-2_2003#ClassOfActivity> , owl:Class ; |
| 967 | rdfs:label "Work task"^^xsd:string ; | 963 | rdfs:label "Work task"^^xsd:string ; |
| 968 | - rdfs:subClassOf owl:Thing , <http://posccaesar.org/rdl/RDS3149> ; | 964 | + rdfs:subClassOf <http://posccaesar.org/rdl/RDS3149> , owl:Thing ; |
| 969 | rdfs:subClassOf | 965 | rdfs:subClassOf |
| 970 | [ rdf:type owl:Restriction ; | 966 | [ rdf:type owl:Restriction ; |
| 971 | - owl:onProperty ILAP:hasWorkTaskActivity ; | 967 | + owl:allValuesFrom BRREG:LegalEntity ; |
| 972 | - owl:someValuesFrom ILAP:Activity | 968 | + owl:onProperty ILAP:hasWorkTaskResponsible |
| 973 | ] ; | 969 | ] ; |
| 974 | rdfs:subClassOf | 970 | rdfs:subClassOf |
| 975 | [ rdf:type owl:Restriction ; | 971 | [ rdf:type owl:Restriction ; |
| 976 | - owl:allValuesFrom BRREG:LegalEntity ; | 972 | + owl:onProperty ILAP:hasWorkTaskActivity ; |
| 977 | - owl:onProperty ILAP:hasWorkTaskResponsible | 973 | + owl:someValuesFrom ILAP:Activity |
| 978 | ] . | 974 | ] . |
| 979 | 975 | ||
| 980 | ILAP:WorkTaskStatus | 976 | ILAP:WorkTaskStatus |
| ... | @@ -1070,7 +1066,7 @@ ILAP:hasActivityPhysicalPercentComplete | ... | @@ -1070,7 +1066,7 @@ ILAP:hasActivityPhysicalPercentComplete |
| 1070 | rdfs:range xsd:float . | 1066 | rdfs:range xsd:float . |
| 1071 | 1067 | ||
| 1072 | ILAP:hasActivityPlan | 1068 | ILAP:hasActivityPlan |
| 1073 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1069 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1074 | rdfs:domain ILAP:PlannedActivity ; | 1070 | rdfs:domain ILAP:PlannedActivity ; |
| 1075 | rdfs:label "has activity plan"^^xsd:string ; | 1071 | rdfs:label "has activity plan"^^xsd:string ; |
| 1076 | rdfs:range ILAP:ProjectExecutionPlan . | 1072 | rdfs:range ILAP:ProjectExecutionPlan . |
| ... | @@ -1118,7 +1114,7 @@ ILAP:hasActivityResponsibleOrganization | ... | @@ -1118,7 +1114,7 @@ ILAP:hasActivityResponsibleOrganization |
| 1118 | rdfs:range ILAP:ResponsibleOrganization . | 1114 | rdfs:range ILAP:ResponsibleOrganization . |
| 1119 | 1115 | ||
| 1120 | ILAP:hasActivityResponsiblePerson | 1116 | ILAP:hasActivityResponsiblePerson |
| 1121 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1117 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1122 | rdfs:domain ILAP:PlannedActivity ; | 1118 | rdfs:domain ILAP:PlannedActivity ; |
| 1123 | rdfs:label "has activity responsible"^^xsd:string ; | 1119 | rdfs:label "has activity responsible"^^xsd:string ; |
| 1124 | rdfs:range ILAP:ResponsiblePerson . | 1120 | rdfs:range ILAP:ResponsiblePerson . |
| ... | @@ -1153,7 +1149,7 @@ ILAP:hasActivityStatus | ... | @@ -1153,7 +1149,7 @@ ILAP:hasActivityStatus |
| 1153 | rdfs:range ILAP:Status . | 1149 | rdfs:range ILAP:Status . |
| 1154 | 1150 | ||
| 1155 | ILAP:hasActivitySuccessor | 1151 | ILAP:hasActivitySuccessor |
| 1156 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1152 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1157 | rdfs:domain ILAP:PlannedActivity ; | 1153 | rdfs:domain ILAP:PlannedActivity ; |
| 1158 | rdfs:label "has activity successor"^^xsd:string ; | 1154 | rdfs:label "has activity successor"^^xsd:string ; |
| 1159 | rdfs:range ILAP:ActivityDependency ; | 1155 | rdfs:range ILAP:ActivityDependency ; |
| ... | @@ -1214,7 +1210,7 @@ ILAP:hasCalendarDate | ... | @@ -1214,7 +1210,7 @@ ILAP:hasCalendarDate |
| 1214 | rdfs:label "has calendar date"^^xsd:string . | 1210 | rdfs:label "has calendar date"^^xsd:string . |
| 1215 | 1211 | ||
| 1216 | ILAP:hasCalendarFreePeriod | 1212 | ILAP:hasCalendarFreePeriod |
| 1217 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1213 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1218 | rdfs:domain ILAP:Calendar ; | 1214 | rdfs:domain ILAP:Calendar ; |
| 1219 | rdfs:label "has calendarcalendar free period"^^xsd:string ; | 1215 | rdfs:label "has calendarcalendar free period"^^xsd:string ; |
| 1220 | rdfs:range ILAP:CalendarFreePeriod . | 1216 | rdfs:range ILAP:CalendarFreePeriod . |
| ... | @@ -1497,7 +1493,7 @@ ILAP:hasPlanRegulator | ... | @@ -1497,7 +1493,7 @@ ILAP:hasPlanRegulator |
| 1497 | rdfs:subPropertyOf ILAP:hasPlanResponsible . | 1493 | rdfs:subPropertyOf ILAP:hasPlanResponsible . |
| 1498 | 1494 | ||
| 1499 | ILAP:hasPlanResponsible | 1495 | ILAP:hasPlanResponsible |
| 1500 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1496 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1501 | rdfs:domain ILAP:ResponsibleOrganization ; | 1497 | rdfs:domain ILAP:ResponsibleOrganization ; |
| 1502 | rdfs:label "has plan responsible"^^xsd:string . | 1498 | rdfs:label "has plan responsible"^^xsd:string . |
| 1503 | 1499 | ||
| ... | @@ -1690,7 +1686,7 @@ ILAP:hasShutdownType | ... | @@ -1690,7 +1686,7 @@ ILAP:hasShutdownType |
| 1690 | rdfs:range ILAP:ShutdownType . | 1686 | rdfs:range ILAP:ShutdownType . |
| 1691 | 1687 | ||
| 1692 | ILAP:hasSuccessorActivity | 1688 | ILAP:hasSuccessorActivity |
| 1693 | - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; | 1689 | + rdf:type owl:ObjectProperty , owl:TransitiveProperty ; |
| 1694 | rdfs:domain ILAP:ActivityDependency ; | 1690 | rdfs:domain ILAP:ActivityDependency ; |
| 1695 | rdfs:label "has successor activity "^^xsd:string ; | 1691 | rdfs:label "has successor activity "^^xsd:string ; |
| 1696 | rdfs:range ILAP:PlannedActivity ; | 1692 | rdfs:range ILAP:PlannedActivity ; |
| ... | @@ -1718,7 +1714,7 @@ ILAP:hasTimeNow | ... | @@ -1718,7 +1714,7 @@ ILAP:hasTimeNow |
| 1718 | rdf:type owl:DatatypeProperty ; | 1714 | rdf:type owl:DatatypeProperty ; |
| 1719 | rdfs:domain ILAP:Schedule ; | 1715 | rdfs:domain ILAP:Schedule ; |
| 1720 | rdfs:label "has time now"^^xsd:string ; | 1716 | rdfs:label "has time now"^^xsd:string ; |
| 1721 | - rdfs:range xsd:dateTime , xsd:date . | 1717 | + rdfs:range xsd:date , xsd:dateTime . |
| 1722 | 1718 | ||
| 1723 | ILAP:hasUserFieldName | 1719 | ILAP:hasUserFieldName |
| 1724 | rdf:type owl:DatatypeProperty ; | 1720 | rdf:type owl:DatatypeProperty ; | ... | ... |
| ... | @@ -9,25 +9,12 @@ | ... | @@ -9,25 +9,12 @@ |
| 9 | @prefix p1: <http://example.org/file1#> . | 9 | @prefix p1: <http://example.org/file1#> . |
| 10 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 10 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 11 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 11 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 12 | -@prefix riskfactor: <http://data.posccaesar.org/ilap/riskfactor/> . | 12 | +@prefix rdl: <http://data.posccaesar.org/rdl/> . |
| 13 | -@prefix shutdown: <http://data.posccaesar.org/ilap/shutdown/> . | ||
| 14 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 13 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 15 | 14 | ||
| 16 | : rdf:type owl:Ontology ; | 15 | : rdf:type owl:Ontology ; |
| 17 | owl:imports ILAP: , <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> . | 16 | owl:imports ILAP: , <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCS> . |
| 18 | 17 | ||
| 19 | -ILAP:SummerSystemShutdown | ||
| 20 | - rdf:type ILAP:Shutdown ; | ||
| 21 | - rdfs:label "Summer system shutdown"^^xsd:string ; | ||
| 22 | - ILAP:hasShutdownContent | ||
| 23 | - ILAP:System_Shutdown ; | ||
| 24 | - ILAP:hasShutdownPeriod | ||
| 25 | - "SD-2015"^^xsd:string ; | ||
| 26 | - ILAP:hasShutdownPriority | ||
| 27 | - ILAP:NormalPriority ; | ||
| 28 | - ILAP:hasShutdownType | ||
| 29 | - ILAP:Scheduled_Shutdown . | ||
| 30 | - | ||
| 31 | ILAP: | 18 | ILAP: |
| 32 | rdf:type owl:Ontology ; | 19 | rdf:type owl:Ontology ; |
| 33 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 20 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| ... | @@ -349,6 +336,18 @@ ILAP:StandardWorkWeekdayPeriod | ... | @@ -349,6 +336,18 @@ ILAP:StandardWorkWeekdayPeriod |
| 349 | rdf:type ILAP:CalendarWorkPeriodWeekRepeat ; | 336 | rdf:type ILAP:CalendarWorkPeriodWeekRepeat ; |
| 350 | rdfs:label "Standard work weekday period"^^xsd:string . | 337 | rdfs:label "Standard work weekday period"^^xsd:string . |
| 351 | 338 | ||
| 339 | +ILAP:SummerSystemShutdown | ||
| 340 | + rdf:type ILAP:Shutdown ; | ||
| 341 | + rdfs:label "Summer system shutdown"^^xsd:string ; | ||
| 342 | + ILAP:hasShutdownContent | ||
| 343 | + ILAP:System_Shutdown ; | ||
| 344 | + ILAP:hasShutdownPeriod | ||
| 345 | + "SD-2015"^^xsd:string ; | ||
| 346 | + ILAP:hasShutdownPriority | ||
| 347 | + ILAP:NormalPriority ; | ||
| 348 | + ILAP:hasShutdownType | ||
| 349 | + ILAP:Scheduled_Shutdown . | ||
| 350 | + | ||
| 352 | ILAP:Sunday | 351 | ILAP:Sunday |
| 353 | rdf:type ILAP:CalendarDay ; | 352 | rdf:type ILAP:CalendarDay ; |
| 354 | rdfs:label "Sunday"^^xsd:string . | 353 | rdfs:label "Sunday"^^xsd:string . |
| ... | @@ -447,7 +446,7 @@ ILAP:hasWorkTaskResponsible | ... | @@ -447,7 +446,7 @@ ILAP:hasWorkTaskResponsible |
| 447 | rdfs:label "Facility"^^xsd:string ; | 446 | rdfs:label "Facility"^^xsd:string ; |
| 448 | rdfs:subClassOf owl:Thing , ILAP:Facility . | 447 | rdfs:subClassOf owl:Thing , ILAP:Facility . |
| 449 | 448 | ||
| 450 | -<http://data.posccaesar.org/rdl/RDS282149> | 449 | +rdl:RDS282149 |
| 451 | rdf:type owl:Class ; | 450 | rdf:type owl:Class ; |
| 452 | rdfs:label "RDS282149"^^xsd:string ; | 451 | rdfs:label "RDS282149"^^xsd:string ; |
| 453 | rdfs:subClassOf owl:Thing , ILAP:ResponsibleOrganization . | 452 | rdfs:subClassOf owl:Thing , ILAP:ResponsibleOrganization . | ... | ... |
-
Please register or login to post a comment