Showing
9 changed files
with
125 additions
and
18 deletions
1 | -# Saved by TopBraid on Sat Sep 24 18:23:53 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 07 17:58:08 BST 2011 |
2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment | 2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment |
3 | # imports: http://www.reportinghub.no/ep/schema/1.0/organization | 3 | # imports: http://www.reportinghub.no/ep/schema/1.0/organization |
4 | # imports: http://www.reportinghub.no/ep/schema/1.0/core | 4 | # imports: http://www.reportinghub.no/ep/schema/1.0/core |
... | @@ -6,6 +6,7 @@ | ... | @@ -6,6 +6,7 @@ |
6 | 6 | ||
7 | @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . | 7 | @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . |
8 | @prefix ep-eqt: <http://www.reportinghub.no/ep/schema/equipment#> . | 8 | @prefix ep-eqt: <http://www.reportinghub.no/ep/schema/equipment#> . |
9 | +@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . | ||
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#> . |
11 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 12 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
... | @@ -69,6 +70,16 @@ ep-eqt:ClassOfSupplyDefinedByAManufacturer | ... | @@ -69,6 +70,16 @@ ep-eqt:ClassOfSupplyDefinedByAManufacturer |
69 | rdfs:label "manufacturer model"^^xsd:string ; | 70 | rdfs:label "manufacturer model"^^xsd:string ; |
70 | rdfs:subClassOf owl:Class . | 71 | rdfs:subClassOf owl:Class . |
71 | 72 | ||
73 | +ep-eqt:Compressor | ||
74 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; | ||
75 | + rdfs:label "compressor"^^xsd:string ; | ||
76 | + rdfs:subClassOf ep-eqt:Equipment . | ||
77 | + | ||
78 | +ep-eqt:Controller-lift | ||
79 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; | ||
80 | + rdfs:label "controller - lift"^^xsd:string ; | ||
81 | + rdfs:subClassOf ep-eqt:Equipment . | ||
82 | + | ||
72 | ep-eqt:DrillBit | 83 | ep-eqt:DrillBit |
73 | rdf:type owl:Class ; | 84 | rdf:type owl:Class ; |
74 | rdfs:label "drill bit"^^xsd:string ; | 85 | rdfs:label "drill bit"^^xsd:string ; |
... | @@ -134,12 +145,32 @@ ep-eqt:Liner | ... | @@ -134,12 +145,32 @@ ep-eqt:Liner |
134 | rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 145 | rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
135 | owl:disjointWith ep-eqt:Casing , ep-eqt:Tubing . | 146 | owl:disjointWith ep-eqt:Casing , ep-eqt:Tubing . |
136 | 147 | ||
148 | +ep-eqt:Manifold-injection | ||
149 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; | ||
150 | + rdfs:label "manifold - injection"^^xsd:string ; | ||
151 | + rdfs:subClassOf ep-eqt:Equipment . | ||
152 | + | ||
153 | +ep-eqt:Manifold-production | ||
154 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; | ||
155 | + rdfs:label "manifold - production"^^xsd:string ; | ||
156 | + rdfs:subClassOf ep-eqt:Equipment . | ||
157 | + | ||
137 | ep-eqt:ProductionCasing | 158 | ep-eqt:ProductionCasing |
138 | rdf:type ep-eqt:CasingRoleType , owl:Class ; | 159 | rdf:type ep-eqt:CasingRoleType , owl:Class ; |
139 | rdfs:label "production casing"^^xsd:string ; | 160 | rdfs:label "production casing"^^xsd:string ; |
140 | rdfs:subClassOf ep-eqt:Casing ; | 161 | rdfs:subClassOf ep-eqt:Casing ; |
141 | owl:disjointWith ep-eqt:TopCasing , ep-eqt:IntermediateCasing . | 162 | owl:disjointWith ep-eqt:TopCasing , ep-eqt:IntermediateCasing . |
142 | 163 | ||
164 | +ep-eqt:Separator | ||
165 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; | ||
166 | + rdfs:label "separator"^^xsd:string ; | ||
167 | + rdfs:subClassOf ep-eqt:Equipment . | ||
168 | + | ||
169 | +ep-eqt:Tank | ||
170 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; | ||
171 | + rdfs:label "tank"^^xsd:string ; | ||
172 | + rdfs:subClassOf ep-eqt:Equipment . | ||
173 | + | ||
143 | ep-eqt:TopCasing | 174 | ep-eqt:TopCasing |
144 | rdf:type ep-eqt:CasingRoleType , owl:Class ; | 175 | rdf:type ep-eqt:CasingRoleType , owl:Class ; |
145 | rdfs:label "top casing"^^xsd:string ; | 176 | rdfs:label "top casing"^^xsd:string ; | ... | ... |
1 | -# Saved by TopBraid on Tue Sep 27 11:16:52 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 07 18:54:28 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 | ||
... | @@ -17,33 +17,78 @@ | ... | @@ -17,33 +17,78 @@ |
17 | owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; | 17 | owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; |
18 | owl:versionInfo "0.1.0"^^xsd:string . | 18 | owl:versionInfo "0.1.0"^^xsd:string . |
19 | 19 | ||
20 | +ep-fac:Completion | ||
21 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
22 | + rdfs:label "completion"^^xsd:string ; | ||
23 | + rdfs:subClassOf ep-fac:Facility . | ||
24 | + | ||
20 | ep-fac:Facility | 25 | ep-fac:Facility |
21 | rdf:type owl:Class ; | 26 | rdf:type owl:Class ; |
22 | rdfs:label "facility"^^xsd:string ; | 27 | rdfs:label "facility"^^xsd:string ; |
23 | rdfs:subClassOf ep-core:PhysicalObject . | 28 | rdfs:subClassOf ep-core:PhysicalObject . |
24 | 29 | ||
30 | +ep-fac:Field | ||
31 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
32 | + rdfs:label "field"^^xsd:string ; | ||
33 | + rdfs:subClassOf ep-fac:Facility . | ||
34 | + | ||
25 | ep-fac:FixedFacility | 35 | ep-fac:FixedFacility |
26 | rdf:type owl:DeprecatedClass ; | 36 | rdf:type owl:DeprecatedClass ; |
27 | rdfs:subClassOf ep-fac:Facility . | 37 | rdfs:subClassOf ep-fac:Facility . |
28 | 38 | ||
29 | ep-fac:FixedOrMoveableRigType | 39 | ep-fac:FixedOrMoveableRigType |
30 | rdf:type rdfs:Class ; | 40 | rdf:type rdfs:Class ; |
31 | - rdfs:label "fixed of moveable rig type"^^xsd:string ; | 41 | + rdfs:label "fixed or moveable rig type"^^xsd:string ; |
32 | rdfs:subClassOf owl:Class . | 42 | rdfs:subClassOf owl:Class . |
33 | 43 | ||
34 | ep-fac:FixedRig | 44 | ep-fac:FixedRig |
35 | - rdf:type ep-fac:FixedOrMoveableRigType , owl:Class ; | 45 | + rdf:type owl:Class , ep-fac:FixedOrMoveableRigType ; |
36 | rdfs:label "fixed rig"^^xsd:string ; | 46 | rdfs:label "fixed rig"^^xsd:string ; |
37 | - rdfs:subClassOf ep-fac:FixedFacility , ep-fac:Rig . | 47 | + rdfs:subClassOf ep-fac:Rig , ep-fac:FixedFacility . |
48 | + | ||
49 | +ep-fac:Flowline | ||
50 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
51 | + rdfs:label "flowline"^^xsd:string ; | ||
52 | + rdfs:subClassOf ep-fac:Facility . | ||
53 | + | ||
54 | +ep-fac:Flowline-production | ||
55 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
56 | + rdfs:label "flowline - production"^^xsd:string ; | ||
57 | + rdfs:subClassOf ep-fac:Flowline . | ||
58 | + | ||
59 | +ep-fac:Lease | ||
60 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
61 | + rdfs:label "lease"^^xsd:string ; | ||
62 | + rdfs:subClassOf ep-fac:Facility . | ||
38 | 63 | ||
39 | ep-fac:MoveableFacility | 64 | ep-fac:MoveableFacility |
40 | rdf:type owl:Class ; | 65 | rdf:type owl:Class ; |
41 | rdfs:subClassOf ep-fac:Facility . | 66 | rdfs:subClassOf ep-fac:Facility . |
42 | 67 | ||
43 | ep-fac:MoveableRig | 68 | ep-fac:MoveableRig |
44 | - rdf:type ep-fac:FixedOrMoveableRigType , owl:Class ; | 69 | + rdf:type owl:Class , ep-fac:FixedOrMoveableRigType ; |
45 | rdfs:label "moveable rig"^^xsd:string ; | 70 | rdfs:label "moveable rig"^^xsd:string ; |
46 | - rdfs:subClassOf ep-fac:MoveableFacility , ep-fac:Rig . | 71 | + rdfs:subClassOf ep-fac:Rig , ep-fac:MoveableFacility . |
72 | + | ||
73 | +ep-fac:Platform | ||
74 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
75 | + rdfs:label "platform"^^xsd:string ; | ||
76 | + rdfs:subClassOf ep-fac:Facility . | ||
77 | + | ||
78 | +ep-fac:ProductionFacility | ||
79 | + rdf:type owl:Class ; | ||
80 | + rdfs:label "production facility"^^xsd:string ; | ||
81 | + rdfs:subClassOf ep-fac:Facility . | ||
82 | + | ||
83 | +ep-fac:ProductionFacilityType | ||
84 | + rdf:type rdfs:Class ; | ||
85 | + rdfs:label "production facility type"^^xsd:string ; | ||
86 | + rdfs:subClassOf owl:Class . | ||
87 | + | ||
88 | +ep-fac:Reservoir | ||
89 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
90 | + rdfs:label "reservoir"^^xsd:string ; | ||
91 | + rdfs:subClassOf ep-fac:Facility . | ||
47 | 92 | ||
48 | ep-fac:Rig | 93 | ep-fac:Rig |
49 | rdf:type owl:Class ; | 94 | rdf:type owl:Class ; |
... | @@ -68,13 +113,23 @@ ep-fac:SurroundingWater-meanSeaLevel | ... | @@ -68,13 +113,23 @@ ep-fac:SurroundingWater-meanSeaLevel |
68 | rdfs:label "surrounding water at mean sea level"^^xsd:string ; | 113 | rdfs:label "surrounding water at mean sea level"^^xsd:string ; |
69 | rdfs:subClassOf ep-fac:SurroundingWater . | 114 | rdfs:subClassOf ep-fac:SurroundingWater . |
70 | 115 | ||
116 | +ep-fac:Template | ||
117 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
118 | + rdfs:label "template"^^xsd:string ; | ||
119 | + rdfs:subClassOf ep-fac:Facility . | ||
120 | + | ||
71 | ep-fac:TemporalPartOfARig | 121 | ep-fac:TemporalPartOfARig |
72 | rdf:type owl:Class ; | 122 | rdf:type owl:Class ; |
73 | rdfs:label "(temporal part of a) rig"^^xsd:string ; | 123 | rdfs:label "(temporal part of a) rig"^^xsd:string ; |
74 | rdfs:subClassOf ep-fac:Facility . | 124 | rdfs:subClassOf ep-fac:Facility . |
75 | 125 | ||
126 | +ep-fac:Zone | ||
127 | + rdf:type owl:Class , ep-fac:ProductionFacilityType ; | ||
128 | + rdfs:label "zone"^^xsd:string ; | ||
129 | + rdfs:subClassOf ep-fac:Facility . | ||
130 | + | ||
76 | ep-fac:depthOfSurroundingWater | 131 | ep-fac:depthOfSurroundingWater |
77 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 132 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
78 | rdfs:domain ep-fac:SurroundingWater ; | 133 | rdfs:domain ep-fac:SurroundingWater ; |
79 | rdfs:label "depth of surrounding water"^^xsd:string ; | 134 | rdfs:label "depth of surrounding water"^^xsd:string ; |
80 | rdfs:range ep-core:Length . | 135 | rdfs:range ep-core:Length . | ... | ... |
1 | +# Saved by TopBraid on Fri Oct 07 18:37:43 BST 2011 | ||
2 | +# baseURI: http://www.reportinghub.no/ep/schema/1.0/flow | ||
3 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core | ||
4 | + | ||
5 | +@prefix : <http://www.reportinghub.no/ep/schema/1.0/flow#> . | ||
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 | +<http://www.reportinghub.no/ep/schema/1.0/flow> | ||
12 | + rdf:type owl:Ontology ; | ||
13 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; | ||
14 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
15 | + | ||
16 | +:Flow | ||
17 | + rdf:type owl:Class ; | ||
18 | + rdfs:label "flow"^^xsd:string ; | ||
19 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> . |
1 | -# Saved by TopBraid on Fri Oct 07 16:24:19 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 07 17:46:32 BST 2011 |
2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/geography | 2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/geography |
3 | # imports: http://www.reportinghub.no/ep/schema/1.0/core | 3 | # imports: http://www.reportinghub.no/ep/schema/1.0/core |
4 | +# imports: http://www.reportinghub.no/ep/schema/1.0/facility | ||
4 | 5 | ||
5 | @prefix : <http://www.reportinghub.no/ep/schema/1.0/geography#> . | 6 | @prefix : <http://www.reportinghub.no/ep/schema/1.0/geography#> . |
7 | +@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . | ||
6 | @prefix owl: <http://www.w3.org/2002/07/owl#> . | 8 | @prefix owl: <http://www.w3.org/2002/07/owl#> . |
7 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 9 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
8 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 10 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
... | @@ -10,20 +12,20 @@ | ... | @@ -10,20 +12,20 @@ |
10 | 12 | ||
11 | <http://www.reportinghub.no/ep/schema/1.0/geography> | 13 | <http://www.reportinghub.no/ep/schema/1.0/geography> |
12 | rdf:type owl:Ontology ; | 14 | rdf:type owl:Ontology ; |
13 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; | 15 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/core> ; |
14 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 16 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
15 | 17 | ||
16 | :Country | 18 | :Country |
17 | - rdf:type owl:Class ; | 19 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
18 | rdfs:label "country"^^xsd:string ; | 20 | rdfs:label "country"^^xsd:string ; |
19 | rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ; | 21 | rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ; |
20 | - owl:disjointWith :State , :County . | 22 | + owl:disjointWith :County , :State . |
21 | 23 | ||
22 | :County | 24 | :County |
23 | - rdf:type owl:Class ; | 25 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
24 | rdfs:label "county"^^xsd:string ; | 26 | rdfs:label "county"^^xsd:string ; |
25 | rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ; | 27 | rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ; |
26 | - owl:disjointWith :Country , :State . | 28 | + owl:disjointWith :State , :Country . |
27 | 29 | ||
28 | :PartOfTheSurfaceOfTheEarth | 30 | :PartOfTheSurfaceOfTheEarth |
29 | rdf:type owl:Class ; | 31 | rdf:type owl:Class ; |
... | @@ -31,7 +33,7 @@ | ... | @@ -31,7 +33,7 @@ |
31 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . | 33 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . |
32 | 34 | ||
33 | :State | 35 | :State |
34 | - rdf:type owl:Class ; | 36 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
35 | rdfs:label "state"^^xsd:string ; | 37 | rdfs:label "state"^^xsd:string ; |
36 | rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ; | 38 | rdfs:subClassOf :PartOfTheSurfaceOfTheEarth ; |
37 | - owl:disjointWith :Country , :County . | 39 | + owl:disjointWith :County , :Country . | ... | ... |
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
1 | -# Saved by TopBraid on Fri Oct 07 16:29:54 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 07 19:15:32 BST 2011 |
2 | # baseURI: null | 2 | # baseURI: null |
3 | 3 | ||
4 | @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . | 4 | @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . | ... | ... |
This diff is collapsed. Click to expand it.
1 | -# Saved by TopBraid on Fri Oct 07 15:43:30 BST 2011 | 1 | +# Saved by TopBraid on Fri Oct 07 19:15:39 BST 2011 |
2 | # baseURI: null | 2 | # baseURI: null |
3 | 3 | ||
4 | @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . | 4 | @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . | ... | ... |
-
Please register or login to post a comment