SCHEMA_EP-ACTIVITY-v1.0.ttl 16.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
# Saved by TopBraid on Wed Aug 17 16:00:46 BST 2011
# baseURI: http://www.reportinghub.no/ep/schema/1.0/activity
# imports: http://www.linkedmodel.org/1.2/schema/vaem
# imports: http://www.reportinghub.no/ep/schema/1.0/organization
# imports: http://www.reportinghub.no/ep/schema/1.0/core
# imports: http://www.reportinghub.no/ep/schema/1.0/well
# imports: http://www.reportinghub.no/ep/schema/1.0/equipment
# imports: http://www.linkedmodel.org/1.1/schema/ordered

@prefix ep-activity:  <http://www.reportinghub.no/ep/schema/activity#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

<http://www.reportinghub.no/ep/schema/1.0/activity>
      rdf:type owl:Ontology ;
      owl:imports <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.linkedmodel.org/1.1/schema/ordered> , <http://www.linkedmodel.org/1.2/schema/vaem> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/organization> ;
      owl:versionInfo "0.1.0"^^xsd:string .

ep-activity:Activity
      rdf:type owl:Class ;
      rdfs:label "Activity"^^xsd:string ;
      rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:Activity ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#during>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:Activity ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#overlaps>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:Activity ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#before>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:Activity ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#after>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty ep-activity:startedAt
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty ep-activity:finishedAt
              ] .

ep-activity:ActivitySuccessType
      rdf:type rdfs:Class ;
      rdfs:label "activity success type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-activity:DailyDrillingActivity
      rdf:type owl:Class ;
      rdfs:label "Daily drilling activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:DrillingActivity ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#last>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#AllOrPartOfTheLifeOfAWellBore> ;
                owl:onProperty ep-activity:onWellBore
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:DrillingActivity ;
                owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:Activity ;
                owl:onProperty <http://www.reportinghub.no/ep/schema/core#hasPart>
              ] .

ep-activity:DailyProductionActivity
      rdf:type owl:Class ;
      rdfs:label "Daily production activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:ProductionActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:ProductionActivity ;
                owl:onProperty ep-activity:hasSubActivity
              ] .

ep-activity:Drill-bypass
      rdf:type ep-activity:WellBoreDrillingType ;
      rdfs:label "drill bypass"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:Drill-initial
      rdf:type ep-activity:WellBoreDrillingType ;
      rdfs:label "drill initial"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:Drill-re-entry
      rdf:type ep-activity:WellBoreDrillingType ;
      rdfs:label "drill re-entry"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:Drill-re-spud
      rdf:type ep-activity:WellBoreDrillingType ;
      rdfs:label "drill re-spud"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:Drill-redrill
      rdf:type ep-activity:WellBoreDrillingType ;
      rdfs:label "redrill"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:Drill-sidetrack
      rdf:type ep-activity:WellBoreDrillingType ;
      rdfs:label "drill sidetrack"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity
      rdf:type owl:Class ;
      rdfs:label "Drilling activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:DrillingActivity-circulation_loss
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity circulation loss"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-equipment_failure
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity equipment failure"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-equipment_hang
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity equipment hang"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-injury
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity injury"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-kick
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity operation kick"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-mud_loss
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity mud loss"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-operation_failed
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity operation failed"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-stuck_equipment
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity stuck equipment"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivity-success
      rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
      rdfs:label "drilling activity success"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity .

ep-activity:DrillingActivityOutcomeType
      rdf:type rdfs:Class ;
      rdfs:label "drilling activity outcome type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-activity:EquipmentFailureAndRepair
      rdf:type owl:Class ;
      rdfs:label "equipment failure and repair"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:FailedActivity
      rdf:type ep-activity:ActivitySuccessType , owl:Class ;
      rdfs:label "failed activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity ;
      owl:disjointWith ep-activity:SuccessfulActivity .

ep-activity:FluidActivity
      rdf:type owl:Class ;
      rdfs:label "fluid activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:FormationIntegrityTest
      rdf:type ep-activity:PressureTestType , owl:Class ;
      rdfs:label "formation integrity test"^^xsd:string ;
      rdfs:subClassOf ep-activity:WellBorePressureTest ;
      owl:disjointWith ep-activity:LeakOffTest .

ep-activity:LeakOffTest
      rdf:type ep-activity:PressureTestType , owl:Class ;
      rdfs:label "leak-off test"^^xsd:string ;
      rdfs:subClassOf ep-activity:WellBorePressureTest ;
      owl:disjointWith ep-activity:FormationIntegrityTest .

ep-activity:LithologyAndShowsObservation
      rdf:type owl:Class ;
      rdfs:label "lithology and shows observation"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:MonthlyDrillingActivity
      rdf:type owl:Class ;
      rdfs:label "Weekly drilling activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:WeeklyDrillingActivity ;
                owl:onProperty ep-activity:hasSubActivity
              ] .

ep-activity:MonthlyProductionActivity
      rdf:type owl:Class ;
      rdfs:label "Monthly production activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:ProductionActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:WeeklyProductionActivity ;
                owl:onProperty ep-activity:hasSubActivity
              ] .

ep-activity:OffshoreActivity
      rdf:type owl:Class ;
      rdfs:label "Offshore activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:OffshoreWellActivity
      rdf:type owl:Class ;
      rdfs:label "Offshore well activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:OffshoreActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#Well> ;
                owl:onProperty ep-activity:onWell
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:cardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty ep-activity:onRig
              ] ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:cardinality "1"^^xsd:nonNegativeInteger ;
                owl:onProperty ep-activity:onWell
              ] .

ep-activity:PorePressureDetermination
      rdf:type owl:Class ;
      rdfs:label "pore pressure determination"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:PorePressureDeterminationType
      rdf:type rdfs:Class ;
      rdfs:label "pore pressure determination type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-activity:PorePressureEstimation
      rdf:type owl:Class , ep-activity:PorePressureDeterminationType ;
      rdfs:label "pore pressure estimation"^^xsd:string ;
      rdfs:subClassOf ep-activity:PorePressureDetermination ;
      owl:disjointWith ep-activity:PorePressureMeasurement .

ep-activity:PorePressureMeasurement
      rdf:type owl:Class , ep-activity:PorePressureDeterminationType ;
      rdfs:label "pore pressure measurement"^^xsd:string ;
      rdfs:subClassOf ep-activity:PorePressureDetermination ;
      owl:disjointWith ep-activity:PorePressureEstimation .

ep-activity:PressureTestType
      rdf:type rdfs:Class ;
      rdfs:label "pressure test type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-activity:ProductionActivity
      rdf:type owl:Class ;
      rdfs:label "Production activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:SuccessfulActivity
      rdf:type ep-activity:ActivitySuccessType , owl:Class ;
      rdfs:label "successful activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity ;
      owl:disjointWith ep-activity:FailedActivity .

ep-activity:WeeklyDrillingActivity
      rdf:type owl:Class ;
      rdfs:label "Weekly drilling activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:DrillingActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:DailyDrillingActivity ;
                owl:onProperty ep-activity:hasSubActivity
              ] .

ep-activity:WeeklyProductionActivity
      rdf:type owl:Class ;
      rdfs:label "Weekly production activity"^^xsd:string ;
      rdfs:subClassOf ep-activity:ProductionActivity ;
      rdfs:subClassOf
              [ rdf:type owl:Restriction ;
                owl:allValuesFrom ep-activity:DailyProductionActivity ;
                owl:onProperty ep-activity:hasSubActivity
              ] .

ep-activity:WellBoreDirectionalSurvey
      rdf:type owl:Class ;
      rdfs:label "well bore directional survey"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:WellBoreDrillingType
      rdf:type rdfs:Class ;
      rdfs:label "well bore drilling type"^^xsd:string ;
      rdfs:subClassOf owl:Class .

ep-activity:WellBoreLog
      rdf:type owl:Class ;
      rdfs:label "well bore log"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:WellBorePressureTest
      rdf:type owl:Class ;
      rdfs:label "well bore pressure test"^^xsd:string ;
      rdfs:subClassOf ep-activity:Activity .

ep-activity:createdAt
      rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
      rdfs:label "created at"^^xsd:string ;
      rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .

ep-activity:drillingContractor
      rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
      rdfs:domain ep-activity:DrillingActivity ;
      rdfs:label "drilling contractor"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .

ep-activity:drillingOperator
      rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
      rdfs:domain ep-activity:DrillingActivity ;
      rdfs:label "drilling operator"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .

ep-activity:failedEquipment
      rdf:type owl:ObjectProperty ;
      rdfs:domain ep-activity:EquipmentFailureAndRepair ;
      rdfs:label "failed equipment"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfEquipment> .

ep-activity:finishedAt
      rdf:type owl:DatatypeProperty ;
      rdfs:label "finished at"^^xsd:string ;
      rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .

ep-activity:hasSubActivity
      rdf:type owl:ObjectProperty ;
      rdfs:label "has sub activity"^^xsd:string .

ep-activity:onRig
      rdf:type owl:ObjectProperty ;
      rdfs:label "on rig"^^xsd:string .

ep-activity:onWell
      rdf:type owl:ObjectProperty ;
      rdfs:label "on well"^^xsd:string .

ep-activity:onWellBore
      rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
      rdfs:label "on WellBore"^^xsd:string .

ep-activity:reportOn
      rdf:type owl:ObjectProperty ;
      rdfs:label "report on"^^xsd:string .

ep-activity:serviceCompany
      rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
      rdfs:domain ep-activity:Activity ;
      rdfs:label "service company"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .

ep-activity:startedAt
      rdf:type owl:DatatypeProperty ;
      rdfs:label "started at"^^xsd:string ;
      rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .

ep-activity:wellBoreDrillingType
      rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
      rdfs:domain ep-activity:DrillingActivity ;
      rdfs:label "has sub activity"^^xsd:string ;
      rdfs:range ep-activity:WellBoreDrillingType ;
      rdfs:subPropertyOf rdf:type .

ep-activity:wellBoreLoggingTool
      rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
      rdfs:domain ep-activity:WellBoreLog ;
      rdfs:label "well bore logging tool"^^xsd:string ;
      rdfs:range <http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfEquipment> .