David Price

Many updates from DDR Mapping work complete.

1 -# Saved by TopBraid on Sat Aug 20 18:57:39 BST 2011 1 +# Saved by TopBraid on Thu Sep 15 15:42:36 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/facility 2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/facility
3 # imports: http://www.reportinghub.no/ep/schema/1.0/core 3 # imports: http://www.reportinghub.no/ep/schema/1.0/core
4 4
5 +@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
5 @prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . 6 @prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> . 7 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @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#> .
...@@ -16,15 +17,10 @@ ...@@ -16,15 +17,10 @@
16 owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; 17 owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ;
17 owl:versionInfo "0.1.0"^^xsd:string . 18 owl:versionInfo "0.1.0"^^xsd:string .
18 19
19 -ep-fac:AllOrPartOfTheLifeOfARig
20 - rdf:type owl:Class ;
21 - rdfs:label "all or part of the life of a rig"^^xsd:string ;
22 - rdfs:subClassOf ep-fac:Facility .
23 -
24 ep-fac:Facility 20 ep-fac:Facility
25 rdf:type owl:Class ; 21 rdf:type owl:Class ;
26 rdfs:label "facility"^^xsd:string ; 22 rdfs:label "facility"^^xsd:string ;
27 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . 23 + rdfs:subClassOf ep-core:PhysicalObject .
28 24
29 ep-fac:FixedFacility 25 ep-fac:FixedFacility
30 rdf:type owl:DeprecatedClass ; 26 rdf:type owl:DeprecatedClass ;
...@@ -36,23 +32,28 @@ ep-fac:FixedOrMoveableRigType ...@@ -36,23 +32,28 @@ ep-fac:FixedOrMoveableRigType
36 rdfs:subClassOf owl:Class . 32 rdfs:subClassOf owl:Class .
37 33
38 ep-fac:FixedRig 34 ep-fac:FixedRig
39 - rdf:type owl:Class , ep-fac:FixedOrMoveableRigType ; 35 + rdf:type ep-fac:FixedOrMoveableRigType , owl:Class ;
40 rdfs:label "fixed rig"^^xsd:string ; 36 rdfs:label "fixed rig"^^xsd:string ;
41 - rdfs:subClassOf ep-fac:Rig , ep-fac:FixedFacility . 37 + rdfs:subClassOf ep-fac:Rig-WholeLife , ep-fac:FixedFacility .
42 38
43 ep-fac:MoveableFacility 39 ep-fac:MoveableFacility
44 rdf:type owl:Class ; 40 rdf:type owl:Class ;
45 rdfs:subClassOf ep-fac:Facility . 41 rdfs:subClassOf ep-fac:Facility .
46 42
47 ep-fac:MoveableRig 43 ep-fac:MoveableRig
48 - rdf:type owl:Class , ep-fac:FixedOrMoveableRigType ; 44 + rdf:type ep-fac:FixedOrMoveableRigType , owl:Class ;
49 rdfs:label "moveable rig"^^xsd:string ; 45 rdfs:label "moveable rig"^^xsd:string ;
50 - rdfs:subClassOf ep-fac:Rig , ep-fac:MoveableFacility . 46 + rdfs:subClassOf ep-fac:Rig-WholeLife , ep-fac:MoveableFacility .
51 47
52 ep-fac:Rig 48 ep-fac:Rig
53 rdf:type owl:Class ; 49 rdf:type owl:Class ;
50 + rdfs:label "all or part of the life of a rig"^^xsd:string ;
51 + rdfs:subClassOf ep-fac:Facility .
52 +
53 +ep-fac:Rig-WholeLife
54 + rdf:type owl:Class ;
54 rdfs:label "rig"^^xsd:string ; 55 rdfs:label "rig"^^xsd:string ;
55 - rdfs:subClassOf ep-fac:AllOrPartOfTheLifeOfARig . 56 + rdfs:subClassOf ep-fac:Rig .
56 57
57 ep-fac:SubSurfaceFixedFacility 58 ep-fac:SubSurfaceFixedFacility
58 rdf:type owl:Class ; 59 rdf:type owl:Class ;
...@@ -62,7 +63,13 @@ ep-fac:SurfaceFixedFacility ...@@ -62,7 +63,13 @@ ep-fac:SurfaceFixedFacility
62 rdf:type owl:Class ; 63 rdf:type owl:Class ;
63 rdfs:subClassOf ep-fac:FixedFacility . 64 rdfs:subClassOf ep-fac:FixedFacility .
64 65
65 -ep-fac:TemporalPartOfARig 66 +ep-fac:SurroundingWater
66 rdf:type owl:Class ; 67 rdf:type owl:Class ;
67 - rdfs:label "temporal part of a rig"^^xsd:string ; 68 + rdfs:label "surrounding water"^^xsd:string ;
68 - rdfs:subClassOf ep-fac:AllOrPartOfTheLifeOfARig . 69 + rdfs:subClassOf ep-core:PhysicalObject .
70 +
71 +ep-fac:depthOfSurroundingWater
72 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
73 + rdfs:domain ep-fac:SurroundingWater ;
74 + rdfs:label "depth of surrounding water"^^xsd:string ;
75 + rdfs:range ep-core:Length .
......
1 -# Saved by TopBraid on Sat Aug 20 18:58:12 BST 2011 1 +# Saved by TopBraid on Sun Sep 11 08:18:34 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/organization 2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/organization
3 # imports: http://www.reportinghub.no/ep/schema/1.0/core 3 # imports: http://www.reportinghub.no/ep/schema/1.0/core
4 4
...@@ -16,9 +16,14 @@ ...@@ -16,9 +16,14 @@
16 ep-org:Company 16 ep-org:Company
17 rdf:type owl:Class ; 17 rdf:type owl:Class ;
18 rdfs:label "Company"^^xsd:string ; 18 rdfs:label "Company"^^xsd:string ;
19 - rdfs:subClassOf ep-org:Organization . 19 + rdfs:subClassOf ep-org:Organization-WholeLife .
20 20
21 ep-org:Organization 21 ep-org:Organization
22 rdf:type owl:Class ; 22 rdf:type owl:Class ;
23 rdfs:label "organization"^^xsd:string ; 23 rdfs:label "organization"^^xsd:string ;
24 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . 24 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> .
25 +
26 +ep-org:Organization-WholeLife
27 + rdf:type owl:Class ;
28 + rdfs:label "organization - whole life"^^xsd:string ;
29 + rdfs:subClassOf ep-org:Organization .
......
1 -# Saved by TopBraid on Thu Aug 11 18:17:22 BST 2011 1 +# Saved by TopBraid on Thu Sep 15 15:49:34 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/report 2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/report
3 # imports: http://www.reportinghub.no/ep/schema/1.0/well 3 # imports: http://www.reportinghub.no/ep/schema/1.0/well
4 # imports: http://www.reportinghub.no/ep/schema/1.0/core 4 # imports: http://www.reportinghub.no/ep/schema/1.0/core
5 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment 5 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment
6 # imports: http://www.reportinghub.no/ep/schema/1.0/activity 6 # imports: http://www.reportinghub.no/ep/schema/1.0/activity
7 7
8 +@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
8 @prefix ep-report: <http://www.reportinghub.no/ep/schema/report#> . 9 @prefix ep-report: <http://www.reportinghub.no/ep/schema/report#> .
9 @prefix owl: <http://www.w3.org/2002/07/owl#> . 10 @prefix owl: <http://www.w3.org/2002/07/owl#> .
10 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 11 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
...@@ -39,3 +40,23 @@ ep-report:PreliminaryDailyDrillingReport ...@@ -39,3 +40,23 @@ ep-report:PreliminaryDailyDrillingReport
39 ep-report:Report 40 ep-report:Report
40 rdf:type owl:Class ; 41 rdf:type owl:Class ;
41 rdfs:subClassOf owl:Thing . 42 rdfs:subClassOf owl:Thing .
43 +
44 +ep-report:createdAt
45 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
46 + rdfs:domain ep-report:Report ;
47 + rdfs:label "created at"^^xsd:string .
48 +
49 +ep-report:dailyDrillingReportNumber
50 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
51 + rdfs:domain ep-report:DailyDrillingReport ;
52 + rdfs:label "daily drilling report number"^^xsd:string .
53 +
54 +ep-report:hasContent
55 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
56 + rdfs:domain ep-report:Report ;
57 + rdfs:label "has content"^^xsd:string .
58 +
59 +ep-report:reportOn
60 + rdf:type owl:ObjectProperty ;
61 + rdfs:domain ep-report:Report ;
62 + rdfs:label "report on"^^xsd:string .
......