Added documentation for flow, and well ontologies for loading into RDL
Showing
14 changed files
with
1484 additions
and
1426 deletions
| 1 | -# baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment | 1 | +# baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment |
| 2 | -# imports: http://www.reportinghub.no/ep/schema/1.0/core | 2 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core |
| 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/well | 4 | +# imports: http://www.reportinghub.no/ep/schema/1.0/well |
| 5 | - | 5 | + |
| 6 | -@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . | 6 | +@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . |
| 7 | -@prefix ep-eqt: <http://www.reportinghub.no/ep/schema/equipment#> . | 7 | +@prefix ep-eqt: <http://www.reportinghub.no/ep/schema/equipment#> . |
| 8 | -@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . | 8 | +@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . |
| 9 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 9 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 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 xsd: <http://www.w3.org/2001/XMLSchema#> . | 12 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 13 | - | 13 | + |
| 14 | -<http://www.reportinghub.no/ep/schema/1.0/equipment> | 14 | +<http://www.reportinghub.no/ep/schema/1.0/equipment> |
| 15 | - rdf:type owl:Ontology ; | 15 | + rdf:type owl:Ontology ; |
| 16 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/well> ; | 16 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/core> ; |
| 17 | - owl:versionInfo "0.1.0"^^xsd:string . | 17 | + owl:versionInfo "0.1.0"^^xsd:string . |
| 18 | - | 18 | + |
| 19 | -ep-eqt:BlowOutPreventer | 19 | +ep-eqt:BlowOutPreventer |
| 20 | - rdf:type owl:Class ; | 20 | + rdf:type owl:Class ; |
| 21 | - rdfs:comment "equipment that is a blow out preventer"^^xsd:string ; | 21 | + rdfs:comment "equipment that is a blow out preventer"^^xsd:string ; |
| 22 | - rdfs:label "blow out preventer"^^xsd:string ; | 22 | + rdfs:label "blow out preventer"^^xsd:string ; |
| 23 | - rdfs:subClassOf ep-eqt:Equipment . | 23 | + rdfs:subClassOf ep-eqt:Equipment . |
| 24 | - | 24 | + |
| 25 | -ep-eqt:Casing | 25 | +ep-eqt:Casing |
| 26 | - rdf:type ep-eqt:CasingLinerTubingType , owl:Class ; | 26 | + rdf:type owl:Class , ep-eqt:CasingLinerTubingType ; |
| 27 | - rdfs:comment "equipment that is a casing"^^xsd:string ; | 27 | + rdfs:comment "equipment that is a casing"^^xsd:string ; |
| 28 | - rdfs:label "Casing"^^xsd:string ; | 28 | + rdfs:label "Casing"^^xsd:string ; |
| 29 | - rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 29 | + rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
| 30 | - owl:disjointWith ep-eqt:Liner , ep-eqt:Tubing . | 30 | + owl:disjointWith ep-eqt:Tubing , ep-eqt:Liner . |
| 31 | - | 31 | + |
| 32 | -ep-eqt:CasingLinerTubing | 32 | +ep-eqt:CasingLinerTubing |
| 33 | - rdf:type owl:Class ; | 33 | + rdf:type owl:Class ; |
| 34 | - rdfs:comment "equipment that is either a casing, a liner or tubing"^^xsd:string ; | 34 | + rdfs:comment "equipment that is either a casing, a liner or tubing"^^xsd:string ; |
| 35 | - rdfs:label "casing/liner/tubing"^^xsd:string ; | 35 | + rdfs:label "casing/liner/tubing"^^xsd:string ; |
| 36 | - rdfs:subClassOf ep-eqt:Equipment ; | 36 | + rdfs:subClassOf ep-eqt:Equipment ; |
| 37 | - owl:equivalentClass | 37 | + owl:equivalentClass |
| 38 | - [ rdf:type owl:Class ; | 38 | + [ rdf:type owl:Class ; |
| 39 | - owl:unionOf (ep-eqt:Casing ep-eqt:Liner ep-eqt:Tubing) | 39 | + owl:unionOf (ep-eqt:Casing ep-eqt:Liner ep-eqt:Tubing) |
| 40 | - ] . | 40 | + ] . |
| 41 | - | 41 | + |
| 42 | -ep-eqt:CasingLinerTubingType | 42 | +ep-eqt:CasingLinerTubingType |
| 43 | - rdf:type rdfs:Class ; | 43 | + rdf:type rdfs:Class ; |
| 44 | - rdfs:comment "class of casing, liner or tubing on the basis of whether or not it is casing, liner or tubing"^^xsd:string ; | 44 | + rdfs:comment "class of casing, liner or tubing on the basis of whether or not it is casing, liner or tubing"^^xsd:string ; |
| 45 | - rdfs:label "casing/liner/tubing type"^^xsd:string ; | 45 | + rdfs:label "casing/liner/tubing type"^^xsd:string ; |
| 46 | - rdfs:subClassOf owl:Class . | 46 | + rdfs:subClassOf owl:Class . |
| 47 | - | 47 | + |
| 48 | -ep-eqt:CasingRoleType | 48 | +ep-eqt:CasingRoleType |
| 49 | - rdf:type rdfs:Class ; | 49 | + rdf:type rdfs:Class ; |
| 50 | - rdfs:comment "class of casing on the basis of its role as intermediate, production or top"^^xsd:string ; | 50 | + rdfs:comment "class of casing on the basis of its role as intermediate, production or top"^^xsd:string ; |
| 51 | - rdfs:label "casing role type"^^xsd:string ; | 51 | + rdfs:label "casing role type"^^xsd:string ; |
| 52 | - rdfs:subClassOf owl:Class . | 52 | + rdfs:subClassOf owl:Class . |
| 53 | - | 53 | + |
| 54 | -ep-eqt:CasingString | 54 | +ep-eqt:CasingString |
| 55 | - rdf:type owl:Class ; | 55 | + rdf:type owl:Class ; |
| 56 | - rdfs:label "casing string"^^xsd:string ; | 56 | + rdfs:label "casing string"^^xsd:string ; |
| 57 | - rdfs:subClassOf ep-eqt:Casing , <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> . | 57 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/well#TemporalPartOfASpatialPartOfAWellBore> . |
| 58 | - | 58 | + |
| 59 | -ep-eqt:ChokeValve | 59 | +ep-eqt:ChokeValve |
| 60 | - rdf:type owl:Class ; | 60 | + rdf:type owl:Class ; |
| 61 | - rdfs:comment "valve that is a choke valve"^^xsd:string ; | 61 | + rdfs:comment "valve that is a choke valve"^^xsd:string ; |
| 62 | - rdfs:label "choke valve"^^xsd:string ; | 62 | + rdfs:label "choke valve"^^xsd:string ; |
| 63 | - rdfs:subClassOf ep-eqt:Equipment . | 63 | + rdfs:subClassOf ep-eqt:Equipment . |
| 64 | - | 64 | + |
| 65 | -ep-eqt:ClassOfDrillBitBySize | 65 | +ep-eqt:ClassOfDrillBitBySize |
| 66 | - rdf:type rdfs:Class ; | 66 | + rdf:type rdfs:Class ; |
| 67 | - rdfs:comment "class of drill bit on the basis of size"^^xsd:string ; | 67 | + rdfs:comment "class of drill bit on the basis of size"^^xsd:string ; |
| 68 | - rdfs:label "class of drill bit by size"^^xsd:string ; | 68 | + rdfs:label "class of drill bit by size"^^xsd:string ; |
| 69 | - rdfs:subClassOf owl:Class . | 69 | + rdfs:subClassOf owl:Class . |
| 70 | - | 70 | + |
| 71 | -ep-eqt:ClassOfSupplyDefinedByAManufacturer | 71 | +ep-eqt:ClassOfSupplyDefinedByAManufacturer |
| 72 | - rdf:type rdfs:Class ; | 72 | + rdf:type rdfs:Class ; |
| 73 | - rdfs:comment "class of equipment that is define by a manufacturer as a possible supply"^^xsd:string ; | 73 | + rdfs:comment "class of equipment that is define by a manufacturer as a possible supply"^^xsd:string ; |
| 74 | - rdfs:label "manufacturer model"^^xsd:string ; | 74 | + rdfs:label "manufacturer model"^^xsd:string ; |
| 75 | - rdfs:subClassOf owl:Class . | 75 | + rdfs:subClassOf owl:Class . |
| 76 | - | 76 | + |
| 77 | -ep-eqt:Compressor | 77 | +ep-eqt:Compressor |
| 78 | - rdf:type owl:Class ; | 78 | + rdf:type owl:Class ; |
| 79 | - rdfs:comment "equipment that is a compressor"^^xsd:string ; | 79 | + rdfs:comment "equipment that is a compressor"^^xsd:string ; |
| 80 | - rdfs:label "compressor"^^xsd:string ; | 80 | + rdfs:label "compressor"^^xsd:string ; |
| 81 | - rdfs:subClassOf ep-eqt:Equipment . | 81 | + rdfs:subClassOf ep-eqt:Equipment . |
| 82 | - | 82 | + |
| 83 | -ep-eqt:Controller-lift | 83 | +ep-eqt:Controller-lift |
| 84 | - rdf:type owl:Class ; | 84 | + rdf:type owl:Class ; |
| 85 | - rdfs:comment "deprecated - same as ep-prodeqt:Controller"^^xsd:string ; | 85 | + rdfs:comment "deprecated - same as ep-prodeqt:Controller"^^xsd:string ; |
| 86 | - rdfs:label "controller - lift"^^xsd:string ; | 86 | + rdfs:label "controller - lift"^^xsd:string ; |
| 87 | - rdfs:subClassOf ep-eqt:Equipment . | 87 | + rdfs:subClassOf ep-eqt:Equipment . |
| 88 | - | 88 | + |
| 89 | -ep-eqt:DrillBit | 89 | +ep-eqt:DrillBit |
| 90 | - rdf:type owl:Class ; | 90 | + rdf:type owl:Class ; |
| 91 | - rdfs:comment "equipment that is a drill bit"^^xsd:string ; | 91 | + rdfs:comment "equipment that is a drill bit"^^xsd:string ; |
| 92 | - rdfs:label "drill bit"^^xsd:string ; | 92 | + rdfs:label "drill bit"^^xsd:string ; |
| 93 | - rdfs:subClassOf ep-eqt:Equipment . | 93 | + rdfs:subClassOf ep-eqt:Equipment . |
| 94 | - | 94 | + |
| 95 | -ep-eqt:DrillBitForWellBore | 95 | +ep-eqt:DrillBitForWellBore |
| 96 | - rdf:type owl:Class ; | 96 | + rdf:type owl:Class ; |
| 97 | - rdfs:comment "drill bit whilst it is used for a single wellbore"^^xsd:string ; | 97 | + rdfs:comment "drill bit whilst it is used for a single wellbore"^^xsd:string ; |
| 98 | - rdfs:label "drill bit for wellbore"^^xsd:string ; | 98 | + rdfs:label "drill bit for wellbore"^^xsd:string ; |
| 99 | - rdfs:subClassOf ep-eqt:DrillBit . | 99 | + rdfs:subClassOf ep-eqt:DrillBit . |
| 100 | - | 100 | + |
| 101 | -ep-eqt:DullGrade | 101 | +ep-eqt:DullGrade |
| 102 | - rdf:type rdfs:Class ; | 102 | + rdf:type rdfs:Class ; |
| 103 | - rdfs:comment "class of drill bit on the basis of its dull grade"^^xsd:string ; | 103 | + rdfs:comment "class of drill bit on the basis of its dull grade"^^xsd:string ; |
| 104 | - rdfs:label "dull grade"^^xsd:string ; | 104 | + rdfs:label "dull grade"^^xsd:string ; |
| 105 | - rdfs:subClassOf owl:Class . | 105 | + rdfs:subClassOf owl:Class . |
| 106 | - | 106 | + |
| 107 | -ep-eqt:Equipment | 107 | +ep-eqt:Equipment |
| 108 | - rdf:type owl:Class ; | 108 | + rdf:type owl:Class ; |
| 109 | - rdfs:comment "physical object that has been manufactured and that is or can be part of a facility or well"^^xsd:string ; | 109 | + rdfs:comment "physical object that has been manufactured and that is or can be part of a facility or well"^^xsd:string ; |
| 110 | - rdfs:label "Equipment"^^xsd:string ; | 110 | + rdfs:label "Equipment"^^xsd:string ; |
| 111 | - rdfs:subClassOf ep-core:PhysicalObject . | 111 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 112 | - | 112 | + |
| 113 | -ep-eqt:InnerBarrel | 113 | +ep-eqt:InnerBarrel |
| 114 | - rdf:type owl:Class ; | 114 | + rdf:type owl:Class ; |
| 115 | - rdfs:comment "equipment that is an inner barrel"^^xsd:string ; | 115 | + rdfs:comment "equipment that is an inner barrel"^^xsd:string ; |
| 116 | - rdfs:label "inner barrel"^^xsd:string ; | 116 | + rdfs:label "inner barrel"^^xsd:string ; |
| 117 | - rdfs:subClassOf ep-eqt:Equipment . | 117 | + rdfs:subClassOf ep-eqt:Equipment . |
| 118 | - | 118 | + |
| 119 | -ep-eqt:InnerBarrel-aluminum | 119 | +ep-eqt:InnerBarrel-aluminum |
| 120 | - rdf:type ep-eqt:InnerBarrelType , owl:Class ; | 120 | + rdf:type owl:Class , ep-eqt:InnerBarrelType ; |
| 121 | - rdfs:comment "inner barrel that is aluminium"^^xsd:string ; | 121 | + rdfs:comment "inner barrel that is aluminium"^^xsd:string ; |
| 122 | - rdfs:label "inner barrel - aluminum"^^xsd:string ; | 122 | + rdfs:label "inner barrel - aluminum"^^xsd:string ; |
| 123 | - rdfs:subClassOf ep-eqt:InnerBarrel ; | 123 | + rdfs:subClassOf ep-eqt:InnerBarrel ; |
| 124 | - owl:disjointWith ep-eqt:InnerBarrel-fiberglass , ep-eqt:InnerBarrel-gel . | 124 | + owl:disjointWith ep-eqt:InnerBarrel-gel , ep-eqt:InnerBarrel-fiberglass . |
| 125 | - | 125 | + |
| 126 | -ep-eqt:InnerBarrel-fiberglass | 126 | +ep-eqt:InnerBarrel-fiberglass |
| 127 | - rdf:type ep-eqt:InnerBarrelType , owl:Class ; | 127 | + rdf:type owl:Class , ep-eqt:InnerBarrelType ; |
| 128 | - rdfs:comment "inner barrel that is fibreglass"^^xsd:string ; | 128 | + rdfs:comment "inner barrel that is fibreglass"^^xsd:string ; |
| 129 | - rdfs:label "inner barrel - fiberglass"^^xsd:string ; | 129 | + rdfs:label "inner barrel - fiberglass"^^xsd:string ; |
| 130 | - rdfs:subClassOf ep-eqt:InnerBarrel ; | 130 | + rdfs:subClassOf ep-eqt:InnerBarrel ; |
| 131 | - owl:disjointWith ep-eqt:InnerBarrel-aluminum , ep-eqt:InnerBarrel-gel . | 131 | + owl:disjointWith ep-eqt:InnerBarrel-gel , ep-eqt:InnerBarrel-aluminum . |
| 132 | - | 132 | + |
| 133 | -ep-eqt:InnerBarrel-gel | 133 | +ep-eqt:InnerBarrel-gel |
| 134 | - rdf:type ep-eqt:InnerBarrelType , owl:Class ; | 134 | + rdf:type owl:Class , ep-eqt:InnerBarrelType ; |
| 135 | - rdfs:comment "inner barrel that is gel"^^xsd:string ; | 135 | + rdfs:comment "inner barrel that is gel"^^xsd:string ; |
| 136 | - rdfs:label "inner barrel - gel"^^xsd:string ; | 136 | + rdfs:label "inner barrel - gel"^^xsd:string ; |
| 137 | - rdfs:subClassOf ep-eqt:InnerBarrel ; | 137 | + rdfs:subClassOf ep-eqt:InnerBarrel ; |
| 138 | - owl:disjointWith ep-eqt:InnerBarrel-aluminum , ep-eqt:InnerBarrel-fiberglass . | 138 | + owl:disjointWith ep-eqt:InnerBarrel-fiberglass , ep-eqt:InnerBarrel-aluminum . |
| 139 | - | 139 | + |
| 140 | -ep-eqt:InnerBarrelType | 140 | +ep-eqt:InnerBarrelType |
| 141 | - rdf:type rdfs:Class ; | 141 | + rdf:type rdfs:Class ; |
| 142 | - rdfs:comment "class of inner barrel on the basis of whether it is aluminium, fibreglass or gel"^^xsd:string ; | 142 | + rdfs:comment "class of inner barrel on the basis of whether it is aluminium, fibreglass or gel"^^xsd:string ; |
| 143 | - rdfs:label "inner barrel type"^^xsd:string ; | 143 | + rdfs:label "inner barrel type"^^xsd:string ; |
| 144 | - rdfs:subClassOf owl:Class . | 144 | + rdfs:subClassOf owl:Class . |
| 145 | - | 145 | + |
| 146 | -ep-eqt:IntermediateCasing | 146 | +ep-eqt:IntermediateCasing |
| 147 | - rdf:type ep-eqt:CasingRoleType , owl:Class ; | 147 | + rdf:type owl:Class , ep-eqt:CasingRoleType ; |
| 148 | - rdfs:comment "casing that is intermediate"^^xsd:string ; | 148 | + rdfs:comment "casing that is intermediate"^^xsd:string ; |
| 149 | - rdfs:label "intermediate casing"^^xsd:string ; | 149 | + rdfs:label "intermediate casing"^^xsd:string ; |
| 150 | - rdfs:subClassOf ep-eqt:Casing ; | 150 | + rdfs:subClassOf ep-eqt:Casing ; |
| 151 | - owl:disjointWith ep-eqt:ProductionCasing , ep-eqt:TopCasing . | 151 | + owl:disjointWith ep-eqt:TopCasing , ep-eqt:ProductionCasing . |
| 152 | - | 152 | + |
| 153 | -ep-eqt:KellyBushing | 153 | +ep-eqt:KellyBushing |
| 154 | - rdf:type owl:Class ; | 154 | + rdf:type owl:Class ; |
| 155 | - rdfs:comment "equipment that is a Kelly bushing"^^xsd:string ; | 155 | + rdfs:comment "equipment that is a Kelly bushing"^^xsd:string ; |
| 156 | - rdfs:label "kelly bushing"^^xsd:string ; | 156 | + rdfs:label "kelly bushing"^^xsd:string ; |
| 157 | - rdfs:subClassOf ep-eqt:Equipment . | 157 | + rdfs:subClassOf ep-eqt:Equipment . |
| 158 | - | 158 | + |
| 159 | -ep-eqt:LastCasingOfAWellBore | 159 | +ep-eqt:LastCasingOfAWellBore |
| 160 | - rdf:type owl:Class ; | 160 | + rdf:type owl:Class ; |
| 161 | - rdfs:label "last casing of a wellbore"^^xsd:string ; | 161 | + rdfs:label "last casing of a wellbore"^^xsd:string ; |
| 162 | - rdfs:subClassOf ep-eqt:Casing , <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> . | 162 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/well#TemporalPartOfASpatialPartOfAWellBore> . |
| 163 | - | 163 | + |
| 164 | -ep-eqt:Liner | 164 | +ep-eqt:Liner |
| 165 | - rdf:type ep-eqt:CasingLinerTubingType , owl:Class ; | 165 | + rdf:type owl:Class , ep-eqt:CasingLinerTubingType ; |
| 166 | - rdfs:comment "equipment that is a liner"^^xsd:string ; | 166 | + rdfs:comment "equipment that is a liner"^^xsd:string ; |
| 167 | - rdfs:label "Liner"^^xsd:string ; | 167 | + rdfs:label "Liner"^^xsd:string ; |
| 168 | - rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 168 | + rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
| 169 | - owl:disjointWith ep-eqt:Casing , ep-eqt:Tubing . | 169 | + owl:disjointWith ep-eqt:Tubing , ep-eqt:Casing . |
| 170 | - | 170 | + |
| 171 | -ep-eqt:Manifold | 171 | +ep-eqt:Manifold |
| 172 | - rdf:type owl:Class ; | 172 | + rdf:type owl:Class ; |
| 173 | - rdfs:label "manifold"^^xsd:string ; | 173 | + rdfs:label "manifold"^^xsd:string ; |
| 174 | - rdfs:subClassOf ep-eqt:Equipment . | 174 | + rdfs:subClassOf ep-eqt:Equipment . |
| 175 | - | 175 | + |
| 176 | -ep-eqt:Manifold-injection | 176 | +ep-eqt:Manifold-injection |
| 177 | - rdf:type owl:Class ; | 177 | + rdf:type owl:Class ; |
| 178 | - rdfs:label "manifold - injection"^^xsd:string ; | 178 | + rdfs:label "manifold - injection"^^xsd:string ; |
| 179 | - rdfs:subClassOf ep-eqt:Manifold . | 179 | + rdfs:subClassOf ep-eqt:Manifold . |
| 180 | - | 180 | + |
| 181 | -ep-eqt:Manifold-production | 181 | +ep-eqt:Manifold-production |
| 182 | - rdf:type owl:Class ; | 182 | + rdf:type owl:Class ; |
| 183 | - rdfs:label "manifold - production"^^xsd:string ; | 183 | + rdfs:label "manifold - production"^^xsd:string ; |
| 184 | - rdfs:subClassOf ep-eqt:Manifold . | 184 | + rdfs:subClassOf ep-eqt:Manifold . |
| 185 | - | 185 | + |
| 186 | -ep-eqt:PipeOutsideDiameterAPI_5CTClass | 186 | +ep-eqt:PipeOutsideDiameterAPI_5CTClass |
| 187 | - rdf:type rdfs:Class ; | 187 | + rdf:type rdfs:Class ; |
| 188 | - rdfs:comment "Why is API_5CT included in the name? Does the specification standardise diameters?"^^xsd:string , "class of casing, liner or tubing on the basis of outside diameter"^^xsd:string ; | 188 | + rdfs:comment "class of casing, liner or tubing on the basis of outside diameter"^^xsd:string , "Why is API_5CT included in the name? Does the specification standardise diameters?"^^xsd:string ; |
| 189 | - rdfs:label "pipe outside diameter API 5CT class"^^xsd:string ; | 189 | + rdfs:label "pipe outside diameter API 5CT class"^^xsd:string ; |
| 190 | - rdfs:subClassOf owl:Class . | 190 | + rdfs:subClassOf owl:Class . |
| 191 | - | 191 | + |
| 192 | -ep-eqt:PipeWeightAPI_5CTClass | 192 | +ep-eqt:PipeWeightAPI_5CTClass |
| 193 | - rdf:type rdfs:Class ; | 193 | + rdf:type rdfs:Class ; |
| 194 | - rdfs:comment "Why is API_5CT included in the name? Does the specification standardise weights?"^^xsd:string , "class of casing, liner or tubing on the basis of mass per unit length"^^xsd:string ; | 194 | + rdfs:comment "class of casing, liner or tubing on the basis of mass per unit length"^^xsd:string , "Why is API_5CT included in the name? Does the specification standardise weights?"^^xsd:string ; |
| 195 | - rdfs:label "Pipe weight API 5CT class"^^xsd:string ; | 195 | + rdfs:label "Pipe weight API 5CT class"^^xsd:string ; |
| 196 | - rdfs:subClassOf owl:Class . | 196 | + rdfs:subClassOf owl:Class . |
| 197 | - | 197 | + |
| 198 | -ep-eqt:ProductionCasing | 198 | +ep-eqt:ProductionCasing |
| 199 | - rdf:type ep-eqt:CasingRoleType , owl:Class ; | 199 | + rdf:type owl:Class , ep-eqt:CasingRoleType ; |
| 200 | - rdfs:comment "casing that is for production"^^xsd:string ; | 200 | + rdfs:comment "casing that is for production"^^xsd:string ; |
| 201 | - rdfs:label "production casing"^^xsd:string ; | 201 | + rdfs:label "production casing"^^xsd:string ; |
| 202 | - rdfs:subClassOf ep-eqt:Casing ; | 202 | + rdfs:subClassOf ep-eqt:Casing ; |
| 203 | - owl:disjointWith ep-eqt:IntermediateCasing , ep-eqt:TopCasing . | 203 | + owl:disjointWith ep-eqt:TopCasing , ep-eqt:IntermediateCasing . |
| 204 | - | 204 | + |
| 205 | -ep-eqt:Separator | 205 | +ep-eqt:Separator |
| 206 | - rdf:type owl:Class ; | 206 | + rdf:type owl:Class ; |
| 207 | - rdfs:comment "equipment that is a separator"^^xsd:string ; | 207 | + rdfs:comment "equipment that is a separator"^^xsd:string ; |
| 208 | - rdfs:label "separator"^^xsd:string ; | 208 | + rdfs:label "separator"^^xsd:string ; |
| 209 | - rdfs:subClassOf ep-eqt:Equipment . | 209 | + rdfs:subClassOf ep-eqt:Equipment . |
| 210 | - | 210 | + |
| 211 | -ep-eqt:SteelGradeAPI_5CTClass | 211 | +ep-eqt:SteelGradeAPI_5CTClass |
| 212 | - rdf:type rdfs:Class ; | 212 | + rdf:type rdfs:Class ; |
| 213 | - rdfs:comment "class of material on the basis of the steel grade as defined in API Specification 5CT"^^xsd:string ; | 213 | + rdfs:comment "class of material on the basis of the steel grade as defined in API Specification 5CT"^^xsd:string ; |
| 214 | - rdfs:label "Steel grade API 5CT class"^^xsd:string ; | 214 | + rdfs:label "Steel grade API 5CT class"^^xsd:string ; |
| 215 | - rdfs:subClassOf owl:Class . | 215 | + rdfs:subClassOf owl:Class . |
| 216 | - | 216 | + |
| 217 | -ep-eqt:Tank | 217 | +ep-eqt:Tank |
| 218 | - rdf:type owl:Class ; | 218 | + rdf:type owl:Class ; |
| 219 | - rdfs:comment "equipment that is a tank"^^xsd:string ; | 219 | + rdfs:comment "equipment that is a tank"^^xsd:string ; |
| 220 | - rdfs:label "tank"^^xsd:string ; | 220 | + rdfs:label "tank"^^xsd:string ; |
| 221 | - rdfs:subClassOf ep-eqt:Equipment . | 221 | + rdfs:subClassOf ep-eqt:Equipment . |
| 222 | - | 222 | + |
| 223 | -ep-eqt:TopCasing | 223 | +ep-eqt:TopCasing |
| 224 | - rdf:type ep-eqt:CasingRoleType , owl:Class ; | 224 | + rdf:type owl:Class , ep-eqt:CasingRoleType ; |
| 225 | - rdfs:comment "casing that is at the top"^^xsd:string ; | 225 | + rdfs:comment "casing that is at the top"^^xsd:string ; |
| 226 | - rdfs:label "top casing"^^xsd:string ; | 226 | + rdfs:label "top casing"^^xsd:string ; |
| 227 | - rdfs:subClassOf ep-eqt:Casing ; | 227 | + rdfs:subClassOf ep-eqt:Casing ; |
| 228 | - owl:disjointWith ep-eqt:IntermediateCasing , ep-eqt:ProductionCasing . | 228 | + owl:disjointWith ep-eqt:ProductionCasing , ep-eqt:IntermediateCasing . |
| 229 | - | 229 | + |
| 230 | -ep-eqt:Tubing | 230 | +ep-eqt:Tubing |
| 231 | - rdf:type ep-eqt:CasingLinerTubingType , owl:Class ; | 231 | + rdf:type owl:Class , ep-eqt:CasingLinerTubingType ; |
| 232 | - rdfs:comment "equipment that is tubing"^^xsd:string ; | 232 | + rdfs:comment "equipment that is tubing"^^xsd:string ; |
| 233 | - rdfs:label "Tubing"^^xsd:string ; | 233 | + rdfs:label "Tubing"^^xsd:string ; |
| 234 | - rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 234 | + rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
| 235 | - owl:disjointWith ep-eqt:Casing , ep-eqt:Liner . | 235 | + owl:disjointWith ep-eqt:Liner , ep-eqt:Casing . |
| 236 | - | 236 | + |
| 237 | -ep-eqt:TubularConnectionClass | 237 | +ep-eqt:TubularConnectionClass |
| 238 | - rdf:type rdfs:Class ; | 238 | + rdf:type rdfs:Class ; |
| 239 | - rdfs:comment "class of tubular connection"^^xsd:string ; | 239 | + rdfs:comment "class of tubular connection"^^xsd:string ; |
| 240 | - rdfs:label "tubular connection class"^^xsd:string ; | 240 | + rdfs:label "tubular connection class"^^xsd:string ; |
| 241 | - rdfs:subClassOf owl:Class . | 241 | + rdfs:subClassOf owl:Class . |
| 242 | - | 242 | + |
| 243 | -ep-eqt:WellBoreLoggingTool | 243 | +ep-eqt:WellBoreLoggingTool |
| 244 | - rdf:type owl:Class ; | 244 | + rdf:type owl:Class ; |
| 245 | - rdfs:comment "equipment that is a wellbore logging tool"^^xsd:string ; | 245 | + rdfs:comment "equipment that is a wellbore logging tool"^^xsd:string ; |
| 246 | - rdfs:label "well bore logging tool"^^xsd:string ; | 246 | + rdfs:label "well bore logging tool"^^xsd:string ; |
| 247 | - rdfs:subClassOf ep-eqt:Equipment . | 247 | + rdfs:subClassOf ep-eqt:Equipment . |
| 248 | - | 248 | + |
| 249 | -ep-eqt:WellTestChoke | 249 | +ep-eqt:WellTestChoke |
| 250 | - rdf:type owl:Class ; | 250 | + rdf:type owl:Class ; |
| 251 | - rdfs:comment "equipment that is a well test choke manifold"^^xsd:string ; | 251 | + rdfs:comment "equipment that is a well test choke manifold"^^xsd:string ; |
| 252 | - rdfs:label "well test choke"^^xsd:string ; | 252 | + rdfs:label "well test choke"^^xsd:string ; |
| 253 | - rdfs:subClassOf ep-eqt:Equipment . | 253 | + rdfs:subClassOf ep-eqt:Equipment . |
| 254 | - | 254 | + |
| 255 | -ep-eqt:chokeOrificeSize | 255 | +ep-eqt:chokeOrificeSize |
| 256 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 256 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 257 | - rdfs:comment "diameterof the choke orifice within a well test choke manifold"^^xsd:string ; | 257 | + rdfs:comment "diameterof the choke orifice within a well test choke manifold"^^xsd:string ; |
| 258 | - rdfs:domain ep-eqt:WellTestChoke ; | 258 | + rdfs:domain ep-eqt:WellTestChoke ; |
| 259 | - rdfs:label "choke orifice size"^^xsd:string ; | 259 | + rdfs:label "choke orifice size"^^xsd:string ; |
| 260 | - rdfs:range ep-core:Length . | 260 | + rdfs:range ep-core:Length . |
| 261 | - | 261 | + |
| 262 | -ep-eqt:codeAssignedByAManufacturer | 262 | +ep-eqt:codeAssignedByAManufacturer |
| 263 | - rdf:type owl:DatatypeProperty ; | 263 | + rdf:type owl:DatatypeProperty ; |
| 264 | - rdfs:comment "identifier that is a code assigned by a manufacturer to a class of supply defined by a manufacturer"^^xsd:string ; | 264 | + rdfs:comment "identifier that is a code assigned by a manufacturer to a class of supply defined by a manufacturer"^^xsd:string ; |
| 265 | - rdfs:domain ep-eqt:ClassOfSupplyDefinedByAManufacturer ; | 265 | + rdfs:domain ep-eqt:ClassOfSupplyDefinedByAManufacturer ; |
| 266 | - rdfs:label "code assigned by manufacturer"^^xsd:string . | 266 | + rdfs:label "code assigned by manufacturer"^^xsd:string . |
| 267 | - | 267 | + |
| 268 | -ep-eqt:diameterOfACasing | 268 | +ep-eqt:diameterOfACasing |
| 269 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 269 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 270 | - rdfs:domain ep-eqt:Casing ; | 270 | + rdfs:domain ep-eqt:Casing ; |
| 271 | - rdfs:label "diameter of a casing"^^xsd:string ; | 271 | + rdfs:label "diameter of a casing"^^xsd:string ; |
| 272 | - rdfs:range ep-core:Length . | 272 | + rdfs:range ep-core:Length . |
| 273 | - | 273 | + |
| 274 | -ep-eqt:diameterOfDrillBit | 274 | +ep-eqt:diameterOfDrillBit |
| 275 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 275 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 276 | - rdfs:domain ep-eqt:DrillBit ; | 276 | + rdfs:domain ep-eqt:DrillBit ; |
| 277 | - rdfs:label "diameter of drill bit"^^xsd:string ; | 277 | + rdfs:label "diameter of drill bit"^^xsd:string ; |
| 278 | - rdfs:range ep-core:Length . | 278 | + rdfs:range ep-core:Length . |
| 279 | - | 279 | + |
| 280 | -ep-eqt:elevationOfKellyBushing | 280 | +ep-eqt:elevationOfKellyBushing |
| 281 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 281 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 282 | - rdfs:comment "class_of_indirect_property that is the elevation of a Kelly bushing above mean sea level"^^xsd:string ; | 282 | + rdfs:comment "class_of_indirect_property that is the elevation of a Kelly bushing above mean sea level"^^xsd:string ; |
| 283 | - rdfs:domain ep-eqt:KellyBushing ; | 283 | + rdfs:domain ep-eqt:KellyBushing ; |
| 284 | - rdfs:label "elevation of kelly bushing"^^xsd:string ; | 284 | + rdfs:label "elevation of kelly bushing"^^xsd:string ; |
| 285 | - rdfs:range ep-core:Length . | 285 | + rdfs:range ep-core:Length . |
| 286 | - | 286 | + |
| 287 | -ep-eqt:hasTubularConnectionClass | 287 | +ep-eqt:hasTubularConnectionClass |
| 288 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | 288 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty ; |
| 289 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 289 | + rdfs:domain ep-eqt:CasingLinerTubing ; |
| 290 | - rdfs:label "has tubular connection class"^^xsd:string ; | 290 | + rdfs:label "has tubular connection class"^^xsd:string ; |
| 291 | - rdfs:range ep-eqt:TubularConnectionClass . | 291 | + rdfs:range ep-eqt:TubularConnectionClass . |
| 292 | - | 292 | + |
| 293 | -ep-eqt:insideDiameterOfATubular | 293 | +ep-eqt:insideDiameterOfATubular |
| 294 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 294 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 295 | - rdfs:comment "class_of_indirect_property that is the inside diameter of a tubular"^^xsd:string ; | 295 | + rdfs:comment "class_of_indirect_property that is the inside diameter of a tubular"^^xsd:string ; |
| 296 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 296 | + rdfs:domain ep-eqt:CasingLinerTubing ; |
| 297 | - rdfs:label "inside diameter of a tubular"^^xsd:string ; | 297 | + rdfs:label "inside diameter of a tubular"^^xsd:string ; |
| 298 | - rdfs:range ep-core:Length . | 298 | + rdfs:range ep-core:Length . |
| 299 | - | 299 | + |
| 300 | -ep-eqt:lengthOfInnerBarrel | 300 | +ep-eqt:lengthOfInnerBarrel |
| 301 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 301 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 302 | - rdfs:comment "class_of_indirect_property that is the length of an inner barrel"^^xsd:string ; | 302 | + rdfs:comment "class_of_indirect_property that is the length of an inner barrel"^^xsd:string ; |
| 303 | - rdfs:domain ep-eqt:InnerBarrel ; | 303 | + rdfs:domain ep-eqt:InnerBarrel ; |
| 304 | - rdfs:label "length of inner barrel"^^xsd:string ; | 304 | + rdfs:label "length of inner barrel"^^xsd:string ; |
| 305 | - rdfs:range ep-core:Length . | 305 | + rdfs:range ep-core:Length . |
| 306 | - | 306 | + |
| 307 | -ep-eqt:manufacturedBy | 307 | +ep-eqt:manufacturedBy |
| 308 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | 308 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty ; |
| 309 | - rdfs:comment "manufacturer of an equipment item"^^xsd:string ; | 309 | + rdfs:comment "manufacturer of an equipment item"^^xsd:string ; |
| 310 | - rdfs:domain ep-eqt:Equipment ; | 310 | + rdfs:domain ep-eqt:Equipment ; |
| 311 | - rdfs:label "manaufactured by"^^xsd:string ; | 311 | + rdfs:label "manaufactured by"^^xsd:string ; |
| 312 | - rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . | 312 | + rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . |
| 313 | - | 313 | + |
| 314 | -ep-eqt:maximumPressureForBlowOutPreventer | 314 | +ep-eqt:maximumPressureForBlowOutPreventer |
| 315 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 315 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 316 | - rdfs:comment "class_of_indirect_property that is the maximum pressure for a blow-out preventer"^^xsd:string ; | 316 | + rdfs:comment "class_of_indirect_property that is the maximum pressure for a blow-out preventer"^^xsd:string ; |
| 317 | - rdfs:domain ep-eqt:BlowOutPreventer ; | 317 | + rdfs:domain ep-eqt:BlowOutPreventer ; |
| 318 | - rdfs:label "maximum pressure for blow out preventer"^^xsd:string ; | 318 | + rdfs:label "maximum pressure for blow out preventer"^^xsd:string ; |
| 319 | - rdfs:range ep-core:Pressure . | 319 | + rdfs:range ep-core:Pressure . |
| 320 | - | 320 | + |
| 321 | -ep-eqt:maximumPressureForChokeValve | 321 | +ep-eqt:maximumPressureForChokeValve |
| 322 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 322 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 323 | - rdfs:comment "class_of_indirect_property that is the maximum pressure for a choke valve"^^xsd:string ; | 323 | + rdfs:comment "class_of_indirect_property that is the maximum pressure for a choke valve"^^xsd:string ; |
| 324 | - rdfs:domain ep-eqt:ChokeValve ; | 324 | + rdfs:domain ep-eqt:ChokeValve ; |
| 325 | - rdfs:label "maximum pressure for choke valve"^^xsd:string ; | 325 | + rdfs:label "maximum pressure for choke valve"^^xsd:string ; |
| 326 | - rdfs:range ep-core:Pressure . | 326 | + rdfs:range ep-core:Pressure . |
| 327 | - | 327 | + |
| 328 | -ep-eqt:outsideDiameterOfATubular | 328 | +ep-eqt:outsideDiameterOfATubular |
| 329 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 329 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 330 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 330 | + rdfs:domain ep-eqt:CasingLinerTubing ; |
| 331 | - rdfs:label "outside diameter of a tubular"^^xsd:string ; | 331 | + rdfs:label "outside diameter of a tubular"^^xsd:string ; |
| 332 | - rdfs:range ep-core:Length . | 332 | + rdfs:range ep-core:Length . |
| 333 | - | 333 | + |
| 334 | -ep-eqt:stringLengthOfATubular | 334 | +ep-eqt:stringLengthOfATubular |
| 335 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 335 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 336 | - rdfs:comment "class_of_indirect_property that is the string length of a tubular"^^xsd:string ; | 336 | + rdfs:comment "class_of_indirect_property that is the string length of a tubular"^^xsd:string ; |
| 337 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 337 | + rdfs:domain ep-eqt:CasingLinerTubing ; |
| 338 | - rdfs:label "string length of a tubular"^^xsd:string ; | 338 | + rdfs:label "string length of a tubular"^^xsd:string ; |
| 339 | - rdfs:range ep-core:Length . | 339 | + rdfs:range ep-core:Length . | ... | ... |
| 1 | -# baseURI: http://www.reportinghub.no/ep/schema/1.0/facility | 1 | +# baseURI: http://www.reportinghub.no/ep/schema/1.0/facility |
| 2 | -# imports: http://www.reportinghub.no/ep/schema/1.0/core | 2 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core |
| 3 | - | 3 | + |
| 4 | -@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . | 4 | +@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . |
| 5 | -@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . | 5 | +@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . |
| 6 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 6 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 7 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 7 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 8 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 8 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 9 | -@prefix sp: <http://spinrdf.org/sp#> . | 9 | +@prefix sp: <http://spinrdf.org/sp#> . |
| 10 | -@prefix spin: <http://spinrdf.org/spin#> . | 10 | +@prefix spin: <http://spinrdf.org/spin#> . |
| 11 | -@prefix spl: <http://spinrdf.org/spl#> . | 11 | +@prefix spl: <http://spinrdf.org/spl#> . |
| 12 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 12 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 13 | - | 13 | + |
| 14 | -<http://www.reportinghub.no/ep/schema/1.0/facility> | 14 | +<http://www.reportinghub.no/ep/schema/1.0/facility> |
| 15 | - rdf:type owl:Ontology ; | 15 | + rdf:type owl:Ontology ; |
| 16 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; | 16 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; |
| 17 | - owl:versionInfo "0.1.0"^^xsd:string . | 17 | + owl:versionInfo "0.1.0"^^xsd:string . |
| 18 | - | 18 | + |
| 19 | -ep-fac:Completion | 19 | +ep-fac:Completion |
| 20 | - rdf:type owl:Class ; | 20 | + rdf:type owl:Class ; |
| 21 | - rdfs:label "completion"^^xsd:string ; | 21 | + rdfs:comment "not used in either the MPR or the DDR - see ep-prodwell:WellCompletionEquipment"^^xsd:string ; |
| 22 | - rdfs:subClassOf ep-fac:Facility ; | 22 | + rdfs:label "completion"^^xsd:string ; |
| 23 | - ep-core:seeReferenceData | 23 | + rdfs:subClassOf ep-fac:Facility ; |
| 24 | - "http://posccaesar.org/rdl/page/RDS8015624975"^^xsd:string . | 24 | + ep-core:seeReferenceData |
| 25 | - | 25 | + "http://posccaesar.org/rdl/page/RDS8015624975"^^xsd:string . |
| 26 | -ep-fac:Facility | 26 | + |
| 27 | - rdf:type owl:Class ; | 27 | +ep-fac:Facility |
| 28 | - rdfs:comment "a physical object that is all or part of the life of something that is operated, maintained and refurbished over a long period, and that is regarded as a major asset"^^xsd:string ; | 28 | + rdf:type owl:Class ; |
| 29 | - rdfs:label "facility"^^xsd:string ; | 29 | + rdfs:comment "a physical object that is all or part of the life of something that is operated, maintained and refurbished over a long period, and that is regarded as a major asset"^^xsd:string ; |
| 30 | - rdfs:subClassOf ep-core:PhysicalObject . | 30 | + rdfs:label "facility"^^xsd:string ; |
| 31 | - | 31 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 32 | -ep-fac:Field | 32 | + |
| 33 | - rdf:type owl:Class ; | 33 | +ep-fac:Field |
| 34 | - rdfs:label "field"^^xsd:string ; | 34 | + rdf:type owl:Class ; |
| 35 | - rdfs:subClassOf ep-fac:TemporalPartOfAField ; | 35 | + rdfs:label "field"^^xsd:string ; |
| 36 | - ep-core:seeReferenceData | 36 | + rdfs:subClassOf ep-fac:TemporalPartOfAField ; |
| 37 | - "http://posccaesar.org/rdl/RDS409500951"^^xsd:string . | 37 | + ep-core:seeReferenceData |
| 38 | - | 38 | + "http://posccaesar.org/rdl/RDS409500951"^^xsd:string . |
| 39 | -ep-fac:FixedFacility | 39 | + |
| 40 | - rdf:type ep-fac:FixedOrMoveableFacilityType , owl:DeprecatedClass ; | 40 | +ep-fac:FixedFacility |
| 41 | - rdfs:comment "facility that has been build and that is intended to remain in one place"^^xsd:string ; | 41 | + rdf:type owl:DeprecatedClass , ep-fac:FixedOrMoveableFacilityType ; |
| 42 | - rdfs:label "fixed facility"^^xsd:string ; | 42 | + rdfs:comment "facility that has been build and that is intended to remain in one place"^^xsd:string ; |
| 43 | - rdfs:subClassOf ep-fac:Facility . | 43 | + rdfs:label "fixed facility"^^xsd:string ; |
| 44 | - | 44 | + rdfs:subClassOf ep-fac:Facility . |
| 45 | -ep-fac:FixedOrMoveableFacilityType | 45 | + |
| 46 | - rdf:type rdfs:Class ; | 46 | +ep-fac:FixedOrMoveableFacilityType |
| 47 | - rdfs:comment "class of facility on the basis of whether it is fixed or moveable"^^xsd:string ; | 47 | + rdf:type rdfs:Class ; |
| 48 | - rdfs:label "fixed or moveable facility type"^^xsd:string ; | 48 | + rdfs:comment "class of facility on the basis of whether it is fixed or moveable"^^xsd:string ; |
| 49 | - rdfs:subClassOf owl:Class . | 49 | + rdfs:label "fixed or moveable facility type"^^xsd:string ; |
| 50 | - | 50 | + rdfs:subClassOf owl:Class . |
| 51 | -ep-fac:FixedOrMoveableRigType | 51 | + |
| 52 | - rdf:type rdfs:Class ; | 52 | +ep-fac:FixedOrMoveableRigType |
| 53 | - rdfs:comment "class of rig on the basis of whether it is fixed or moveable"^^xsd:string ; | 53 | + rdf:type rdfs:Class ; |
| 54 | - rdfs:label "fixed or moveable rig type"^^xsd:string ; | 54 | + rdfs:comment "class of rig on the basis of whether it is fixed or moveable"^^xsd:string ; |
| 55 | - rdfs:subClassOf owl:Class . | 55 | + rdfs:label "fixed or moveable rig type"^^xsd:string ; |
| 56 | - | 56 | + rdfs:subClassOf owl:Class . |
| 57 | -ep-fac:FixedRig | 57 | + |
| 58 | - rdf:type ep-fac:FixedOrMoveableRigType , owl:Class ; | 58 | +ep-fac:FixedRig |
| 59 | - rdfs:comment "a fixed oil and gas drilling facility"^^xsd:string ; | 59 | + rdf:type owl:Class , ep-fac:FixedOrMoveableRigType ; |
| 60 | - rdfs:label "fixed rig"^^xsd:string ; | 60 | + rdfs:comment "a fixed oil and gas drilling facility"^^xsd:string ; |
| 61 | - rdfs:subClassOf ep-fac:FixedFacility , ep-fac:Rig . | 61 | + rdfs:label "fixed rig"^^xsd:string ; |
| 62 | - | 62 | + rdfs:subClassOf ep-fac:Rig , ep-fac:FixedFacility . |
| 63 | -ep-fac:Flowline | 63 | + |
| 64 | - rdf:type owl:Class ; | 64 | +ep-fac:Flowline |
| 65 | - rdfs:comment "facility that is a flowline"^^xsd:string ; | 65 | + rdf:type owl:Class ; |
| 66 | - rdfs:label "flowline"^^xsd:string ; | 66 | + rdfs:comment "facility that is a flowline"^^xsd:string ; |
| 67 | - rdfs:subClassOf ep-fac:Facility ; | 67 | + rdfs:label "flowline"^^xsd:string ; |
| 68 | - ep-core:seeReferenceData | 68 | + rdfs:subClassOf ep-fac:Facility ; |
| 69 | - "http://posccaesar.org/rdl/RDS806653861"^^xsd:string . | 69 | + ep-core:seeReferenceData |
| 70 | - | 70 | + "http://posccaesar.org/rdl/RDS806653861"^^xsd:string . |
| 71 | -ep-fac:Flowline-production | 71 | + |
| 72 | - rdf:type owl:Class ; | 72 | +ep-fac:Flowline-production |
| 73 | - rdfs:label "flowline - production"^^xsd:string ; | 73 | + rdf:type owl:Class ; |
| 74 | - rdfs:subClassOf ep-fac:Flowline . | 74 | + rdfs:label "flowline - production"^^xsd:string ; |
| 75 | - | 75 | + rdfs:subClassOf ep-fac:Flowline . |
| 76 | -ep-fac:Lease | 76 | + |
| 77 | - rdf:type owl:Class ; | 77 | +ep-fac:Lease |
| 78 | - rdfs:comment "facility that is defined by a lease"^^xsd:string ; | 78 | + rdf:type owl:Class ; |
| 79 | - rdfs:label "lease"^^xsd:string ; | 79 | + rdfs:comment "facility that is defined by a lease"^^xsd:string ; |
| 80 | - rdfs:subClassOf ep-fac:Facility ; | 80 | + rdfs:label "lease"^^xsd:string ; |
| 81 | - ep-core:seeReferenceData | 81 | + rdfs:subClassOf ep-fac:Facility ; |
| 82 | - "http://posccaesar.org/rdl/RDS806655591"^^xsd:string . | 82 | + ep-core:seeReferenceData |
| 83 | - | 83 | + "http://posccaesar.org/rdl/RDS806655591"^^xsd:string . |
| 84 | -ep-fac:MoveableFacility | 84 | + |
| 85 | - rdf:type ep-fac:FixedOrMoveableFacilityType , owl:Class ; | 85 | +ep-fac:MoveableFacility |
| 86 | - rdfs:label "moveable facility"^^xsd:string ; | 86 | + rdf:type owl:Class , ep-fac:FixedOrMoveableFacilityType ; |
| 87 | - rdfs:subClassOf ep-fac:Facility ; | 87 | + rdfs:label "moveable facility"^^xsd:string ; |
| 88 | - ep-core:seeReferenceData | 88 | + rdfs:subClassOf ep-fac:Facility ; |
| 89 | - "http://posccaesar.org/rdl/RDS4316634576"^^xsd:string . | 89 | + ep-core:seeReferenceData |
| 90 | - | 90 | + "http://posccaesar.org/rdl/RDS4316634576"^^xsd:string . |
| 91 | -ep-fac:MoveableRig | 91 | + |
| 92 | - rdf:type ep-fac:FixedOrMoveableRigType , owl:Class ; | 92 | +ep-fac:MoveableRig |
| 93 | - rdfs:comment "a moveable oil and gas drilling facility"^^xsd:string ; | 93 | + rdf:type owl:Class , ep-fac:FixedOrMoveableRigType ; |
| 94 | - rdfs:label "moveable rig"^^xsd:string ; | 94 | + rdfs:comment "a moveable oil and gas drilling facility"^^xsd:string ; |
| 95 | - rdfs:subClassOf ep-fac:MoveableFacility , ep-fac:Rig . | 95 | + rdfs:label "moveable rig"^^xsd:string ; |
| 96 | - | 96 | + rdfs:subClassOf ep-fac:Rig , ep-fac:MoveableFacility . |
| 97 | -ep-fac:Platform | 97 | + |
| 98 | - rdf:type owl:Class ; | 98 | +ep-fac:Platform |
| 99 | - rdfs:comment "facility that is a platform"^^xsd:string ; | 99 | + rdf:type owl:Class ; |
| 100 | - rdfs:label "platform"^^xsd:string ; | 100 | + rdfs:comment "facility that is a platform"^^xsd:string ; |
| 101 | - rdfs:subClassOf ep-fac:Facility ; | 101 | + rdfs:label "platform"^^xsd:string ; |
| 102 | - ep-core:seeReferenceData | 102 | + rdfs:subClassOf ep-fac:Facility ; |
| 103 | - "http://posccaesar.org/rdl/RDS8015624981"^^xsd:string . | 103 | + ep-core:seeReferenceData |
| 104 | - | 104 | + "http://posccaesar.org/rdl/RDS8015624981"^^xsd:string . |
| 105 | -ep-fac:ProductionFacility | 105 | + |
| 106 | - rdf:type owl:Class ; | 106 | +ep-fac:ProductionFacility |
| 107 | - rdfs:comment "production facility that is for all of its life"^^xsd:string ; | 107 | + rdf:type owl:Class ; |
| 108 | - rdfs:label "production facility"^^xsd:string ; | 108 | + rdfs:comment "production facility that is for all of its life"^^xsd:string ; |
| 109 | - rdfs:subClassOf ep-fac:TemporalPartOfAProductionFacility . | 109 | + rdfs:label "production facility"^^xsd:string ; |
| 110 | - | 110 | + rdfs:subClassOf ep-fac:TemporalPartOfAProductionFacility . |
| 111 | -ep-fac:Reservoir | 111 | + |
| 112 | - rdf:type owl:Class ; | 112 | +ep-fac:Reservoir |
| 113 | - rdfs:label "reservoir"^^xsd:string ; | 113 | + rdf:type owl:Class ; |
| 114 | - rdfs:subClassOf ep-core:PhysicalObject ; | 114 | + rdfs:label "reservoir"^^xsd:string ; |
| 115 | - ep-core:seeReferenceData | 115 | + rdfs:subClassOf ep-core:PhysicalObject ; |
| 116 | - "http://posccaesar.org/rdl/RDS8015624985"^^xsd:string . | 116 | + ep-core:seeReferenceData |
| 117 | - | 117 | + "http://posccaesar.org/rdl/RDS8015624985"^^xsd:string . |
| 118 | -ep-fac:Rig | 118 | + |
| 119 | - rdf:type owl:Class ; | 119 | +ep-fac:Rig |
| 120 | - rdfs:comment "an oil and gas drilling facility"^^xsd:string ; | 120 | + rdf:type owl:Class ; |
| 121 | - rdfs:label "rig"^^xsd:string ; | 121 | + rdfs:comment "an oil and gas drilling facility"^^xsd:string ; |
| 122 | - rdfs:subClassOf ep-fac:TemporalPartOfARig . | 122 | + rdfs:label "rig"^^xsd:string ; |
| 123 | - | 123 | + rdfs:subClassOf ep-fac:TemporalPartOfARig . |
| 124 | -ep-fac:SubSurfaceFixedFacility | 124 | + |
| 125 | - rdf:type owl:Class ; | 125 | +ep-fac:SubSurfaceFixedFacility |
| 126 | - rdfs:label "sub-surface fixed facility"^^xsd:string ; | 126 | + rdf:type owl:Class ; |
| 127 | - rdfs:subClassOf ep-fac:FixedFacility ; | 127 | + rdfs:label "sub-surface fixed facility"^^xsd:string ; |
| 128 | - ep-core:seeReferenceData | 128 | + rdfs:subClassOf ep-fac:FixedFacility ; |
| 129 | - "http://posccaesar.org/rdl/RDS43166345103"^^xsd:string . | 129 | + ep-core:seeReferenceData |
| 130 | - | 130 | + "http://posccaesar.org/rdl/RDS43166345103"^^xsd:string . |
| 131 | -ep-fac:SurfaceFixedFacility | 131 | + |
| 132 | - rdf:type owl:Class ; | 132 | +ep-fac:SurfaceFixedFacility |
| 133 | - rdfs:label "surface fixed facility"^^xsd:string ; | 133 | + rdf:type owl:Class ; |
| 134 | - rdfs:subClassOf ep-fac:FixedFacility ; | 134 | + rdfs:label "surface fixed facility"^^xsd:string ; |
| 135 | - ep-core:seeReferenceData | 135 | + rdfs:subClassOf ep-fac:FixedFacility ; |
| 136 | - "http://posccaesar.org/rdl/RDS4316634591"^^xsd:string . | 136 | + ep-core:seeReferenceData |
| 137 | - | 137 | + "http://posccaesar.org/rdl/RDS4316634591"^^xsd:string . |
| 138 | -ep-fac:SurroundingAir | 138 | + |
| 139 | - rdf:type owl:Class ; | 139 | +ep-fac:SurroundingAir |
| 140 | - rdfs:comment "physical object that is the air surrounding a facility"^^xsd:string ; | 140 | + rdf:type owl:Class ; |
| 141 | - rdfs:label "surrounding air"^^xsd:string ; | 141 | + rdfs:comment "physical object that is the air surrounding a facility"^^xsd:string ; |
| 142 | - rdfs:subClassOf ep-core:PhysicalObject . | 142 | + rdfs:label "surrounding air"^^xsd:string ; |
| 143 | - | 143 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 144 | -ep-fac:SurroundingEnvironment | 144 | + |
| 145 | - rdf:type owl:Class ; | 145 | +ep-fac:SurroundingEnvironment |
| 146 | - rdfs:comment "physical object that is the environment surrounding a facility"^^xsd:string ; | 146 | + rdf:type owl:Class ; |
| 147 | - rdfs:label "surrounding environment"^^xsd:string ; | 147 | + rdfs:comment "physical object that is the environment surrounding a facility"^^xsd:string ; |
| 148 | - rdfs:subClassOf ep-core:PhysicalObject . | 148 | + rdfs:label "surrounding environment"^^xsd:string ; |
| 149 | - | 149 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 150 | -ep-fac:SurroundingWater | 150 | + |
| 151 | - rdf:type owl:Class ; | 151 | +ep-fac:SurroundingWater |
| 152 | - rdfs:comment "physical object that is the water surrounding a facility"^^xsd:string ; | 152 | + rdf:type owl:Class ; |
| 153 | - rdfs:label "surrounding water"^^xsd:string ; | 153 | + rdfs:comment "physical object that is the water surrounding a facility"^^xsd:string ; |
| 154 | - rdfs:subClassOf ep-core:PhysicalObject . | 154 | + rdfs:label "surrounding water"^^xsd:string ; |
| 155 | - | 155 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 156 | -ep-fac:SurroundingWater-meanSeaLevel | 156 | + |
| 157 | - rdf:type owl:Class ; | 157 | +ep-fac:SurroundingWater-meanSeaLevel |
| 158 | - rdfs:comment "physical object that is the mean sea level of surrounding water"^^xsd:string ; | 158 | + rdf:type owl:Class ; |
| 159 | - rdfs:label "surrounding water at mean sea level"^^xsd:string ; | 159 | + rdfs:comment "physical object that is the mean sea level of surrounding water"^^xsd:string ; |
| 160 | - rdfs:subClassOf ep-core:PhysicalObject . | 160 | + rdfs:label "surrounding water at mean sea level"^^xsd:string ; |
| 161 | - | 161 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 162 | -ep-fac:Template | 162 | + |
| 163 | - rdf:type owl:Class ; | 163 | +ep-fac:Template |
| 164 | - rdfs:comment "equipment that is an ocean bottom template"^^xsd:string ; | 164 | + rdf:type owl:Class ; |
| 165 | - rdfs:label "template"^^xsd:string ; | 165 | + rdfs:comment "equipment that is an ocean bottom template"^^xsd:string ; |
| 166 | - rdfs:subClassOf ep-fac:Facility ; | 166 | + rdfs:label "template"^^xsd:string ; |
| 167 | - ep-core:seeReferenceData | 167 | + rdfs:subClassOf ep-fac:Facility ; |
| 168 | - "http://posccaesar.org/rdl/RDS16551212"^^xsd:string . | 168 | + ep-core:seeReferenceData |
| 169 | - | 169 | + "http://posccaesar.org/rdl/RDS16551212"^^xsd:string . |
| 170 | -ep-fac:TemporalPartOfAField | 170 | + |
| 171 | - rdf:type owl:Class ; | 171 | +ep-fac:TemporalPartOfAField |
| 172 | - rdfs:comment "a temporal part of a field"^^xsd:string ; | 172 | + rdf:type owl:Class ; |
| 173 | - rdfs:label "temporal part of a field"^^xsd:string ; | 173 | + rdfs:comment "a temporal part of a field"^^xsd:string ; |
| 174 | - rdfs:subClassOf ep-fac:Facility . | 174 | + rdfs:label "temporal part of a field"^^xsd:string ; |
| 175 | - | 175 | + rdfs:subClassOf ep-fac:Facility . |
| 176 | -ep-fac:TemporalPartOfAProductionFacility | 176 | + |
| 177 | - rdf:type owl:Class ; | 177 | +ep-fac:TemporalPartOfAProductionFacility |
| 178 | - rdfs:comment "facility that is a temporal part of a production facility"^^xsd:string ; | 178 | + rdf:type owl:Class ; |
| 179 | - rdfs:label "temporal part of a production facility"^^xsd:string ; | 179 | + rdfs:comment "facility that is a temporal part of a production facility"^^xsd:string ; |
| 180 | - rdfs:subClassOf ep-fac:Facility . | 180 | + rdfs:label "temporal part of a production facility"^^xsd:string ; |
| 181 | - | 181 | + rdfs:subClassOf ep-fac:Facility . |
| 182 | -ep-fac:TemporalPartOfARig | 182 | + |
| 183 | - rdf:type owl:Class ; | 183 | +ep-fac:TemporalPartOfARig |
| 184 | - rdfs:comment "a temporal part of an oil and gas drilling facility"^^xsd:string ; | 184 | + rdf:type owl:Class ; |
| 185 | - rdfs:label "temporal part of a rig"^^xsd:string ; | 185 | + rdfs:comment "a temporal part of an oil and gas drilling facility"^^xsd:string ; |
| 186 | - rdfs:subClassOf ep-fac:Facility . | 186 | + rdfs:label "temporal part of a rig"^^xsd:string ; |
| 187 | - | 187 | + rdfs:subClassOf ep-fac:Facility . |
| 188 | -ep-fac:Zone | 188 | + |
| 189 | - rdf:type owl:Class ; | 189 | +ep-fac:Zone |
| 190 | - rdfs:comment "spatial part of a wellbore that is a zone"^^xsd:string ; | 190 | + rdf:type owl:Class ; |
| 191 | - rdfs:label "zone"^^xsd:string ; | 191 | + rdfs:comment "spatial part of a wellbore that is a zone"^^xsd:string ; |
| 192 | - rdfs:subClassOf ep-fac:Facility . | 192 | + rdfs:label "zone"^^xsd:string ; |
| 193 | - | 193 | + rdfs:subClassOf ep-fac:Facility . |
| 194 | -ep-fac:depthOfSurroundingWater | 194 | + |
| 195 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 195 | +ep-fac:depthOfSurroundingWater |
| 196 | - rdfs:comment "class_of_indirect_property that is the depth of surrounding water"^^xsd:string ; | 196 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 197 | - rdfs:domain ep-fac:SurroundingWater ; | 197 | + rdfs:comment "class_of_indirect_property that is the depth of surrounding water"^^xsd:string ; |
| 198 | - rdfs:label "depth of surrounding water"^^xsd:string ; | 198 | + rdfs:domain ep-fac:SurroundingWater ; |
| 199 | - rdfs:range ep-core:Length . | 199 | + rdfs:label "depth of surrounding water"^^xsd:string ; |
| 200 | + rdfs:range ep-core:Length . | ... | ... |
| ... | @@ -15,179 +15,180 @@ | ... | @@ -15,179 +15,180 @@ |
| 15 | 15 | ||
| 16 | <http://www.reportinghub.no/ep/schema/1.0/flow> | 16 | <http://www.reportinghub.no/ep/schema/1.0/flow> |
| 17 | rdf:type owl:Ontology ; | 17 | rdf:type owl:Ontology ; |
| 18 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/core> ; | 18 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> ; |
| 19 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 19 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 20 | 20 | ||
| 21 | ep-core:PhysicalThingAtInstant | 21 | ep-core:PhysicalThingAtInstant |
| 22 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 22 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 23 | rdfs:label "physical thing at instant"^^xsd:string ; | 23 | rdfs:label "physical thing at instant"^^xsd:string ; |
| 24 | rdfs:subClassOf ep-core:PhysicalThing . | 24 | rdfs:subClassOf ep-core:PhysicalThing . |
| 25 | 25 | ||
| 26 | ep-core:PhysicalThingDuringGasYearToDate | 26 | ep-core:PhysicalThingDuringGasYearToDate |
| 27 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 27 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 28 | rdfs:label "physical thing during gas year to date"^^xsd:string ; | 28 | rdfs:label "physical thing during gas year to date"^^xsd:string ; |
| 29 | rdfs:subClassOf ep-core:PhysicalThing . | 29 | rdfs:subClassOf ep-core:PhysicalThing . |
| 30 | 30 | ||
| 31 | ep-core:PhysicalThingDuringMonthToDate | 31 | ep-core:PhysicalThingDuringMonthToDate |
| 32 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 32 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 33 | rdfs:label "physical thing during month to date"^^xsd:string ; | 33 | rdfs:label "physical thing during month to date"^^xsd:string ; |
| 34 | rdfs:subClassOf ep-core:PhysicalThing . | 34 | rdfs:subClassOf ep-core:PhysicalThing . |
| 35 | 35 | ||
| 36 | ep-core:PhysicalThingDuringOneDay | 36 | ep-core:PhysicalThingDuringOneDay |
| 37 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 37 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 38 | rdfs:label "physical thing during one day"^^xsd:string ; | 38 | rdfs:label "physical thing during one day"^^xsd:string ; |
| 39 | rdfs:subClassOf ep-core:PhysicalThing . | 39 | rdfs:subClassOf ep-core:PhysicalThing . |
| 40 | 40 | ||
| 41 | ep-core:PhysicalThingDuringOneGasDay | 41 | ep-core:PhysicalThingDuringOneGasDay |
| 42 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 42 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 43 | rdfs:label "physical thing during one gas day"^^xsd:string ; | 43 | rdfs:label "physical thing during one gas day"^^xsd:string ; |
| 44 | rdfs:subClassOf ep-core:PhysicalThing . | 44 | rdfs:subClassOf ep-core:PhysicalThing . |
| 45 | 45 | ||
| 46 | ep-core:PhysicalThingDuringOneGasMonth | 46 | ep-core:PhysicalThingDuringOneGasMonth |
| 47 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 47 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 48 | rdfs:label "physical thing during one gas month"^^xsd:string ; | 48 | rdfs:label "physical thing during one gas month"^^xsd:string ; |
| 49 | rdfs:subClassOf ep-core:PhysicalThing . | 49 | rdfs:subClassOf ep-core:PhysicalThing . |
| 50 | 50 | ||
| 51 | ep-core:PhysicalThingDuringOneGasYear | 51 | ep-core:PhysicalThingDuringOneGasYear |
| 52 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 52 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 53 | rdfs:label "physical thing during one gas year"^^xsd:string ; | 53 | rdfs:label "physical thing during one gas year"^^xsd:string ; |
| 54 | rdfs:subClassOf ep-core:PhysicalThing . | 54 | rdfs:subClassOf ep-core:PhysicalThing . |
| 55 | 55 | ||
| 56 | ep-core:PhysicalThingDuringOneMonth | 56 | ep-core:PhysicalThingDuringOneMonth |
| 57 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 57 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 58 | rdfs:label "physical thing during one month"^^xsd:string ; | 58 | rdfs:label "physical thing during one month"^^xsd:string ; |
| 59 | rdfs:subClassOf ep-core:PhysicalThing . | 59 | rdfs:subClassOf ep-core:PhysicalThing . |
| 60 | 60 | ||
| 61 | ep-core:PhysicalThingDuringOneWeek | 61 | ep-core:PhysicalThingDuringOneWeek |
| 62 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 62 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 63 | rdfs:label "physical thing during one week"^^xsd:string ; | 63 | rdfs:label "physical thing during one week"^^xsd:string ; |
| 64 | rdfs:subClassOf ep-core:PhysicalThing . | 64 | rdfs:subClassOf ep-core:PhysicalThing . |
| 65 | 65 | ||
| 66 | ep-core:PhysicalThingDuringOneYear | 66 | ep-core:PhysicalThingDuringOneYear |
| 67 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 67 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 68 | rdfs:label "physical thing during one year"^^xsd:string ; | 68 | rdfs:label "physical thing during one year"^^xsd:string ; |
| 69 | rdfs:subClassOf ep-core:PhysicalThing . | 69 | rdfs:subClassOf ep-core:PhysicalThing . |
| 70 | 70 | ||
| 71 | ep-core:PhysicalThingDuringYearToDate | 71 | ep-core:PhysicalThingDuringYearToDate |
| 72 | - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; | 72 | + rdf:type ep-flow:TemporalPartDurationType , owl:Class ; |
| 73 | rdfs:label "physical thing during year to date"^^xsd:string ; | 73 | rdfs:label "physical thing during year to date"^^xsd:string ; |
| 74 | rdfs:subClassOf ep-core:PhysicalThing . | 74 | rdfs:subClassOf ep-core:PhysicalThing . |
| 75 | 75 | ||
| 76 | ep-flow:AllocatedFlow | 76 | ep-flow:AllocatedFlow |
| 77 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 77 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 78 | rdfs:comment "flow that is allocated back to a well as opposed to being measured at a well (source: MPR-XSD)"^^xsd:string ; | 78 | rdfs:comment "flow that is allocated back to a well as opposed to being measured at a well (source: MPR-XSD)"^^xsd:string ; |
| 79 | rdfs:label "allocated flow"^^xsd:string ; | 79 | rdfs:label "allocated flow"^^xsd:string ; |
| 80 | rdfs:subClassOf ep-flow:Flow . | 80 | rdfs:subClassOf ep-flow:Flow . |
| 81 | 81 | ||
| 82 | ep-flow:AllocatedInventory | 82 | ep-flow:AllocatedInventory |
| 83 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 83 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 84 | rdfs:comment "is \"allocated\" valid for an inventory"^^xsd:string ; | 84 | rdfs:comment "is \"allocated\" valid for an inventory"^^xsd:string ; |
| 85 | rdfs:label "allocated inventory"^^xsd:string ; | 85 | rdfs:label "allocated inventory"^^xsd:string ; |
| 86 | rdfs:subClassOf ep-flow:Inventory . | 86 | rdfs:subClassOf ep-flow:Inventory . |
| 87 | 87 | ||
| 88 | ep-flow:BudgetFlow | 88 | ep-flow:BudgetFlow |
| 89 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 89 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 90 | rdfs:comment "flow that is a performance requirement as determined by a budget (source: MPR-XSD)"^^xsd:string ; | 90 | rdfs:comment "flow that is a performance requirement as determined by a budget (source: MPR-XSD)"^^xsd:string ; |
| 91 | rdfs:label "budget flow"^^xsd:string ; | 91 | rdfs:label "budget flow"^^xsd:string ; |
| 92 | rdfs:subClassOf ep-flow:Flow . | 92 | rdfs:subClassOf ep-flow:Flow . |
| 93 | 93 | ||
| 94 | ep-flow:BudgetInventory | 94 | ep-flow:BudgetInventory |
| 95 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 95 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 96 | rdfs:comment "inventory that is a performance requirement determined by a budget (source: MPR-XSD)"^^xsd:string ; | 96 | rdfs:comment "inventory that is a performance requirement determined by a budget (source: MPR-XSD)"^^xsd:string ; |
| 97 | rdfs:label "budget inventory"^^xsd:string ; | 97 | rdfs:label "budget inventory"^^xsd:string ; |
| 98 | rdfs:subClassOf ep-flow:Inventory . | 98 | rdfs:subClassOf ep-flow:Inventory . |
| 99 | 99 | ||
| 100 | ep-flow:ClassOfMaterialWithMassCriterion | 100 | ep-flow:ClassOfMaterialWithMassCriterion |
| 101 | rdf:type rdfs:Class ; | 101 | rdf:type rdfs:Class ; |
| 102 | + rdfs:comment "NOTE: This class is used for the average daily mass of material in a particular flow. In this case the criteria for being a member of the class is that it is material taken from a particular flow during a reporting period, and that the material has the average mass of a daily flow during the reporting period."^^xsd:string , "class that has amounts of material with a particular mass as members"^^xsd:string ; | ||
| 102 | rdfs:label "class of material with mass criterion"^^xsd:string ; | 103 | rdfs:label "class of material with mass criterion"^^xsd:string ; |
| 103 | rdfs:subClassOf owl:Class . | 104 | rdfs:subClassOf owl:Class . |
| 104 | 105 | ||
| 105 | ep-flow:ConstraintFlow | 106 | ep-flow:ConstraintFlow |
| 106 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 107 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 107 | rdfs:comment "flow that is determined by an allowable or other performance limit. This includes allowables which are usually established by a regulatory agency for a product. (source: MPR-XSD)"^^xsd:string ; | 108 | rdfs:comment "flow that is determined by an allowable or other performance limit. This includes allowables which are usually established by a regulatory agency for a product. (source: MPR-XSD)"^^xsd:string ; |
| 108 | rdfs:label "constraint flow"^^xsd:string ; | 109 | rdfs:label "constraint flow"^^xsd:string ; |
| 109 | rdfs:subClassOf ep-flow:Flow . | 110 | rdfs:subClassOf ep-flow:Flow . |
| 110 | 111 | ||
| 111 | ep-flow:ConstraintFlow-fixed | 112 | ep-flow:ConstraintFlow-fixed |
| 112 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 113 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 113 | rdfs:comment "constraint flow that is the only permitted flow (source: MPR-XSD)"^^xsd:string ; | 114 | rdfs:comment "constraint flow that is the only permitted flow (source: MPR-XSD)"^^xsd:string ; |
| 114 | rdfs:label "constraint flow - fixed"^^xsd:string ; | 115 | rdfs:label "constraint flow - fixed"^^xsd:string ; |
| 115 | rdfs:subClassOf ep-flow:ConstraintFlow . | 116 | rdfs:subClassOf ep-flow:ConstraintFlow . |
| 116 | 117 | ||
| 117 | ep-flow:ConstraintFlow-maximum | 118 | ep-flow:ConstraintFlow-maximum |
| 118 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 119 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 119 | rdfs:comment "constraint flow that is the maximum permitted flow (source: MPR-XSD)"^^xsd:string ; | 120 | rdfs:comment "constraint flow that is the maximum permitted flow (source: MPR-XSD)"^^xsd:string ; |
| 120 | rdfs:label "constraint flow - maximum"^^xsd:string ; | 121 | rdfs:label "constraint flow - maximum"^^xsd:string ; |
| 121 | rdfs:subClassOf ep-flow:ConstraintFlow . | 122 | rdfs:subClassOf ep-flow:ConstraintFlow . |
| 122 | 123 | ||
| 123 | ep-flow:ConstraintFlow-minimum | 124 | ep-flow:ConstraintFlow-minimum |
| 124 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 125 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 125 | rdfs:comment "constraint flow that is the minimum permitted flow (source: MPR-XSD)"^^xsd:string ; | 126 | rdfs:comment "constraint flow that is the minimum permitted flow (source: MPR-XSD)"^^xsd:string ; |
| 126 | rdfs:label "constraint flow - minimum"^^xsd:string ; | 127 | rdfs:label "constraint flow - minimum"^^xsd:string ; |
| 127 | rdfs:subClassOf ep-flow:ConstraintFlow . | 128 | rdfs:subClassOf ep-flow:ConstraintFlow . |
| 128 | 129 | ||
| 129 | ep-flow:ConstraintInventory | 130 | ep-flow:ConstraintInventory |
| 130 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 131 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 131 | rdfs:comment "is \"constraint\" valid for an inventory"^^xsd:string ; | 132 | rdfs:comment "is \"constraint\" valid for an inventory"^^xsd:string ; |
| 132 | rdfs:label "constraint inventory"^^xsd:string ; | 133 | rdfs:label "constraint inventory"^^xsd:string ; |
| 133 | rdfs:subClassOf ep-flow:Inventory . | 134 | rdfs:subClassOf ep-flow:Inventory . |
| 134 | 135 | ||
| 135 | ep-flow:ConsumptionFlow | 136 | ep-flow:ConsumptionFlow |
| 136 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 137 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 137 | rdfs:comment "flow that is consumed by a facility (source: MPR-XSD)"^^xsd:string ; | 138 | rdfs:comment "flow that is consumed by a facility (source: MPR-XSD)"^^xsd:string ; |
| 138 | rdfs:label "consumption flow"^^xsd:string ; | 139 | rdfs:label "consumption flow"^^xsd:string ; |
| 139 | rdfs:subClassOf ep-flow:Flow . | 140 | rdfs:subClassOf ep-flow:Flow . |
| 140 | 141 | ||
| 141 | ep-flow:ConsumptionFlow-HPflare | 142 | ep-flow:ConsumptionFlow-HPflare |
| 142 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 143 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 143 | rdfs:comment "consumption flow - flare that is burned in a high pressure flare (source: MPR-XSD)"^^xsd:string ; | 144 | rdfs:comment "consumption flow - flare that is burned in a high pressure flare (source: MPR-XSD)"^^xsd:string ; |
| 144 | rdfs:label "consumption flow - HP flare"^^xsd:string ; | 145 | rdfs:label "consumption flow - HP flare"^^xsd:string ; |
| 145 | rdfs:subClassOf ep-flow:ConsumptionFlow-flare . | 146 | rdfs:subClassOf ep-flow:ConsumptionFlow-flare . |
| 146 | 147 | ||
| 147 | ep-flow:ConsumptionFlow-LPflare | 148 | ep-flow:ConsumptionFlow-LPflare |
| 148 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 149 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 149 | rdfs:comment "consumption flow - flare that is burned in a low pressure flare (source: MPR-XSD)"^^xsd:string ; | 150 | rdfs:comment "consumption flow - flare that is burned in a low pressure flare (source: MPR-XSD)"^^xsd:string ; |
| 150 | rdfs:label "consumption flow - LP flare"^^xsd:string ; | 151 | rdfs:label "consumption flow - LP flare"^^xsd:string ; |
| 151 | rdfs:subClassOf ep-flow:ConsumptionFlow-flare . | 152 | rdfs:subClassOf ep-flow:ConsumptionFlow-flare . |
| 152 | 153 | ||
| 153 | ep-flow:ConsumptionFlow-blackstart | 154 | ep-flow:ConsumptionFlow-blackstart |
| 154 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 155 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 155 | rdfs:comment "consumption flow that is to restart power facilities as a result of an overall power outage (source: MPR-XSD)"^^xsd:string ; | 156 | rdfs:comment "consumption flow that is to restart power facilities as a result of an overall power outage (source: MPR-XSD)"^^xsd:string ; |
| 156 | rdfs:label "consumption flow - blackstart"^^xsd:string ; | 157 | rdfs:label "consumption flow - blackstart"^^xsd:string ; |
| 157 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 158 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| 158 | 159 | ||
| 159 | ep-flow:ConsumptionFlow-compressor | 160 | ep-flow:ConsumptionFlow-compressor |
| 160 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 161 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 161 | rdfs:comment "consumption flow that is by a compressor (source: MPR-XSD)"^^xsd:string ; | 162 | rdfs:comment "consumption flow that is by a compressor (source: MPR-XSD)"^^xsd:string ; |
| 162 | rdfs:label "consumption flow - compressor"^^xsd:string ; | 163 | rdfs:label "consumption flow - compressor"^^xsd:string ; |
| 163 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 164 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| 164 | 165 | ||
| 165 | ep-flow:ConsumptionFlow-emitted | 166 | ep-flow:ConsumptionFlow-emitted |
| 166 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 167 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 167 | rdfs:comment "consumption flow that is released into the atmosphere as a by-product of consumption (source: MPR-XSD)"^^xsd:string ; | 168 | rdfs:comment "consumption flow that is released into the atmosphere as a by-product of consumption (source: MPR-XSD)"^^xsd:string ; |
| 168 | rdfs:label "consumption flow - emitted"^^xsd:string ; | 169 | rdfs:label "consumption flow - emitted"^^xsd:string ; |
| 169 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 170 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| 170 | 171 | ||
| 171 | ep-flow:ConsumptionFlow-flare | 172 | ep-flow:ConsumptionFlow-flare |
| 172 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 173 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 173 | rdfs:comment "consumption flow that is burned in a flare. A fluid stream that has one or more flares as the ultimate target. (source: MPR-XSD)"^^xsd:string ; | 174 | rdfs:comment "consumption flow that is burned in a flare. A fluid stream that has one or more flares as the ultimate target. (source: MPR-XSD)"^^xsd:string ; |
| 174 | rdfs:label "consumption flow - flare"^^xsd:string ; | 175 | rdfs:label "consumption flow - flare"^^xsd:string ; |
| 175 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 176 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| 176 | 177 | ||
| 177 | ep-flow:ConsumptionFlow-fuel | 178 | ep-flow:ConsumptionFlow-fuel |
| 178 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 179 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 179 | rdfs:comment "consumption flow that is by processing equipment (source: MPR-XSD)"^^xsd:string ; | 180 | rdfs:comment "consumption flow that is by processing equipment (source: MPR-XSD)"^^xsd:string ; |
| 180 | rdfs:label "consumption flow - fuel"^^xsd:string ; | 181 | rdfs:label "consumption flow - fuel"^^xsd:string ; |
| 181 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 182 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| 182 | 183 | ||
| 183 | ep-flow:ConsumptionFlow-noncompressor | 184 | ep-flow:ConsumptionFlow-noncompressor |
| 184 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 185 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 185 | rdfs:comment "consumption flow that is by a device other than a compressor (source: MPR-XSD)"^^xsd:string ; | 186 | rdfs:comment "consumption flow that is by a device other than a compressor (source: MPR-XSD)"^^xsd:string ; |
| 186 | rdfs:label "consumption flow - non-compressor"^^xsd:string ; | 187 | rdfs:label "consumption flow - non-compressor"^^xsd:string ; |
| 187 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 188 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| 188 | 189 | ||
| 189 | ep-flow:ConsumptionFlow-venting | 190 | ep-flow:ConsumptionFlow-venting |
| 190 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 191 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 191 | rdfs:comment "consumption flow that is released into the atmosphere (source: MPR-XSD)"^^xsd:string ; | 192 | rdfs:comment "consumption flow that is released into the atmosphere (source: MPR-XSD)"^^xsd:string ; |
| 192 | rdfs:label "consumption flow - venting"^^xsd:string ; | 193 | rdfs:label "consumption flow - venting"^^xsd:string ; |
| 193 | rdfs:subClassOf ep-flow:ConsumptionFlow . | 194 | rdfs:subClassOf ep-flow:ConsumptionFlow . |
| ... | @@ -205,31 +206,31 @@ ep-flow:DailyProductionFlow | ... | @@ -205,31 +206,31 @@ ep-flow:DailyProductionFlow |
| 205 | rdfs:subClassOf ep-flow:ProductionFlow . | 206 | rdfs:subClassOf ep-flow:ProductionFlow . |
| 206 | 207 | ||
| 207 | ep-flow:DerivedFlow | 208 | ep-flow:DerivedFlow |
| 208 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 209 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 209 | rdfs:comment "flow that is derived directly from one or more other flows (source: MPR-XSD)"^^xsd:string ; | 210 | rdfs:comment "flow that is derived directly from one or more other flows (source: MPR-XSD)"^^xsd:string ; |
| 210 | rdfs:label "derived flow"^^xsd:string ; | 211 | rdfs:label "derived flow"^^xsd:string ; |
| 211 | rdfs:subClassOf ep-flow:Flow . | 212 | rdfs:subClassOf ep-flow:Flow . |
| 212 | 213 | ||
| 213 | ep-flow:DerivedFlow-difference | 214 | ep-flow:DerivedFlow-difference |
| 214 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 215 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 215 | rdfs:comment "derived flow that is the difference between two other flows (source: MPR-XSD)"^^xsd:string ; | 216 | rdfs:comment "derived flow that is the difference between two other flows (source: MPR-XSD)"^^xsd:string ; |
| 216 | rdfs:label "derived flow - difference"^^xsd:string ; | 217 | rdfs:label "derived flow - difference"^^xsd:string ; |
| 217 | rdfs:subClassOf ep-flow:DerivedFlow . | 218 | rdfs:subClassOf ep-flow:DerivedFlow . |
| 218 | 219 | ||
| 219 | ep-flow:DerivedInventory | 220 | ep-flow:DerivedInventory |
| 220 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 221 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 221 | rdfs:comment "is \"derived\" valid for an inventory"^^xsd:string ; | 222 | rdfs:comment "is \"derived\" valid for an inventory"^^xsd:string ; |
| 222 | rdfs:label "derived inventory"^^xsd:string ; | 223 | rdfs:label "derived inventory"^^xsd:string ; |
| 223 | rdfs:subClassOf ep-flow:Inventory . | 224 | rdfs:subClassOf ep-flow:Inventory . |
| 224 | 225 | ||
| 225 | ep-flow:DifferenceFlow | 226 | ep-flow:DifferenceFlow |
| 226 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 227 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 227 | rdfs:comment "flow that is the difference between two flows, e.g. a target flow and a metered flow (source: MPR-XSD)"^^xsd:string ; | 228 | rdfs:comment "flow that is the difference between two flows, e.g. a target flow and a metered flow (source: MPR-XSD)"^^xsd:string ; |
| 228 | rdfs:label "difference flow"^^xsd:string ; | 229 | rdfs:label "difference flow"^^xsd:string ; |
| 229 | rdfs:subClassOf ep-flow:Flow . | 230 | rdfs:subClassOf ep-flow:Flow . |
| 230 | 231 | ||
| 231 | ep-flow:DifferenceInventory | 232 | ep-flow:DifferenceInventory |
| 232 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 233 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 233 | rdfs:comment "is \"difference\" valid for an inventory"^^xsd:string ; | 234 | rdfs:comment "is \"difference\" valid for an inventory"^^xsd:string ; |
| 234 | rdfs:label "difference inventory"^^xsd:string ; | 235 | rdfs:label "difference inventory"^^xsd:string ; |
| 235 | rdfs:subClassOf ep-flow:Inventory . | 236 | rdfs:subClassOf ep-flow:Inventory . |
| ... | @@ -241,37 +242,37 @@ ep-flow:ElectricPowerFlow | ... | @@ -241,37 +242,37 @@ ep-flow:ElectricPowerFlow |
| 241 | rdfs:subClassOf ep-flow:Flow . | 242 | rdfs:subClassOf ep-flow:Flow . |
| 242 | 243 | ||
| 243 | ep-flow:EstimatedFlow | 244 | ep-flow:EstimatedFlow |
| 244 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 245 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 245 | rdfs:comment "flow that is estimated or calculated, possibly based on comparable product flow units, but not based on reservoir simulations for the particular product flow unit (source: MPR-XSD)"^^xsd:string ; | 246 | rdfs:comment "flow that is estimated or calculated, possibly based on comparable product flow units, but not based on reservoir simulations for the particular product flow unit (source: MPR-XSD)"^^xsd:string ; |
| 246 | rdfs:label "estimated flow"^^xsd:string ; | 247 | rdfs:label "estimated flow"^^xsd:string ; |
| 247 | rdfs:subClassOf ep-flow:Flow . | 248 | rdfs:subClassOf ep-flow:Flow . |
| 248 | 249 | ||
| 249 | ep-flow:EstimatedInventory | 250 | ep-flow:EstimatedInventory |
| 250 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 251 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 251 | rdfs:comment "is \"estimated\" valid for an inventory"^^xsd:string ; | 252 | rdfs:comment "is \"estimated\" valid for an inventory"^^xsd:string ; |
| 252 | rdfs:label "estimated inventory"^^xsd:string ; | 253 | rdfs:label "estimated inventory"^^xsd:string ; |
| 253 | rdfs:subClassOf ep-flow:Inventory . | 254 | rdfs:subClassOf ep-flow:Inventory . |
| 254 | 255 | ||
| 255 | ep-flow:ExportFlow | 256 | ep-flow:ExportFlow |
| 256 | - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; | 257 | + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; |
| 257 | rdfs:comment "flow that leaves a facility for commercial purposes (source: MPR-XSD)"^^xsd:string ; | 258 | rdfs:comment "flow that leaves a facility for commercial purposes (source: MPR-XSD)"^^xsd:string ; |
| 258 | rdfs:label "export"^^xsd:string ; | 259 | rdfs:label "export"^^xsd:string ; |
| 259 | rdfs:subClassOf ep-flow:Flow . | 260 | rdfs:subClassOf ep-flow:Flow . |
| 260 | 261 | ||
| 261 | ep-flow:ExportFlow-nominated | 262 | ep-flow:ExportFlow-nominated |
| 262 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 263 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 263 | rdfs:comment "export flow that is planned (source: MPR-XSD)"^^xsd:string ; | 264 | rdfs:comment "export flow that is planned (source: MPR-XSD)"^^xsd:string ; |
| 264 | rdfs:label "export flow nominated"^^xsd:string ; | 265 | rdfs:label "export flow nominated"^^xsd:string ; |
| 265 | rdfs:subClassOf ep-flow:ExportFlow . | 266 | rdfs:subClassOf ep-flow:ExportFlow . |
| 266 | 267 | ||
| 267 | ep-flow:ExportFlow-requested | 268 | ep-flow:ExportFlow-requested |
| 268 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 269 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 269 | rdfs:comment "export flow that is requested (source: MPR-XSD)"^^xsd:string ; | 270 | rdfs:comment "export flow that is requested (source: MPR-XSD)"^^xsd:string ; |
| 270 | rdfs:label "export flow requested"^^xsd:string ; | 271 | rdfs:label "export flow requested"^^xsd:string ; |
| 271 | rdfs:subClassOf ep-flow:ExportFlow . | 272 | rdfs:subClassOf ep-flow:ExportFlow . |
| 272 | 273 | ||
| 273 | ep-flow:ExportFlow-shortfall | 274 | ep-flow:ExportFlow-shortfall |
| 274 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 275 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 275 | rdfs:comment "export flow that is the difference between what was requested and what was delivered (source: MPR-XSD)"^^xsd:string ; | 276 | rdfs:comment "export flow that is the difference between what was requested and what was delivered (source: MPR-XSD)"^^xsd:string ; |
| 276 | rdfs:label "export flow shortfall"^^xsd:string ; | 277 | rdfs:label "export flow shortfall"^^xsd:string ; |
| 277 | rdfs:subClassOf ep-flow:ExportFlow . | 278 | rdfs:subClassOf ep-flow:ExportFlow . |
| ... | @@ -343,67 +344,67 @@ ep-flow:FlowOfLiquid | ... | @@ -343,67 +344,67 @@ ep-flow:FlowOfLiquid |
| 343 | rdfs:subClassOf ep-flow:Flow . | 344 | rdfs:subClassOf ep-flow:Flow . |
| 344 | 345 | ||
| 345 | ep-flow:FlowToSale | 346 | ep-flow:FlowToSale |
| 346 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 347 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 347 | rdfs:comment "flow that is sold and transported to a buyer by pipeline (source: MPR-XSD)"^^xsd:string ; | 348 | rdfs:comment "flow that is sold and transported to a buyer by pipeline (source: MPR-XSD)"^^xsd:string ; |
| 348 | rdfs:label "flow to sale"^^xsd:string ; | 349 | rdfs:label "flow to sale"^^xsd:string ; |
| 349 | rdfs:subClassOf ep-flow:Flow . | 350 | rdfs:subClassOf ep-flow:Flow . |
| 350 | 351 | ||
| 351 | ep-flow:FlowToStorage | 352 | ep-flow:FlowToStorage |
| 352 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 353 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 353 | rdfs:comment "flow that is directed to one or more storage locations (source: MPR-XSD)"^^xsd:string ; | 354 | rdfs:comment "flow that is directed to one or more storage locations (source: MPR-XSD)"^^xsd:string ; |
| 354 | rdfs:label "flow to storage"^^xsd:string ; | 355 | rdfs:label "flow to storage"^^xsd:string ; |
| 355 | rdfs:subClassOf ep-flow:Flow . | 356 | rdfs:subClassOf ep-flow:Flow . |
| 356 | 357 | ||
| 357 | ep-flow:ForecastFlow | 358 | ep-flow:ForecastFlow |
| 358 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 359 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 359 | rdfs:comment "flow that is a forecast (source: MPR-XSD)"^^xsd:string ; | 360 | rdfs:comment "flow that is a forecast (source: MPR-XSD)"^^xsd:string ; |
| 360 | rdfs:label "forecast flow"^^xsd:string ; | 361 | rdfs:label "forecast flow"^^xsd:string ; |
| 361 | rdfs:subClassOf ep-flow:Flow . | 362 | rdfs:subClassOf ep-flow:Flow . |
| 362 | 363 | ||
| 363 | ep-flow:ForecastFlow-declineCurve | 364 | ep-flow:ForecastFlow-declineCurve |
| 364 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 365 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 365 | rdfs:comment "forecast flow that is calculated using a pseudo decline-curve of flow rate over time. This presumes that the flow will not be interrupted over the time period. (source: MPR-XSD)"^^xsd:string ; | 366 | rdfs:comment "forecast flow that is calculated using a pseudo decline-curve of flow rate over time. This presumes that the flow will not be interrupted over the time period. (source: MPR-XSD)"^^xsd:string ; |
| 366 | rdfs:label "forecast flow - decline curve"^^xsd:string ; | 367 | rdfs:label "forecast flow - decline curve"^^xsd:string ; |
| 367 | rdfs:subClassOf ep-flow:ForecastFlow . | 368 | rdfs:subClassOf ep-flow:ForecastFlow . |
| 368 | 369 | ||
| 369 | ep-flow:ForecastFlow-standard | 370 | ep-flow:ForecastFlow-standard |
| 370 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 371 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 371 | rdfs:comment "forecast flow that is a standard forecast as opposed to calculated using a decline curve (source: MPR-XSD)"^^xsd:string ; | 372 | rdfs:comment "forecast flow that is a standard forecast as opposed to calculated using a decline curve (source: MPR-XSD)"^^xsd:string ; |
| 372 | rdfs:label "forecast flow - standard"^^xsd:string ; | 373 | rdfs:label "forecast flow - standard"^^xsd:string ; |
| 373 | rdfs:subClassOf ep-flow:ForecastFlow . | 374 | rdfs:subClassOf ep-flow:ForecastFlow . |
| 374 | 375 | ||
| 375 | ep-flow:ForecastInventory | 376 | ep-flow:ForecastInventory |
| 376 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 377 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 377 | rdfs:comment "inventory that is a forecast (source: MPR-XSD)"^^xsd:string ; | 378 | rdfs:comment "inventory that is a forecast (source: MPR-XSD)"^^xsd:string ; |
| 378 | rdfs:label "forecast inventory"^^xsd:string ; | 379 | rdfs:label "forecast inventory"^^xsd:string ; |
| 379 | rdfs:subClassOf ep-flow:Inventory . | 380 | rdfs:subClassOf ep-flow:Inventory . |
| 380 | 381 | ||
| 381 | ep-flow:GasLiftFlow | 382 | ep-flow:GasLiftFlow |
| 382 | - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; | 383 | + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; |
| 383 | rdfs:comment "injection flow into a producing well to reduce the hydrostataic pressure of the fluid column. The resulting reduction in bottom hole pressure allows the reservoir liquids to flow. (source: MPR-XSD)"^^xsd:string ; | 384 | rdfs:comment "injection flow into a producing well to reduce the hydrostataic pressure of the fluid column. The resulting reduction in bottom hole pressure allows the reservoir liquids to flow. (source: MPR-XSD)"^^xsd:string ; |
| 384 | rdfs:label "gas lift flow"^^xsd:string ; | 385 | rdfs:label "gas lift flow"^^xsd:string ; |
| 385 | rdfs:subClassOf ep-flow:InjectionFlow . | 386 | rdfs:subClassOf ep-flow:InjectionFlow . |
| 386 | 387 | ||
| 387 | ep-flow:GrossProductFlow | 388 | ep-flow:GrossProductFlow |
| 388 | - rdf:type owl:Class , ep-flow:ProductFlowGrossOrNetType ; | 389 | + rdf:type ep-flow:ProductFlowGrossOrNetType , owl:Class ; |
| 389 | rdfs:comment "probably a mistake - should be rolled up as condensate-gross or oil-gross"^^xsd:string ; | 390 | rdfs:comment "probably a mistake - should be rolled up as condensate-gross or oil-gross"^^xsd:string ; |
| 390 | rdfs:label "gross product flow"^^xsd:string ; | 391 | rdfs:label "gross product flow"^^xsd:string ; |
| 391 | rdfs:subClassOf ep-flow:ProductFlow . | 392 | rdfs:subClassOf ep-flow:ProductFlow . |
| 392 | 393 | ||
| 393 | ep-flow:HydrocarbonAccountingFlow | 394 | ep-flow:HydrocarbonAccountingFlow |
| 394 | - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; | 395 | + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; |
| 395 | rdfs:comment "flow that is an accounting of all of the fluids into and out of Stock (i.e., Inventory) which includes all storage facilities at a site including fluid within a pipeline (source: MPR-XSD)"^^xsd:string ; | 396 | rdfs:comment "flow that is an accounting of all of the fluids into and out of Stock (i.e., Inventory) which includes all storage facilities at a site including fluid within a pipeline (source: MPR-XSD)"^^xsd:string ; |
| 396 | rdfs:label "hydrocarbon accounting"^^xsd:string ; | 397 | rdfs:label "hydrocarbon accounting"^^xsd:string ; |
| 397 | rdfs:subClassOf ep-flow:Flow . | 398 | rdfs:subClassOf ep-flow:Flow . |
| 398 | 399 | ||
| 399 | ep-flow:ImportFlow | 400 | ep-flow:ImportFlow |
| 400 | - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; | 401 | + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; |
| 401 | rdfs:comment "flow that enters a facility for commercial purposes (source: MPR-XSD)"^^xsd:string ; | 402 | rdfs:comment "flow that enters a facility for commercial purposes (source: MPR-XSD)"^^xsd:string ; |
| 402 | rdfs:label "import"^^xsd:string ; | 403 | rdfs:label "import"^^xsd:string ; |
| 403 | rdfs:subClassOf ep-flow:Flow . | 404 | rdfs:subClassOf ep-flow:Flow . |
| 404 | 405 | ||
| 405 | ep-flow:InjectionFlow | 406 | ep-flow:InjectionFlow |
| 406 | - rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; | 407 | + rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; |
| 407 | rdfs:comment "flow that is injected into a well (source: MPR-XSD)"^^xsd:string ; | 408 | rdfs:comment "flow that is injected into a well (source: MPR-XSD)"^^xsd:string ; |
| 408 | rdfs:label "injection flow"^^xsd:string ; | 409 | rdfs:label "injection flow"^^xsd:string ; |
| 409 | rdfs:subClassOf ep-flow:Flow . | 410 | rdfs:subClassOf ep-flow:Flow . |
| ... | @@ -415,79 +416,79 @@ ep-flow:Inventory | ... | @@ -415,79 +416,79 @@ ep-flow:Inventory |
| 415 | rdfs:subClassOf ep-core:PhysicalObject . | 416 | rdfs:subClassOf ep-core:PhysicalObject . |
| 416 | 417 | ||
| 417 | ep-flow:MassAdjustedFlow | 418 | ep-flow:MassAdjustedFlow |
| 418 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 419 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 419 | rdfs:comment "flow that <not documented in XSD>"^^xsd:string ; | 420 | rdfs:comment "flow that <not documented in XSD>"^^xsd:string ; |
| 420 | rdfs:label "mass adjusted flow"^^xsd:string ; | 421 | rdfs:label "mass adjusted flow"^^xsd:string ; |
| 421 | rdfs:subClassOf ep-flow:Flow . | 422 | rdfs:subClassOf ep-flow:Flow . |
| 422 | 423 | ||
| 423 | ep-flow:MeasuredFlow | 424 | ep-flow:MeasuredFlow |
| 424 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 425 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 425 | rdfs:comment "flow that is actually measured at the port (source: MPR-XSD)"^^xsd:string ; | 426 | rdfs:comment "flow that is actually measured at the port (source: MPR-XSD)"^^xsd:string ; |
| 426 | rdfs:label "measured flow"^^xsd:string ; | 427 | rdfs:label "measured flow"^^xsd:string ; |
| 427 | rdfs:subClassOf ep-flow:Flow . | 428 | rdfs:subClassOf ep-flow:Flow . |
| 428 | 429 | ||
| 429 | ep-flow:MeasuredFlow-fiscal | 430 | ep-flow:MeasuredFlow-fiscal |
| 430 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 431 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 431 | rdfs:comment "measured flow that was measured for fiscal purposes"^^xsd:string ; | 432 | rdfs:comment "measured flow that was measured for fiscal purposes"^^xsd:string ; |
| 432 | rdfs:label "measured flow - fiscal"^^xsd:string ; | 433 | rdfs:label "measured flow - fiscal"^^xsd:string ; |
| 433 | rdfs:subClassOf ep-flow:MeasuredFlow . | 434 | rdfs:subClassOf ep-flow:MeasuredFlow . |
| 434 | 435 | ||
| 435 | ep-flow:MeasuredFlow-raw | 436 | ep-flow:MeasuredFlow-raw |
| 436 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 437 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 437 | rdfs:comment "measured flow that is a raw measurement (source: MPR-XSD)"^^xsd:string ; | 438 | rdfs:comment "measured flow that is a raw measurement (source: MPR-XSD)"^^xsd:string ; |
| 438 | rdfs:label "measured flow - raw"^^xsd:string ; | 439 | rdfs:label "measured flow - raw"^^xsd:string ; |
| 439 | rdfs:subClassOf ep-flow:MeasuredFlow . | 440 | rdfs:subClassOf ep-flow:MeasuredFlow . |
| 440 | 441 | ||
| 441 | ep-flow:MeasuredFlow-recalibrated | 442 | ep-flow:MeasuredFlow-recalibrated |
| 442 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ; | 443 | + rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; |
| 443 | rdfs:comment "measured flow that has been changed because of a recalibration of a sensor (source: MPR-XSD)"^^xsd:string ; | 444 | rdfs:comment "measured flow that has been changed because of a recalibration of a sensor (source: MPR-XSD)"^^xsd:string ; |
| 444 | rdfs:label "measured flow - recalibrated"^^xsd:string ; | 445 | rdfs:label "measured flow - recalibrated"^^xsd:string ; |
| 445 | rdfs:subClassOf ep-flow:MeasuredFlow . | 446 | rdfs:subClassOf ep-flow:MeasuredFlow . |
| 446 | 447 | ||
| 447 | ep-flow:MeasuredInventory | 448 | ep-flow:MeasuredInventory |
| 448 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 449 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 449 | rdfs:comment "inventory that is actually measured (source: MPR-XSD)"^^xsd:string ; | 450 | rdfs:comment "inventory that is actually measured (source: MPR-XSD)"^^xsd:string ; |
| 450 | rdfs:label "measured inventory"^^xsd:string ; | 451 | rdfs:label "measured inventory"^^xsd:string ; |
| 451 | rdfs:subClassOf ep-flow:Inventory . | 452 | rdfs:subClassOf ep-flow:Inventory . |
| 452 | 453 | ||
| 453 | ep-flow:MeteredFlowFiscal | 454 | ep-flow:MeteredFlowFiscal |
| 454 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 455 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 455 | rdfs:comment "flow that is generated by measurement and calculation and has an impact on company revenue and government taxation"^^xsd:string ; | 456 | rdfs:comment "flow that is generated by measurement and calculation and has an impact on company revenue and government taxation"^^xsd:string ; |
| 456 | rdfs:label "metered flow fiscal"^^xsd:string ; | 457 | rdfs:label "metered flow fiscal"^^xsd:string ; |
| 457 | rdfs:subClassOf ep-flow:Flow . | 458 | rdfs:subClassOf ep-flow:Flow . |
| 458 | 459 | ||
| 459 | ep-flow:NetProductFlow | 460 | ep-flow:NetProductFlow |
| 460 | - rdf:type owl:Class , ep-flow:ProductFlowGrossOrNetType ; | 461 | + rdf:type ep-flow:ProductFlowGrossOrNetType , owl:Class ; |
| 461 | rdfs:comment "probably a mistake - should be rolled up as condensate-net"^^xsd:string ; | 462 | rdfs:comment "probably a mistake - should be rolled up as condensate-net"^^xsd:string ; |
| 462 | rdfs:label "net product flow"^^xsd:string ; | 463 | rdfs:label "net product flow"^^xsd:string ; |
| 463 | rdfs:subClassOf ep-flow:ProductFlow . | 464 | rdfs:subClassOf ep-flow:ProductFlow . |
| 464 | 465 | ||
| 465 | ep-flow:NominatedFlow | 466 | ep-flow:NominatedFlow |
| 466 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 467 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 467 | rdfs:comment "flow that is a promise to a buyer. Normally a 1 day forcast. (source: MPR-XSD)"^^xsd:string ; | 468 | rdfs:comment "flow that is a promise to a buyer. Normally a 1 day forcast. (source: MPR-XSD)"^^xsd:string ; |
| 468 | rdfs:label "nominated flow"^^xsd:string ; | 469 | rdfs:label "nominated flow"^^xsd:string ; |
| 469 | rdfs:subClassOf ep-flow:Flow . | 470 | rdfs:subClassOf ep-flow:Flow . |
| 470 | 471 | ||
| 471 | ep-flow:NominatedInventory | 472 | ep-flow:NominatedInventory |
| 472 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 473 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 473 | rdfs:comment "is \"nominated\" valid for an inventory"^^xsd:string ; | 474 | rdfs:comment "is \"nominated\" valid for an inventory"^^xsd:string ; |
| 474 | rdfs:label "nominated inventory"^^xsd:string ; | 475 | rdfs:label "nominated inventory"^^xsd:string ; |
| 475 | rdfs:subClassOf ep-flow:Inventory . | 476 | rdfs:subClassOf ep-flow:Inventory . |
| 476 | 477 | ||
| 477 | ep-flow:OverboardFlow | 478 | ep-flow:OverboardFlow |
| 478 | - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; | 479 | + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; |
| 479 | rdfs:comment "flow that is overboard into the sea (source: MPR-XSD)"^^xsd:string ; | 480 | rdfs:comment "flow that is overboard into the sea (source: MPR-XSD)"^^xsd:string ; |
| 480 | rdfs:label "overboard"^^xsd:string ; | 481 | rdfs:label "overboard"^^xsd:string ; |
| 481 | rdfs:subClassOf ep-flow:Flow . | 482 | rdfs:subClassOf ep-flow:Flow . |
| 482 | 483 | ||
| 483 | ep-flow:PotentialFlow | 484 | ep-flow:PotentialFlow |
| 484 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 485 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 485 | rdfs:comment "flow that is the estimated maximum possible (source: MPR-XSD)"^^xsd:string ; | 486 | rdfs:comment "flow that is the estimated maximum possible (source: MPR-XSD)"^^xsd:string ; |
| 486 | rdfs:label "potential flow"^^xsd:string ; | 487 | rdfs:label "potential flow"^^xsd:string ; |
| 487 | rdfs:subClassOf ep-flow:Flow . | 488 | rdfs:subClassOf ep-flow:Flow . |
| 488 | 489 | ||
| 489 | ep-flow:PotentialInventory | 490 | ep-flow:PotentialInventory |
| 490 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 491 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 491 | rdfs:comment "inventory that is the estimated maximum possible (source: MPR-XSD)"^^xsd:string ; | 492 | rdfs:comment "inventory that is the estimated maximum possible (source: MPR-XSD)"^^xsd:string ; |
| 492 | rdfs:label "potential inventory"^^xsd:string ; | 493 | rdfs:label "potential inventory"^^xsd:string ; |
| 493 | rdfs:subClassOf ep-flow:Inventory . | 494 | rdfs:subClassOf ep-flow:Inventory . |
| ... | @@ -505,13 +506,13 @@ ep-flow:PrecipitationType | ... | @@ -505,13 +506,13 @@ ep-flow:PrecipitationType |
| 505 | rdfs:subClassOf owl:Class . | 506 | rdfs:subClassOf owl:Class . |
| 506 | 507 | ||
| 507 | ep-flow:ProcessedFlow | 508 | ep-flow:ProcessedFlow |
| 508 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 509 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 509 | rdfs:comment "flow that has been processed. This is different from derived flow because it is fundamentally a variation of the original flow. (source: MPR-XSD)"^^xsd:string ; | 510 | rdfs:comment "flow that has been processed. This is different from derived flow because it is fundamentally a variation of the original flow. (source: MPR-XSD)"^^xsd:string ; |
| 510 | rdfs:label "processed flow"^^xsd:string ; | 511 | rdfs:label "processed flow"^^xsd:string ; |
| 511 | rdfs:subClassOf ep-flow:Flow . | 512 | rdfs:subClassOf ep-flow:Flow . |
| 512 | 513 | ||
| 513 | ep-flow:ProcessedInventory | 514 | ep-flow:ProcessedInventory |
| 514 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 515 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 515 | rdfs:comment "inventory that is defined by processing measured values. This is different from a derived inventory because it is fundamentally a variation of the original. (source: MPR-XSD)"^^xsd:string ; | 516 | rdfs:comment "inventory that is defined by processing measured values. This is different from a derived inventory because it is fundamentally a variation of the original. (source: MPR-XSD)"^^xsd:string ; |
| 516 | rdfs:label "processed inventory"^^xsd:string ; | 517 | rdfs:label "processed inventory"^^xsd:string ; |
| 517 | rdfs:subClassOf ep-flow:Inventory . | 518 | rdfs:subClassOf ep-flow:Inventory . |
| ... | @@ -524,6 +525,7 @@ ep-flow:ProductFlow | ... | @@ -524,6 +525,7 @@ ep-flow:ProductFlow |
| 524 | 525 | ||
| 525 | ep-flow:ProductFlowGrossOrNetType | 526 | ep-flow:ProductFlowGrossOrNetType |
| 526 | rdf:type rdfs:Class ; | 527 | rdf:type rdfs:Class ; |
| 528 | + rdfs:comment "probably a mistake - should be rolled up as condensate-gross or oil-gross"^^xsd:string ; | ||
| 527 | rdfs:label "product flow gross or net type"^^xsd:string ; | 529 | rdfs:label "product flow gross or net type"^^xsd:string ; |
| 528 | rdfs:subClassOf owl:Class . | 530 | rdfs:subClassOf owl:Class . |
| 529 | 531 | ||
| ... | @@ -540,31 +542,31 @@ ep-flow:ProductInventory | ... | @@ -540,31 +542,31 @@ ep-flow:ProductInventory |
| 540 | rdfs:subClassOf ep-flow:Inventory . | 542 | rdfs:subClassOf ep-flow:Inventory . |
| 541 | 543 | ||
| 542 | ep-flow:ProductInventoryAdjustedClosingBalance | 544 | ep-flow:ProductInventoryAdjustedClosingBalance |
| 543 | - rdf:type owl:Class , ep-flow:ProductInventoryType ; | 545 | + rdf:type ep-flow:ProductInventoryType , owl:Class ; |
| 544 | rdfs:comment "product inventory that <not documented in XSD>"^^xsd:string ; | 546 | rdfs:comment "product inventory that <not documented in XSD>"^^xsd:string ; |
| 545 | rdfs:label "product inventory adjusted closing balance"^^xsd:string ; | 547 | rdfs:label "product inventory adjusted closing balance"^^xsd:string ; |
| 546 | rdfs:subClassOf ep-flow:ProductInventory . | 548 | rdfs:subClassOf ep-flow:ProductInventory . |
| 547 | 549 | ||
| 548 | ep-flow:ProductInventoryClosingBalance | 550 | ep-flow:ProductInventoryClosingBalance |
| 549 | - rdf:type owl:Class , ep-flow:ProductInventoryType ; | 551 | + rdf:type ep-flow:ProductInventoryType , owl:Class ; |
| 550 | rdfs:comment "product inventory that is at the end of a time period (source: MPR-XSD)"^^xsd:string ; | 552 | rdfs:comment "product inventory that is at the end of a time period (source: MPR-XSD)"^^xsd:string ; |
| 551 | rdfs:label "product inventory closing balance"^^xsd:string ; | 553 | rdfs:label "product inventory closing balance"^^xsd:string ; |
| 552 | rdfs:subClassOf ep-flow:ProductInventory . | 554 | rdfs:subClassOf ep-flow:ProductInventory . |
| 553 | 555 | ||
| 554 | ep-flow:ProductInventoryClosingStorageBalance | 556 | ep-flow:ProductInventoryClosingStorageBalance |
| 555 | - rdf:type owl:Class , ep-flow:ProductInventoryType ; | 557 | + rdf:type ep-flow:ProductInventoryType , owl:Class ; |
| 556 | rdfs:comment "product inventory closing balance that has been adjusted"^^xsd:string ; | 558 | rdfs:comment "product inventory closing balance that has been adjusted"^^xsd:string ; |
| 557 | rdfs:label "product inventory closing storage balance"^^xsd:string ; | 559 | rdfs:label "product inventory closing storage balance"^^xsd:string ; |
| 558 | rdfs:subClassOf ep-flow:ProductInventory . | 560 | rdfs:subClassOf ep-flow:ProductInventory . |
| 559 | 561 | ||
| 560 | ep-flow:ProductInventoryOpFlex | 562 | ep-flow:ProductInventoryOpFlex |
| 561 | - rdf:type owl:Class , ep-flow:ProductInventoryType ; | 563 | + rdf:type ep-flow:ProductInventoryType , owl:Class ; |
| 562 | rdfs:comment "product inventory that is the unused and availiable quantity of gas within a gas transportation system and/or at one or many gas producing fields that is accessible by the operator responsible for gas transportation for the purposes of alleviating field curtailment (source: MPR-XSD)"^^xsd:string ; | 564 | rdfs:comment "product inventory that is the unused and availiable quantity of gas within a gas transportation system and/or at one or many gas producing fields that is accessible by the operator responsible for gas transportation for the purposes of alleviating field curtailment (source: MPR-XSD)"^^xsd:string ; |
| 563 | rdfs:label "product inventory opFlex"^^xsd:string ; | 565 | rdfs:label "product inventory opFlex"^^xsd:string ; |
| 564 | rdfs:subClassOf ep-flow:ProductInventory . | 566 | rdfs:subClassOf ep-flow:ProductInventory . |
| 565 | 567 | ||
| 566 | ep-flow:ProductInventoryOpeningBalance | 568 | ep-flow:ProductInventoryOpeningBalance |
| 567 | - rdf:type owl:Class , ep-flow:ProductInventoryType ; | 569 | + rdf:type ep-flow:ProductInventoryType , owl:Class ; |
| 568 | rdfs:comment "product inventory that is at the beginning of a time period (source: MPR-XSD)"^^xsd:string ; | 570 | rdfs:comment "product inventory that is at the beginning of a time period (source: MPR-XSD)"^^xsd:string ; |
| 569 | rdfs:label "product inventory opening balance"^^xsd:string ; | 571 | rdfs:label "product inventory opening balance"^^xsd:string ; |
| 570 | rdfs:subClassOf ep-flow:ProductInventory . | 572 | rdfs:subClassOf ep-flow:ProductInventory . |
| ... | @@ -582,7 +584,7 @@ ep-flow:ProductMaterialType | ... | @@ -582,7 +584,7 @@ ep-flow:ProductMaterialType |
| 582 | rdfs:subClassOf owl:Class . | 584 | rdfs:subClassOf owl:Class . |
| 583 | 585 | ||
| 584 | ep-flow:ProductionExploitation | 586 | ep-flow:ProductionExploitation |
| 585 | - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; | 587 | + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ; |
| 586 | rdfs:comment "flow that is exploited from a reservoir. This is independent of any disposition. (source: MPR-XSD)"^^xsd:string ; | 588 | rdfs:comment "flow that is exploited from a reservoir. This is independent of any disposition. (source: MPR-XSD)"^^xsd:string ; |
| 587 | rdfs:label "production exploitation"^^xsd:string ; | 589 | rdfs:label "production exploitation"^^xsd:string ; |
| 588 | rdfs:subClassOf ep-flow:Flow . | 590 | rdfs:subClassOf ep-flow:Flow . |
| ... | @@ -682,67 +684,67 @@ ep-flow:ProductionTestWellHeadFlow | ... | @@ -682,67 +684,67 @@ ep-flow:ProductionTestWellHeadFlow |
| 682 | rdfs:subClassOf ep-flow:Flow . | 684 | rdfs:subClassOf ep-flow:Flow . |
| 683 | 685 | ||
| 684 | ep-flow:QuotaFlow | 686 | ep-flow:QuotaFlow |
| 685 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 687 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 686 | rdfs:comment "flow that is set by some authority, and that may or may not be based on technical criteria (source: MPR-XSD)"^^xsd:string ; | 688 | rdfs:comment "flow that is set by some authority, and that may or may not be based on technical criteria (source: MPR-XSD)"^^xsd:string ; |
| 687 | rdfs:label "quota flow"^^xsd:string ; | 689 | rdfs:label "quota flow"^^xsd:string ; |
| 688 | rdfs:subClassOf ep-flow:Flow . | 690 | rdfs:subClassOf ep-flow:Flow . |
| 689 | 691 | ||
| 690 | ep-flow:QuotaInventory | 692 | ep-flow:QuotaInventory |
| 691 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 693 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 692 | rdfs:comment "inventory set by some authority, which may or may not be based on technical criteria (source: MPR-XSD)"^^xsd:string ; | 694 | rdfs:comment "inventory set by some authority, which may or may not be based on technical criteria (source: MPR-XSD)"^^xsd:string ; |
| 693 | rdfs:label "quota inventory"^^xsd:string ; | 695 | rdfs:label "quota inventory"^^xsd:string ; |
| 694 | rdfs:subClassOf ep-flow:Inventory . | 696 | rdfs:subClassOf ep-flow:Inventory . |
| 695 | 697 | ||
| 696 | ep-flow:RecommendedFlow | 698 | ep-flow:RecommendedFlow |
| 697 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 699 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 698 | rdfs:comment "flow that is believed to be very desirable if it can be achieved. This a recommendation that something be changed in order to achieve this flow. (source: MPR-XSD)"^^xsd:string ; | 700 | rdfs:comment "flow that is believed to be very desirable if it can be achieved. This a recommendation that something be changed in order to achieve this flow. (source: MPR-XSD)"^^xsd:string ; |
| 699 | rdfs:label "recommended flow"^^xsd:string ; | 701 | rdfs:label "recommended flow"^^xsd:string ; |
| 700 | rdfs:subClassOf ep-flow:Flow . | 702 | rdfs:subClassOf ep-flow:Flow . |
| 701 | 703 | ||
| 702 | ep-flow:RecommendedInventory | 704 | ep-flow:RecommendedInventory |
| 703 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 705 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 704 | rdfs:comment "inventory that is believed to be very desirable if it can be achieved. This a recommendation that something be changed in order to achieve this. (source: MPR-XSD)"^^xsd:string ; | 706 | rdfs:comment "inventory that is believed to be very desirable if it can be achieved. This a recommendation that something be changed in order to achieve this. (source: MPR-XSD)"^^xsd:string ; |
| 705 | rdfs:label "recommended inventory"^^xsd:string ; | 707 | rdfs:label "recommended inventory"^^xsd:string ; |
| 706 | rdfs:subClassOf ep-flow:Inventory . | 708 | rdfs:subClassOf ep-flow:Inventory . |
| 707 | 709 | ||
| 708 | ep-flow:SaleableFlow | 710 | ep-flow:SaleableFlow |
| 709 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 711 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 710 | rdfs:comment "flow that is of a product marked as being saleable. Hence the final destination would be sale. (source: MPR-XSD)"^^xsd:string ; | 712 | rdfs:comment "flow that is of a product marked as being saleable. Hence the final destination would be sale. (source: MPR-XSD)"^^xsd:string ; |
| 711 | rdfs:label "saleable flow"^^xsd:string ; | 713 | rdfs:label "saleable flow"^^xsd:string ; |
| 712 | rdfs:subClassOf ep-flow:Flow . | 714 | rdfs:subClassOf ep-flow:Flow . |
| 713 | 715 | ||
| 714 | ep-flow:SaleableInventory | 716 | ep-flow:SaleableInventory |
| 715 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 717 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 716 | rdfs:comment "inventory that is of marked as being saleable. Hence the final destination of the material would be a sale. (source: MPR-XSD)"^^xsd:string ; | 718 | rdfs:comment "inventory that is of marked as being saleable. Hence the final destination of the material would be a sale. (source: MPR-XSD)"^^xsd:string ; |
| 717 | rdfs:label "saleable inventory"^^xsd:string ; | 719 | rdfs:label "saleable inventory"^^xsd:string ; |
| 718 | rdfs:subClassOf ep-flow:Inventory . | 720 | rdfs:subClassOf ep-flow:Inventory . |
| 719 | 721 | ||
| 720 | ep-flow:SimulatedFlow | 722 | ep-flow:SimulatedFlow |
| 721 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 723 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 722 | rdfs:comment "flow that is estimated based on a simulation that includes the particular product flow unit (source: MPR-XSD)"^^xsd:string ; | 724 | rdfs:comment "flow that is estimated based on a simulation that includes the particular product flow unit (source: MPR-XSD)"^^xsd:string ; |
| 723 | rdfs:label "simulated flow"^^xsd:string ; | 725 | rdfs:label "simulated flow"^^xsd:string ; |
| 724 | rdfs:subClassOf ep-flow:Flow . | 726 | rdfs:subClassOf ep-flow:Flow . |
| 725 | 727 | ||
| 726 | ep-flow:SimulatedInventory | 728 | ep-flow:SimulatedInventory |
| 727 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 729 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 728 | rdfs:comment "inventory that is an estimate based upon a simulation (source: MPR-XSD)"^^xsd:string ; | 730 | rdfs:comment "inventory that is an estimate based upon a simulation (source: MPR-XSD)"^^xsd:string ; |
| 729 | rdfs:label "simulated inventory"^^xsd:string ; | 731 | rdfs:label "simulated inventory"^^xsd:string ; |
| 730 | rdfs:subClassOf ep-flow:Inventory . | 732 | rdfs:subClassOf ep-flow:Inventory . |
| 731 | 733 | ||
| 732 | ep-flow:TargetFlow | 734 | ep-flow:TargetFlow |
| 733 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 735 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 734 | rdfs:comment "flow that is desired (source: MPR-XSD)"^^xsd:string ; | 736 | rdfs:comment "flow that is desired (source: MPR-XSD)"^^xsd:string ; |
| 735 | rdfs:label "target flow"^^xsd:string ; | 737 | rdfs:label "target flow"^^xsd:string ; |
| 736 | rdfs:subClassOf ep-flow:Flow . | 738 | rdfs:subClassOf ep-flow:Flow . |
| 737 | 739 | ||
| 738 | ep-flow:TargetInventory | 740 | ep-flow:TargetInventory |
| 739 | - rdf:type owl:Class , ep-flow:ProductionInventoryDefinitionType ; | 741 | + rdf:type ep-flow:ProductionInventoryDefinitionType , owl:Class ; |
| 740 | rdfs:comment "inventory that is desired (source: MPR-XSD)"^^xsd:string ; | 742 | rdfs:comment "inventory that is desired (source: MPR-XSD)"^^xsd:string ; |
| 741 | rdfs:label "target inventory"^^xsd:string ; | 743 | rdfs:label "target inventory"^^xsd:string ; |
| 742 | rdfs:subClassOf ep-flow:Inventory . | 744 | rdfs:subClassOf ep-flow:Inventory . |
| 743 | 745 | ||
| 744 | ep-flow:TariffBasisFlow | 746 | ep-flow:TariffBasisFlow |
| 745 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 747 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 746 | rdfs:comment "flow that <not documented in XSD>"^^xsd:string ; | 748 | rdfs:comment "flow that <not documented in XSD>"^^xsd:string ; |
| 747 | rdfs:label "tariff basis flow"^^xsd:string ; | 749 | rdfs:label "tariff basis flow"^^xsd:string ; |
| 748 | rdfs:subClassOf ep-flow:Flow . | 750 | rdfs:subClassOf ep-flow:Flow . |
| ... | @@ -754,7 +756,7 @@ ep-flow:TemporalPartDurationType | ... | @@ -754,7 +756,7 @@ ep-flow:TemporalPartDurationType |
| 754 | rdfs:subClassOf owl:Class . | 756 | rdfs:subClassOf owl:Class . |
| 755 | 757 | ||
| 756 | ep-flow:ValueAdjustedFlow | 758 | ep-flow:ValueAdjustedFlow |
| 757 | - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; | 759 | + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; |
| 758 | rdfs:comment "flow that <not documented in XSD>"^^xsd:string ; | 760 | rdfs:comment "flow that <not documented in XSD>"^^xsd:string ; |
| 759 | rdfs:label "value adjusted flow"^^xsd:string ; | 761 | rdfs:label "value adjusted flow"^^xsd:string ; |
| 760 | rdfs:subClassOf ep-flow:Flow . | 762 | rdfs:subClassOf ep-flow:Flow . |
| ... | @@ -775,19 +777,19 @@ ep-flow:WholeLifeProductFlow | ... | @@ -775,19 +777,19 @@ ep-flow:WholeLifeProductFlow |
| 775 | rdf:type owl:Class ; | 777 | rdf:type owl:Class ; |
| 776 | rdfs:comment "product flow that is the whole life of a flow of product"^^xsd:string ; | 778 | rdfs:comment "product flow that is the whole life of a flow of product"^^xsd:string ; |
| 777 | rdfs:label "whole life product flow"^^xsd:string ; | 779 | rdfs:label "whole life product flow"^^xsd:string ; |
| 778 | - rdfs:subClassOf ep-flow:WholeLifeFlow , ep-flow:ProductFlow . | 780 | + rdfs:subClassOf ep-flow:ProductFlow , ep-flow:WholeLifeFlow . |
| 779 | 781 | ||
| 780 | ep-flow:WholeLifeProductInventory | 782 | ep-flow:WholeLifeProductInventory |
| 781 | rdf:type owl:Class ; | 783 | rdf:type owl:Class ; |
| 782 | rdfs:comment "product inventory that is the whole life of the managed store of product"^^xsd:string ; | 784 | rdfs:comment "product inventory that is the whole life of the managed store of product"^^xsd:string ; |
| 783 | rdfs:label "whole life product inventory"^^xsd:string ; | 785 | rdfs:label "whole life product inventory"^^xsd:string ; |
| 784 | - rdfs:subClassOf ep-flow:WholeLifeInventory , ep-flow:ProductInventory . | 786 | + rdfs:subClassOf ep-flow:ProductInventory , ep-flow:WholeLifeInventory . |
| 785 | 787 | ||
| 786 | ep-flow:WholeLifeProductionFlow | 788 | ep-flow:WholeLifeProductionFlow |
| 787 | rdf:type owl:Class ; | 789 | rdf:type owl:Class ; |
| 788 | rdfs:comment "production flow that is the whole life of a flow of produced material"^^xsd:string ; | 790 | rdfs:comment "production flow that is the whole life of a flow of produced material"^^xsd:string ; |
| 789 | rdfs:label "whole life production flow"^^xsd:string ; | 791 | rdfs:label "whole life production flow"^^xsd:string ; |
| 790 | - rdfs:subClassOf ep-flow:WholeLifeFlow , ep-flow:ProductionFlow . | 792 | + rdfs:subClassOf ep-flow:ProductionFlow , ep-flow:WholeLifeFlow . |
| 791 | 793 | ||
| 792 | ep-flow:WholeLifeProductionFlowNetwork | 794 | ep-flow:WholeLifeProductionFlowNetwork |
| 793 | rdf:type owl:Class ; | 795 | rdf:type owl:Class ; |
| ... | @@ -799,7 +801,7 @@ ep-flow:WholeLifeProductionInventory | ... | @@ -799,7 +801,7 @@ ep-flow:WholeLifeProductionInventory |
| 799 | rdf:type owl:Class ; | 801 | rdf:type owl:Class ; |
| 800 | rdfs:comment "production inventory that is the whole life of a store of produced material"^^xsd:string ; | 802 | rdfs:comment "production inventory that is the whole life of a store of produced material"^^xsd:string ; |
| 801 | rdfs:label "whole life production inventory"^^xsd:string ; | 803 | rdfs:label "whole life production inventory"^^xsd:string ; |
| 802 | - rdfs:subClassOf ep-flow:WholeLifeInventory , ep-flow:ProductionInventory . | 804 | + rdfs:subClassOf ep-flow:ProductionInventory , ep-flow:WholeLifeInventory . |
| 803 | 805 | ||
| 804 | ep-flow:WholeLifeProductionInventoryCollection | 806 | ep-flow:WholeLifeProductionInventoryCollection |
| 805 | rdf:type owl:Class ; | 807 | rdf:type owl:Class ; |
| ... | @@ -814,28 +816,28 @@ ep-flow:Wind | ... | @@ -814,28 +816,28 @@ ep-flow:Wind |
| 814 | rdfs:subClassOf ep-flow:Flow . | 816 | rdfs:subClassOf ep-flow:Flow . |
| 815 | 817 | ||
| 816 | ep-flow:allocatedTo | 818 | ep-flow:allocatedTo |
| 817 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 819 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 818 | rdfs:comment "facility that a split of a flow or inventory is allocated to"^^xsd:string ; | 820 | rdfs:comment "facility that a split of a flow or inventory is allocated to"^^xsd:string ; |
| 819 | rdfs:domain ep-core:PhysicalObject ; | 821 | rdfs:domain ep-core:PhysicalObject ; |
| 820 | rdfs:label "allocatedTo"^^xsd:string ; | 822 | rdfs:label "allocatedTo"^^xsd:string ; |
| 821 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> . | 823 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 822 | 824 | ||
| 823 | ep-flow:amountOfPrecipitation | 825 | ep-flow:amountOfPrecipitation |
| 824 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 826 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 825 | rdfs:comment "volume per unit area of material that falls in a precipitation"^^xsd:string ; | 827 | rdfs:comment "volume per unit area of material that falls in a precipitation"^^xsd:string ; |
| 826 | rdfs:domain ep-flow:Precipitation ; | 828 | rdfs:domain ep-flow:Precipitation ; |
| 827 | rdfs:label "amount of precipitation"^^xsd:string ; | 829 | rdfs:label "amount of precipitation"^^xsd:string ; |
| 828 | rdfs:range ep-core:Length . | 830 | rdfs:range ep-core:Length . |
| 829 | 831 | ||
| 830 | ep-flow:dailyAverageAmountOfMaterial | 832 | ep-flow:dailyAverageAmountOfMaterial |
| 831 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 833 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 832 | rdfs:comment "mass that is the average of the masses of the materials that flows in different days"^^xsd:string ; | 834 | rdfs:comment "mass that is the average of the masses of the materials that flows in different days"^^xsd:string ; |
| 833 | rdfs:domain ep-flow:Flow ; | 835 | rdfs:domain ep-flow:Flow ; |
| 834 | rdfs:label "daily average amount of material"^^xsd:string ; | 836 | rdfs:label "daily average amount of material"^^xsd:string ; |
| 835 | rdfs:range ep-flow:ClassOfMaterialWithMassCriterion . | 837 | rdfs:range ep-flow:ClassOfMaterialWithMassCriterion . |
| 836 | 838 | ||
| 837 | ep-flow:energyContent | 839 | ep-flow:energyContent |
| 838 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 840 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 839 | rdfs:comment "energy of combustion in a quantity of material"^^xsd:string ; | 841 | rdfs:comment "energy of combustion in a quantity of material"^^xsd:string ; |
| 840 | rdfs:domain ep-material:QuantityOfMaterial ; | 842 | rdfs:domain ep-material:QuantityOfMaterial ; |
| 841 | rdfs:label "energy content"^^xsd:string ; | 843 | rdfs:label "energy content"^^xsd:string ; |
| ... | @@ -886,7 +888,7 @@ ep-flow:flowOutOf | ... | @@ -886,7 +888,7 @@ ep-flow:flowOutOf |
| 886 | rdfs:subPropertyOf ep-flow:flowIntoOrOutOf . | 888 | rdfs:subPropertyOf ep-flow:flowIntoOrOutOf . |
| 887 | 889 | ||
| 888 | ep-flow:grossCalorificValue | 890 | ep-flow:grossCalorificValue |
| 889 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 891 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 890 | rdfs:comment "energy per volume that is the gross calorific value for a quantity of material"^^xsd:string ; | 892 | rdfs:comment "energy per volume that is the gross calorific value for a quantity of material"^^xsd:string ; |
| 891 | rdfs:domain ep-material:QuantityOfMaterial ; | 893 | rdfs:domain ep-material:QuantityOfMaterial ; |
| 892 | rdfs:label "gross calorific value"^^xsd:string ; | 894 | rdfs:label "gross calorific value"^^xsd:string ; |
| ... | @@ -909,33 +911,34 @@ ep-flow:hasNetworkPart | ... | @@ -909,33 +911,34 @@ ep-flow:hasNetworkPart |
| 909 | rdfs:subPropertyOf ep-core:hasPart . | 911 | rdfs:subPropertyOf ep-core:hasPart . |
| 910 | 912 | ||
| 911 | ep-flow:horizontalDirectionAzimuth | 913 | ep-flow:horizontalDirectionAzimuth |
| 912 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 914 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 913 | rdfs:comment "plane angle that is the horizontal direction azimuth of a flow"^^xsd:string ; | 915 | rdfs:comment "plane angle that is the horizontal direction azimuth of a flow"^^xsd:string ; |
| 914 | rdfs:domain ep-flow:Flow ; | 916 | rdfs:domain ep-flow:Flow ; |
| 915 | rdfs:label "horizontal direction azimuth"^^xsd:string ; | 917 | rdfs:label "horizontal direction azimuth"^^xsd:string ; |
| 916 | rdfs:range ep-core:PlaneAngle . | 918 | rdfs:range ep-core:PlaneAngle . |
| 917 | 919 | ||
| 920 | +ep-flow:massAtAccountingInstant | ||
| 921 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | ||
| 922 | + rdfs:comment "mass that is at the accounting instant for an inventory during a period"^^xsd:string ; | ||
| 923 | + rdfs:domain ep-flow:Inventory ; | ||
| 924 | + rdfs:label "mass at accounting instant"^^xsd:string ; | ||
| 925 | + rdfs:range ep-core:Mass . | ||
| 926 | + | ||
| 918 | ep-flow:materialThatFlows | 927 | ep-flow:materialThatFlows |
| 919 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 928 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 920 | rdfs:comment "quantity of material that moves during a flow"^^xsd:string ; | 929 | rdfs:comment "quantity of material that moves during a flow"^^xsd:string ; |
| 921 | rdfs:domain ep-flow:Flow ; | 930 | rdfs:domain ep-flow:Flow ; |
| 922 | rdfs:label "material that flows"^^xsd:string ; | 931 | rdfs:label "material that flows"^^xsd:string ; |
| 923 | rdfs:range ep-material:QuantityOfMaterial . | 932 | rdfs:range ep-material:QuantityOfMaterial . |
| 924 | 933 | ||
| 925 | ep-flow:rateOfFlowOfMaterial | 934 | ep-flow:rateOfFlowOfMaterial |
| 926 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 935 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 927 | rdfs:comment "not used in the MPR"^^xsd:string ; | 936 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 928 | rdfs:label "rate of flow of material"^^xsd:string ; | 937 | rdfs:label "rate of flow of material"^^xsd:string ; |
| 929 | rdfs:range ep-core:MeasureOfAmountOfMaterial . | 938 | rdfs:range ep-core:MeasureOfAmountOfMaterial . |
| 930 | 939 | ||
| 931 | -ep-flow:summedDailyMass | ||
| 932 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | ||
| 933 | - rdfs:domain ep-flow:Inventory ; | ||
| 934 | - rdfs:label "summed daily mass"^^xsd:string ; | ||
| 935 | - rdfs:range ep-core:Mass . | ||
| 936 | - | ||
| 937 | ep-flow:yearlyAverageAmountOfMaterial | 940 | ep-flow:yearlyAverageAmountOfMaterial |
| 938 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 941 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 939 | rdfs:comment "mass that is the average of the masses of the materials that flows in different years"^^xsd:string ; | 942 | rdfs:comment "mass that is the average of the masses of the materials that flows in different years"^^xsd:string ; |
| 940 | rdfs:domain ep-flow:Flow ; | 943 | rdfs:domain ep-flow:Flow ; |
| 941 | rdfs:label "yearly average amount of material"^^xsd:string ; | 944 | rdfs:label "yearly average amount of material"^^xsd:string ; | ... | ... |
| ... | @@ -48,7 +48,7 @@ | ... | @@ -48,7 +48,7 @@ |
| 48 | <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> | 48 | <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> |
| 49 | rdf:type owl:Class ; | 49 | rdf:type owl:Class ; |
| 50 | rdfs:label "production well test"^^xsd:string ; | 50 | rdfs:label "production well test"^^xsd:string ; |
| 51 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> , <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 51 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> , <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 52 | 52 | ||
| 53 | <http://www.reportinghub.no/ep/schema/activity#WellOperation> | 53 | <http://www.reportinghub.no/ep/schema/activity#WellOperation> |
| 54 | rdf:type ep-prodact:ProductionActivityType . | 54 | rdf:type ep-prodact:ProductionActivityType . |
| ... | @@ -94,17 +94,18 @@ ep-prodact:AccidentPreventionExercise | ... | @@ -94,17 +94,18 @@ ep-prodact:AccidentPreventionExercise |
| 94 | rdfs:subClassOf ep-prodact:DrillOrExcercise . | 94 | rdfs:subClassOf ep-prodact:DrillOrExcercise . |
| 95 | 95 | ||
| 96 | ep-prodact:AdministerFirstAid | 96 | ep-prodact:AdministerFirstAid |
| 97 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 97 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 98 | rdfs:label "administer first aid"^^xsd:string ; | 98 | rdfs:label "administer first aid"^^xsd:string ; |
| 99 | rdfs:subClassOf ep-prodact:MedicalTreatment . | 99 | rdfs:subClassOf ep-prodact:MedicalTreatment . |
| 100 | 100 | ||
| 101 | ep-prodact:AirTrafficOperation | 101 | ep-prodact:AirTrafficOperation |
| 102 | - rdf:type owl:Class , ep-prodact:ProductionActivityType ; | 102 | + rdf:type ep-prodact:ProductionActivityType , owl:Class ; |
| 103 | rdfs:label "air traffic operation"^^xsd:string ; | 103 | rdfs:label "air traffic operation"^^xsd:string ; |
| 104 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 104 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 105 | 105 | ||
| 106 | ep-prodact:Alarm | 106 | ep-prodact:Alarm |
| 107 | rdf:type owl:Class ; | 107 | rdf:type owl:Class ; |
| 108 | + rdfs:comment "activity that is raising an alarm"^^xsd:string ; | ||
| 108 | rdfs:label "alarm"^^xsd:string ; | 109 | rdfs:label "alarm"^^xsd:string ; |
| 109 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 110 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 110 | 111 | ||
| ... | @@ -124,32 +125,33 @@ ep-prodact:AlertType | ... | @@ -124,32 +125,33 @@ ep-prodact:AlertType |
| 124 | rdfs:subClassOf owl:Class . | 125 | rdfs:subClassOf owl:Class . |
| 125 | 126 | ||
| 126 | ep-prodact:AllocateSplitFactors | 127 | ep-prodact:AllocateSplitFactors |
| 127 | - rdf:type owl:Class , ep-prodact:SplitFactorDeterminationType ; | 128 | + rdf:type ep-prodact:SplitFactorDeterminationType , owl:Class ; |
| 129 | + rdfs:comment "activity that is allocating the fraction of a source flow that is assumed to go into different product streams"^^xsd:string ; | ||
| 128 | rdfs:label "allocate split factors"^^xsd:string ; | 130 | rdfs:label "allocate split factors"^^xsd:string ; |
| 129 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 131 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 130 | 132 | ||
| 131 | ep-prodact:AnnualProductionActivity | 133 | ep-prodact:AnnualProductionActivity |
| 132 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 134 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 133 | rdfs:comment "not used in the MPR"^^xsd:string ; | 135 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 134 | rdfs:label "annual production activity"^^xsd:string ; | 136 | rdfs:label "annual production activity"^^xsd:string ; |
| 135 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 137 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 136 | 138 | ||
| 137 | ep-prodact:AnnualProductionActivityToDate | 139 | ep-prodact:AnnualProductionActivityToDate |
| 138 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 140 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 139 | rdfs:label "annual production activity to date"^^xsd:string ; | 141 | rdfs:label "annual production activity to date"^^xsd:string ; |
| 140 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 142 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 141 | 143 | ||
| 142 | ep-prodact:AnnualProductionOperationToDate | 144 | ep-prodact:AnnualProductionOperationToDate |
| 143 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 145 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 144 | rdfs:comment "production operation from the beginning of an annual reporting period to a date within, or at the end of, the reporting period"^^xsd:string ; | 146 | rdfs:comment "production operation from the beginning of an annual reporting period to a date within, or at the end of, the reporting period"^^xsd:string ; |
| 145 | rdfs:label "annual production operation to date"^^xsd:string ; | 147 | rdfs:label "annual production operation to date"^^xsd:string ; |
| 146 | - rdfs:subClassOf ep-prodact:ProductionOperation , ep-prodact:AnnualProductionActivityToDate . | 148 | + rdfs:subClassOf ep-prodact:AnnualProductionActivityToDate , ep-prodact:ProductionOperation . |
| 147 | 149 | ||
| 148 | ep-prodact:AnnualProductionVolumeActivityToEndOfReportingPeriod | 150 | ep-prodact:AnnualProductionVolumeActivityToEndOfReportingPeriod |
| 149 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 151 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 150 | rdfs:comment "not used in the MPR"^^xsd:string ; | 152 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 151 | rdfs:label "annual production volume activity to the end of the reporting period"^^xsd:string ; | 153 | rdfs:label "annual production volume activity to the end of the reporting period"^^xsd:string ; |
| 152 | - rdfs:subClassOf ep-prodact:ProductionVolumeActivity , ep-prodact:AnnualProductionActivityToDate . | 154 | + rdfs:subClassOf ep-prodact:AnnualProductionActivityToDate , ep-prodact:ProductionVolumeActivity . |
| 153 | 155 | ||
| 154 | ep-prodact:BasketMovement | 156 | ep-prodact:BasketMovement |
| 155 | rdf:type owl:Class ; | 157 | rdf:type owl:Class ; |
| ... | @@ -162,29 +164,32 @@ ep-prodact:CargoShipOperation | ... | @@ -162,29 +164,32 @@ ep-prodact:CargoShipOperation |
| 162 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 164 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 163 | 165 | ||
| 164 | ep-prodact:ConstructionOperation | 166 | ep-prodact:ConstructionOperation |
| 165 | - rdf:type owl:Class , ep-prodact:ProductionActivityType ; | 167 | + rdf:type ep-prodact:ProductionActivityType , owl:Class ; |
| 168 | + rdfs:comment "Activity that is construction"^^xsd:string ; | ||
| 166 | rdfs:label "construction operation"^^xsd:string ; | 169 | rdfs:label "construction operation"^^xsd:string ; |
| 167 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 170 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> ; |
| 171 | + ep-core:seeReferenceData | ||
| 172 | + "http://posccaesar.org/rdl/RDS9685637"^^xsd:string . | ||
| 168 | 173 | ||
| 169 | ep-prodact:CumulativeProductionActivitySinceProductionBegan | 174 | ep-prodact:CumulativeProductionActivitySinceProductionBegan |
| 170 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 175 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 171 | rdfs:comment "not used in the MPR"^^xsd:string ; | 176 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 172 | rdfs:label "cumulative production activity since production began"^^xsd:string ; | 177 | rdfs:label "cumulative production activity since production began"^^xsd:string ; |
| 173 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 178 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 174 | 179 | ||
| 175 | ep-prodact:DailyProductionOperation | 180 | ep-prodact:DailyProductionOperation |
| 176 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 181 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 177 | rdfs:comment "not used in the MPR"^^xsd:string ; | 182 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 178 | rdfs:label "daily production operation"^^xsd:string ; | 183 | rdfs:label "daily production operation"^^xsd:string ; |
| 179 | rdfs:subClassOf ep-prodact:ProductionOperation . | 184 | rdfs:subClassOf ep-prodact:ProductionOperation . |
| 180 | 185 | ||
| 181 | ep-prodact:DailyProductionOperationProcessingLoss | 186 | ep-prodact:DailyProductionOperationProcessingLoss |
| 182 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 187 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 183 | rdfs:label "daily production operation processing loss"^^xsd:string ; | 188 | rdfs:label "daily production operation processing loss"^^xsd:string ; |
| 184 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 189 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 185 | 190 | ||
| 186 | ep-prodact:DailyProductionVolumeActivity | 191 | ep-prodact:DailyProductionVolumeActivity |
| 187 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 192 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 188 | rdfs:comment "not used in the MPR"^^xsd:string ; | 193 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 189 | rdfs:label "daily production volume activity"^^xsd:string ; | 194 | rdfs:label "daily production volume activity"^^xsd:string ; |
| 190 | rdfs:subClassOf ep-prodact:ProductionVolumeActivity . | 195 | rdfs:subClassOf ep-prodact:ProductionVolumeActivity . |
| ... | @@ -200,7 +205,7 @@ ep-prodact:DefinedHazardAndAccidentSituation | ... | @@ -200,7 +205,7 @@ ep-prodact:DefinedHazardAndAccidentSituation |
| 200 | rdfs:subClassOf ep-prodact:Incident . | 205 | rdfs:subClassOf ep-prodact:Incident . |
| 201 | 206 | ||
| 202 | ep-prodact:Deviation | 207 | ep-prodact:Deviation |
| 203 | - rdf:type owl:Class , ep-prodact:ProductionActivityType ; | 208 | + rdf:type ep-prodact:ProductionActivityType , owl:Class ; |
| 204 | rdfs:label "deviation"^^xsd:string ; | 209 | rdfs:label "deviation"^^xsd:string ; |
| 205 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 210 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 206 | 211 | ||
| ... | @@ -210,77 +215,77 @@ ep-prodact:DischargeWater | ... | @@ -210,77 +215,77 @@ ep-prodact:DischargeWater |
| 210 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 215 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 211 | 216 | ||
| 212 | ep-prodact:DrillOrExcercise | 217 | ep-prodact:DrillOrExcercise |
| 213 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 218 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 214 | rdfs:label "drill or exercise"^^xsd:string ; | 219 | rdfs:label "drill or exercise"^^xsd:string ; |
| 215 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 220 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 216 | 221 | ||
| 217 | ep-prodact:ExtendedMaintenanceTurnaround | 222 | ep-prodact:ExtendedMaintenanceTurnaround |
| 218 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 223 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 219 | rdfs:label "extended maintenance turnaround"^^xsd:string ; | 224 | rdfs:label "extended maintenance turnaround"^^xsd:string ; |
| 220 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 225 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 221 | 226 | ||
| 222 | ep-prodact:ExtendedMaintenanceTurnaroundExportTerminal | 227 | ep-prodact:ExtendedMaintenanceTurnaroundExportTerminal |
| 223 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 228 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 224 | rdfs:label "extended maintenance turnaround export terminal"^^xsd:string ; | 229 | rdfs:label "extended maintenance turnaround export terminal"^^xsd:string ; |
| 225 | rdfs:subClassOf ep-prodact:ExtendedMaintenanceTurnaround . | 230 | rdfs:subClassOf ep-prodact:ExtendedMaintenanceTurnaround . |
| 226 | 231 | ||
| 227 | ep-prodact:Fire | 232 | ep-prodact:Fire |
| 228 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 233 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 229 | rdfs:label "fire"^^xsd:string ; | 234 | rdfs:label "fire"^^xsd:string ; |
| 230 | rdfs:subClassOf ep-prodact:Incident . | 235 | rdfs:subClassOf ep-prodact:Incident . |
| 231 | 236 | ||
| 232 | ep-prodact:FluidLevelTest | 237 | ep-prodact:FluidLevelTest |
| 233 | rdf:type owl:Class ; | 238 | rdf:type owl:Class ; |
| 234 | rdfs:label "fluid level test"^^xsd:string ; | 239 | rdfs:label "fluid level test"^^xsd:string ; |
| 235 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> , <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 240 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> , <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 236 | 241 | ||
| 237 | ep-prodact:FluidSampling-DST | 242 | ep-prodact:FluidSampling-DST |
| 238 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 243 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 239 | rdfs:label "fluid sampling - DST"^^xsd:string ; | 244 | rdfs:label "fluid sampling - DST"^^xsd:string ; |
| 240 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 245 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 241 | 246 | ||
| 242 | ep-prodact:FluidSampling-RFTorMDT | 247 | ep-prodact:FluidSampling-RFTorMDT |
| 243 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 248 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 244 | rdfs:label "fluid sampling - RFT or MDT"^^xsd:string ; | 249 | rdfs:label "fluid sampling - RFT or MDT"^^xsd:string ; |
| 245 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 250 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 246 | 251 | ||
| 247 | ep-prodact:FluidSampling-bottomhole | 252 | ep-prodact:FluidSampling-bottomhole |
| 248 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 253 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 249 | rdfs:label "fluid sampling - bottomhole"^^xsd:string ; | 254 | rdfs:label "fluid sampling - bottomhole"^^xsd:string ; |
| 250 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 255 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 251 | 256 | ||
| 252 | ep-prodact:FluidSampling-formationTester | 257 | ep-prodact:FluidSampling-formationTester |
| 253 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 258 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 254 | rdfs:label "fluid sampling - formation tester"^^xsd:string ; | 259 | rdfs:label "fluid sampling - formation tester"^^xsd:string ; |
| 255 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 260 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 256 | 261 | ||
| 257 | ep-prodact:FluidSampling-recombined | 262 | ep-prodact:FluidSampling-recombined |
| 258 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 263 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 259 | rdfs:label "fluid sampling - recombined"^^xsd:string ; | 264 | rdfs:label "fluid sampling - recombined"^^xsd:string ; |
| 260 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 265 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 261 | 266 | ||
| 262 | ep-prodact:FluidSampling-separatorGas | 267 | ep-prodact:FluidSampling-separatorGas |
| 263 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 268 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 264 | rdfs:label "fluid sampling - separator gas"^^xsd:string ; | 269 | rdfs:label "fluid sampling - separator gas"^^xsd:string ; |
| 265 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 270 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 266 | 271 | ||
| 267 | ep-prodact:FluidSampling-separatorOil | 272 | ep-prodact:FluidSampling-separatorOil |
| 268 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 273 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 269 | rdfs:label "fluid sampling - separator oil"^^xsd:string ; | 274 | rdfs:label "fluid sampling - separator oil"^^xsd:string ; |
| 270 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 275 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 271 | 276 | ||
| 272 | ep-prodact:FluidSampling-separatorWater | 277 | ep-prodact:FluidSampling-separatorWater |
| 273 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 278 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 274 | rdfs:label "fluid sampling - separator water"^^xsd:string ; | 279 | rdfs:label "fluid sampling - separator water"^^xsd:string ; |
| 275 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 280 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 276 | 281 | ||
| 277 | ep-prodact:FluidSampling-synthetic | 282 | ep-prodact:FluidSampling-synthetic |
| 278 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 283 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 279 | rdfs:label "fluid sampling - synthetic"^^xsd:string ; | 284 | rdfs:label "fluid sampling - synthetic"^^xsd:string ; |
| 280 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 285 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 281 | 286 | ||
| 282 | ep-prodact:FluidSampling-wellhead | 287 | ep-prodact:FluidSampling-wellhead |
| 283 | - rdf:type owl:Class , ep-prodact:FluidSamplingType ; | 288 | + rdf:type ep-prodact:FluidSamplingType , owl:Class ; |
| 284 | rdfs:label "fluid sampling - wellhead"^^xsd:string ; | 289 | rdfs:label "fluid sampling - wellhead"^^xsd:string ; |
| 285 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . | 290 | rdfs:subClassOf ep-prodact:FluidSamplingAndAnalysis . |
| 286 | 291 | ||
| ... | @@ -306,7 +311,7 @@ ep-prodact:FusionOfPartsOfProductionActivityOverPeriod | ... | @@ -306,7 +311,7 @@ ep-prodact:FusionOfPartsOfProductionActivityOverPeriod |
| 306 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 311 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 307 | 312 | ||
| 308 | ep-prodact:HSEProblem | 313 | ep-prodact:HSEProblem |
| 309 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 314 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 310 | rdfs:label "HSE problem"^^xsd:string ; | 315 | rdfs:label "HSE problem"^^xsd:string ; |
| 311 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 316 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 312 | 317 | ||
| ... | @@ -321,14 +326,14 @@ ep-prodact:Incident | ... | @@ -321,14 +326,14 @@ ep-prodact:Incident |
| 321 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 326 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 322 | 327 | ||
| 323 | ep-prodact:InitialWellTest | 328 | ep-prodact:InitialWellTest |
| 324 | - rdf:type owl:Class , ep-prodact:WellTestReasonType ; | 329 | + rdf:type ep-prodact:WellTestReasonType , owl:Class ; |
| 325 | rdfs:label "initial"^^xsd:string ; | 330 | rdfs:label "initial"^^xsd:string ; |
| 326 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . | 331 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 327 | 332 | ||
| 328 | ep-prodact:InjectionWellTest | 333 | ep-prodact:InjectionWellTest |
| 329 | rdf:type owl:Class ; | 334 | rdf:type owl:Class ; |
| 330 | rdfs:label "injection well test"^^xsd:string ; | 335 | rdfs:label "injection well test"^^xsd:string ; |
| 331 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> , <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 336 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> , <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 332 | 337 | ||
| 333 | ep-prodact:Injury | 338 | ep-prodact:Injury |
| 334 | rdf:type owl:Class ; | 339 | rdf:type owl:Class ; |
| ... | @@ -336,22 +341,23 @@ ep-prodact:Injury | ... | @@ -336,22 +341,23 @@ ep-prodact:Injury |
| 336 | rdfs:subClassOf ep-prodact:AccidentOrInjury . | 341 | rdfs:subClassOf ep-prodact:AccidentOrInjury . |
| 337 | 342 | ||
| 338 | ep-prodact:IssueBillOfLading | 343 | ep-prodact:IssueBillOfLading |
| 339 | - rdf:type owl:Class , ep-prodact:SalesActivityType ; | 344 | + rdf:type ep-prodact:SalesActivityType , owl:Class ; |
| 345 | + rdfs:comment "sales activity that is issuing a bill of lading"^^xsd:string ; | ||
| 340 | rdfs:label "issue bill of lading"^^xsd:string ; | 346 | rdfs:label "issue bill of lading"^^xsd:string ; |
| 341 | rdfs:subClassOf ep-prodact:SalesActivity . | 347 | rdfs:subClassOf ep-prodact:SalesActivity . |
| 342 | 348 | ||
| 343 | ep-prodact:IssueWorkPermit | 349 | ep-prodact:IssueWorkPermit |
| 344 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 350 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 345 | rdfs:label "issue work permit"^^xsd:string ; | 351 | rdfs:label "issue work permit"^^xsd:string ; |
| 346 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 352 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 347 | 353 | ||
| 348 | ep-prodact:IssueWorkPermitWithSJA | 354 | ep-prodact:IssueWorkPermitWithSJA |
| 349 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 355 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 350 | rdfs:label "issue work permit with SJA"^^xsd:string ; | 356 | rdfs:label "issue work permit with SJA"^^xsd:string ; |
| 351 | rdfs:subClassOf ep-prodact:IssueWorkPermit . | 357 | rdfs:subClassOf ep-prodact:IssueWorkPermit . |
| 352 | 358 | ||
| 353 | ep-prodact:JobObservation | 359 | ep-prodact:JobObservation |
| 354 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 360 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 355 | rdfs:label "job observation"^^xsd:string ; | 361 | rdfs:label "job observation"^^xsd:string ; |
| 356 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 362 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 357 | 363 | ||
| ... | @@ -366,14 +372,16 @@ ep-prodact:LostTimeAccident | ... | @@ -366,14 +372,16 @@ ep-prodact:LostTimeAccident |
| 366 | rdfs:subClassOf ep-prodact:Incident . | 372 | rdfs:subClassOf ep-prodact:Incident . |
| 367 | 373 | ||
| 368 | ep-prodact:LostTimeIncident | 374 | ep-prodact:LostTimeIncident |
| 369 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 375 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 370 | rdfs:label "lost time incident"^^xsd:string ; | 376 | rdfs:label "lost time incident"^^xsd:string ; |
| 371 | rdfs:subClassOf ep-prodact:Incident . | 377 | rdfs:subClassOf ep-prodact:Incident . |
| 372 | 378 | ||
| 373 | ep-prodact:MaintenanceActivity | 379 | ep-prodact:MaintenanceActivity |
| 374 | - rdf:type owl:Class , ep-prodact:ProductionActivityType ; | 380 | + rdf:type ep-prodact:ProductionActivityType , owl:Class ; |
| 375 | rdfs:label "maintenance activity"^^xsd:string ; | 381 | rdfs:label "maintenance activity"^^xsd:string ; |
| 376 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 382 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; |
| 383 | + ep-core:seeReferenceData | ||
| 384 | + "http://posccaesar.org/rdl/RDS9661742"^^xsd:string . | ||
| 377 | 385 | ||
| 378 | ep-prodact:MakeAComment | 386 | ep-prodact:MakeAComment |
| 379 | rdf:type owl:Class ; | 387 | rdf:type owl:Class ; |
| ... | @@ -381,7 +389,8 @@ ep-prodact:MakeAComment | ... | @@ -381,7 +389,8 @@ ep-prodact:MakeAComment |
| 381 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 389 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 382 | 390 | ||
| 383 | ep-prodact:MakeATransaction | 391 | ep-prodact:MakeATransaction |
| 384 | - rdf:type owl:Class , ep-prodact:SalesActivityType ; | 392 | + rdf:type ep-prodact:SalesActivityType , owl:Class ; |
| 393 | + rdfs:comment "sales activity that is making a transaction"^^xsd:string ; | ||
| 385 | rdfs:label "make a transaction"^^xsd:string ; | 394 | rdfs:label "make a transaction"^^xsd:string ; |
| 386 | rdfs:subClassOf ep-prodact:SalesActivity . | 395 | rdfs:subClassOf ep-prodact:SalesActivity . |
| 387 | 396 | ||
| ... | @@ -391,12 +400,12 @@ ep-prodact:MarineOperation | ... | @@ -391,12 +400,12 @@ ep-prodact:MarineOperation |
| 391 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 400 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 392 | 401 | ||
| 393 | ep-prodact:MarkedGasLossOfExport | 402 | ep-prodact:MarkedGasLossOfExport |
| 394 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 403 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 395 | rdfs:label "marked gas loss of export"^^xsd:string ; | 404 | rdfs:label "marked gas loss of export"^^xsd:string ; |
| 396 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 405 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 397 | 406 | ||
| 398 | ep-prodact:MarkedOilLossOfExport | 407 | ep-prodact:MarkedOilLossOfExport |
| 399 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 408 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 400 | rdfs:label "marked oil loss of export"^^xsd:string ; | 409 | rdfs:label "marked oil loss of export"^^xsd:string ; |
| 401 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 410 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 402 | 411 | ||
| ... | @@ -406,7 +415,7 @@ ep-prodact:MeasurePropertiesOfAFlow | ... | @@ -406,7 +415,7 @@ ep-prodact:MeasurePropertiesOfAFlow |
| 406 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 415 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 407 | 416 | ||
| 408 | ep-prodact:MeasureSplitFactors | 417 | ep-prodact:MeasureSplitFactors |
| 409 | - rdf:type owl:Class , ep-prodact:SplitFactorDeterminationType ; | 418 | + rdf:type ep-prodact:SplitFactorDeterminationType , owl:Class ; |
| 410 | rdfs:label "measure split factors"^^xsd:string ; | 419 | rdfs:label "measure split factors"^^xsd:string ; |
| 411 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 420 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 412 | 421 | ||
| ... | @@ -416,28 +425,29 @@ ep-prodact:MedicalTreatment | ... | @@ -416,28 +425,29 @@ ep-prodact:MedicalTreatment |
| 416 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 425 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 417 | 426 | ||
| 418 | ep-prodact:MedicalTreatmentInjury | 427 | ep-prodact:MedicalTreatmentInjury |
| 419 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 428 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 420 | rdfs:label "medical treatment injury"^^xsd:string ; | 429 | rdfs:label "medical treatment injury"^^xsd:string ; |
| 421 | rdfs:subClassOf ep-prodact:Injury . | 430 | rdfs:subClassOf ep-prodact:Injury . |
| 422 | 431 | ||
| 423 | ep-prodact:ModificationProject | 432 | ep-prodact:ModificationProject |
| 424 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 433 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 425 | rdfs:label "modification project"^^xsd:string ; | 434 | rdfs:label "modification project"^^xsd:string ; |
| 426 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 435 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 427 | 436 | ||
| 428 | ep-prodact:MonthlyProductionActivityToEndOfReportingPeriod | 437 | ep-prodact:MonthlyProductionActivityToEndOfReportingPeriod |
| 429 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 438 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 430 | rdfs:comment "not used in the MPR"^^xsd:string ; | 439 | rdfs:comment "not used in the MPR"^^xsd:string ; |
| 431 | rdfs:label "monthly production activity to the end of the reporting period"^^xsd:string ; | 440 | rdfs:label "monthly production activity to the end of the reporting period"^^xsd:string ; |
| 432 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 441 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 433 | 442 | ||
| 434 | ep-prodact:MonthlyProductionOperationToDate | 443 | ep-prodact:MonthlyProductionOperationToDate |
| 435 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 444 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 436 | rdfs:label "monthly production operation to date"^^xsd:string ; | 445 | rdfs:label "monthly production operation to date"^^xsd:string ; |
| 437 | rdfs:subClassOf ep-prodact:ProductionOperation . | 446 | rdfs:subClassOf ep-prodact:ProductionOperation . |
| 438 | 447 | ||
| 439 | ep-prodact:MovementOfProduct | 448 | ep-prodact:MovementOfProduct |
| 440 | rdf:type owl:Class ; | 449 | rdf:type owl:Class ; |
| 450 | + rdfs:comment "activity that is the movement of a product"^^xsd:string ; | ||
| 441 | rdfs:label "movement of product"^^xsd:string ; | 451 | rdfs:label "movement of product"^^xsd:string ; |
| 442 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 452 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 443 | 453 | ||
| ... | @@ -447,22 +457,22 @@ ep-prodact:MovementOfProductType | ... | @@ -447,22 +457,22 @@ ep-prodact:MovementOfProductType |
| 447 | rdfs:subClassOf owl:Class . | 457 | rdfs:subClassOf owl:Class . |
| 448 | 458 | ||
| 449 | ep-prodact:NearMiss | 459 | ep-prodact:NearMiss |
| 450 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 460 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 451 | rdfs:label "near miss"^^xsd:string ; | 461 | rdfs:label "near miss"^^xsd:string ; |
| 452 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 462 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 453 | 463 | ||
| 454 | ep-prodact:OperationMistakes | 464 | ep-prodact:OperationMistakes |
| 455 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 465 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 456 | rdfs:label "operation mistakes"^^xsd:string ; | 466 | rdfs:label "operation mistakes"^^xsd:string ; |
| 457 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 467 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 458 | 468 | ||
| 459 | ep-prodact:OtherReasonWellTest | 469 | ep-prodact:OtherReasonWellTest |
| 460 | - rdf:type owl:Class , ep-prodact:WellTestReasonType ; | 470 | + rdf:type ep-prodact:WellTestReasonType , owl:Class ; |
| 461 | rdfs:label "other"^^xsd:string ; | 471 | rdfs:label "other"^^xsd:string ; |
| 462 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . | 472 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 463 | 473 | ||
| 464 | ep-prodact:PeriodicWellTest | 474 | ep-prodact:PeriodicWellTest |
| 465 | - rdf:type owl:Class , ep-prodact:WellTestReasonType ; | 475 | + rdf:type ep-prodact:WellTestReasonType , owl:Class ; |
| 466 | rdfs:label "periodic"^^xsd:string ; | 476 | rdfs:label "periodic"^^xsd:string ; |
| 467 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . | 477 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 468 | 478 | ||
| ... | @@ -472,27 +482,29 @@ ep-prodact:PersonnelSafetyIntroduction | ... | @@ -472,27 +482,29 @@ ep-prodact:PersonnelSafetyIntroduction |
| 472 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 482 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 473 | 483 | ||
| 474 | ep-prodact:PlannedMaintenanceTurnaround | 484 | ep-prodact:PlannedMaintenanceTurnaround |
| 475 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 485 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 476 | rdfs:label "planned maintenace turnaround"^^xsd:string ; | 486 | rdfs:label "planned maintenace turnaround"^^xsd:string ; |
| 477 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 487 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 478 | 488 | ||
| 479 | ep-prodact:PowerStationFailure | 489 | ep-prodact:PowerStationFailure |
| 480 | - rdf:type owl:Class , ep-prodact:ProductionActivityType ; | 490 | + rdf:type ep-prodact:ProductionActivityType , owl:Class ; |
| 491 | + rdfs:comment "activity that is the failure of a power station"^^xsd:string ; | ||
| 481 | rdfs:label "power station failure"^^xsd:string ; | 492 | rdfs:label "power station failure"^^xsd:string ; |
| 482 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 493 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 483 | 494 | ||
| 484 | ep-prodact:PreventiveMaintenanceTopside | 495 | ep-prodact:PreventiveMaintenanceTopside |
| 485 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 496 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 486 | rdfs:label "preventive maintenace topside"^^xsd:string ; | 497 | rdfs:label "preventive maintenace topside"^^xsd:string ; |
| 487 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 498 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 488 | 499 | ||
| 489 | ep-prodact:ProcessAndOperationProblem | 500 | ep-prodact:ProcessAndOperationProblem |
| 490 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 501 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 491 | rdfs:label "process and operation problem"^^xsd:string ; | 502 | rdfs:label "process and operation problem"^^xsd:string ; |
| 492 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 503 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 493 | 504 | ||
| 494 | ep-prodact:ProductCompletedLifting | 505 | ep-prodact:ProductCompletedLifting |
| 495 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 506 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 507 | + rdfs:comment "movement of product that is exported from a stock within a given time period (source: MPR-XSD)"^^xsd:string ; | ||
| 496 | rdfs:label "product completed lifting"^^xsd:string ; | 508 | rdfs:label "product completed lifting"^^xsd:string ; |
| 497 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 509 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 498 | 510 | ||
| ... | @@ -502,77 +514,91 @@ ep-prodact:ProductDespatch | ... | @@ -502,77 +514,91 @@ ep-prodact:ProductDespatch |
| 502 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 514 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 503 | 515 | ||
| 504 | ep-prodact:ProductGain-Loss | 516 | ep-prodact:ProductGain-Loss |
| 505 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 517 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 518 | + rdfs:comment "movement of product that is the lack of proper proportion or relation between the corresponding input and liftings transactions (source: MPR-XSD)"^^xsd:string ; | ||
| 506 | rdfs:label "product gain/loss"^^xsd:string ; | 519 | rdfs:label "product gain/loss"^^xsd:string ; |
| 507 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 520 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 508 | 521 | ||
| 509 | ep-prodact:ProductInputToStorage | 522 | ep-prodact:ProductInputToStorage |
| 510 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 523 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 524 | + rdfs:comment "movement of product that is addition to a stock within a given time period (source: MPR-XSD)"^^xsd:string ; | ||
| 511 | rdfs:label "product input to storage"^^xsd:string ; | 525 | rdfs:label "product input to storage"^^xsd:string ; |
| 512 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 526 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 513 | 527 | ||
| 514 | ep-prodact:ProductLifted | 528 | ep-prodact:ProductLifted |
| 515 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 529 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 530 | + rdfs:comment "movement of product that is from storage"^^xsd:string ; | ||
| 516 | rdfs:label "product lifted"^^xsd:string ; | 531 | rdfs:label "product lifted"^^xsd:string ; |
| 517 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 532 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 518 | 533 | ||
| 519 | ep-prodact:ProductLiftingEntitlement | 534 | ep-prodact:ProductLiftingEntitlement |
| 520 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 535 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 536 | + rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ; | ||
| 521 | rdfs:label "product lifting entitlement"^^xsd:string ; | 537 | rdfs:label "product lifting entitlement"^^xsd:string ; |
| 522 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 538 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 523 | 539 | ||
| 524 | ep-prodact:ProductLiftingEntitlementRemaining | 540 | ep-prodact:ProductLiftingEntitlementRemaining |
| 525 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 541 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 542 | + rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ; | ||
| 526 | rdfs:label "product lifting entitlement remaining"^^xsd:string ; | 543 | rdfs:label "product lifting entitlement remaining"^^xsd:string ; |
| 527 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 544 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 528 | 545 | ||
| 529 | ep-prodact:ProductLinePack | 546 | ep-prodact:ProductLinePack |
| 530 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 547 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 548 | + rdfs:comment "movement of product that provides the quantity of gas which the operator responsible for gas transportation decides must be provided by the gas producing fields in order to make deliveries as requested by gas shippers and provide operating tolerances (source: MPR-XSD)"^^xsd:string ; | ||
| 531 | rdfs:label "product line pack"^^xsd:string ; | 549 | rdfs:label "product line pack"^^xsd:string ; |
| 532 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 550 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 533 | 551 | ||
| 534 | ep-prodact:ProductMassAdjustment | 552 | ep-prodact:ProductMassAdjustment |
| 535 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 553 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 554 | + rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ; | ||
| 536 | rdfs:label "product mass adjustment"^^xsd:string ; | 555 | rdfs:label "product mass adjustment"^^xsd:string ; |
| 537 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 556 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 538 | 557 | ||
| 539 | ep-prodact:ProductPartialLifting | 558 | ep-prodact:ProductPartialLifting |
| 540 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 559 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 560 | + rdfs:comment "movement of product that is a lifting up to a (not completed) determined point in time (source: MPR-XSD)"^^xsd:string ; | ||
| 541 | rdfs:label "product partial lifting"^^xsd:string ; | 561 | rdfs:label "product partial lifting"^^xsd:string ; |
| 542 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 562 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 543 | 563 | ||
| 544 | ep-prodact:ProductPipelineLifting | 564 | ep-prodact:ProductPipelineLifting |
| 545 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 565 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 566 | + rdfs:comment "movement of product that is exported from a stock by a pipeline"^^xsd:string ; | ||
| 546 | rdfs:label "product pipeline lifting"^^xsd:string ; | 567 | rdfs:label "product pipeline lifting"^^xsd:string ; |
| 547 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 568 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 548 | 569 | ||
| 549 | ep-prodact:ProductProductionImbalance | 570 | ep-prodact:ProductProductionImbalance |
| 550 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 571 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 572 | + rdfs:comment "movement of product that is the difference between the amount of gas entering and exiting a shipper's nomination portfolio. This will take into account all differences whatever the time or reason it occurs. (source: MPR-XSD)"^^xsd:string ; | ||
| 551 | rdfs:label "product production imbalance"^^xsd:string ; | 573 | rdfs:label "product production imbalance"^^xsd:string ; |
| 552 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 574 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 553 | 575 | ||
| 554 | ep-prodact:ProductSwap | 576 | ep-prodact:ProductSwap |
| 555 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 577 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 578 | + rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ; | ||
| 556 | rdfs:label "product swap"^^xsd:string ; | 579 | rdfs:label "product swap"^^xsd:string ; |
| 557 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 580 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 558 | 581 | ||
| 559 | ep-prodact:ProductTankerLifting | 582 | ep-prodact:ProductTankerLifting |
| 560 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 583 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 584 | + rdfs:comment "movement of product that is exported from a stock by a tanker"^^xsd:string ; | ||
| 561 | rdfs:label "product tanker lifting"^^xsd:string ; | 585 | rdfs:label "product tanker lifting"^^xsd:string ; |
| 562 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 586 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 563 | 587 | ||
| 564 | ep-prodact:ProductTransaction | 588 | ep-prodact:ProductTransaction |
| 565 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 589 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 590 | + rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ; | ||
| 566 | rdfs:label "product transaction"^^xsd:string ; | 591 | rdfs:label "product transaction"^^xsd:string ; |
| 567 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 592 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 568 | 593 | ||
| 569 | ep-prodact:ProductTransfer | 594 | ep-prodact:ProductTransfer |
| 570 | - rdf:type owl:Class , ep-prodact:MovementOfProductType ; | 595 | + rdf:type ep-prodact:MovementOfProductType , owl:Class ; |
| 596 | + rdfs:comment "movement of product that <not documented in XSD>"^^xsd:string ; | ||
| 571 | rdfs:label "product transfer"^^xsd:string ; | 597 | rdfs:label "product transfer"^^xsd:string ; |
| 572 | rdfs:subClassOf ep-prodact:MovementOfProduct . | 598 | rdfs:subClassOf ep-prodact:MovementOfProduct . |
| 573 | 599 | ||
| 574 | ep-prodact:ProductionActivityLastingLessThanAYear | 600 | ep-prodact:ProductionActivityLastingLessThanAYear |
| 575 | - rdf:type owl:Class , ep-prodact:ProductionOperationClassByDuration ; | 601 | + rdf:type ep-prodact:ProductionOperationClassByDuration , owl:Class ; |
| 576 | rdfs:label "production activity lasting less than a year"^^xsd:string ; | 602 | rdfs:label "production activity lasting less than a year"^^xsd:string ; |
| 577 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 603 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 578 | 604 | ||
| ... | @@ -582,7 +608,7 @@ ep-prodact:ProductionActivityType | ... | @@ -582,7 +608,7 @@ ep-prodact:ProductionActivityType |
| 582 | rdfs:subClassOf owl:Class . | 608 | rdfs:subClassOf owl:Class . |
| 583 | 609 | ||
| 584 | ep-prodact:ProductionOperation | 610 | ep-prodact:ProductionOperation |
| 585 | - rdf:type owl:Class , ep-prodact:ProductionActivityType ; | 611 | + rdf:type ep-prodact:ProductionActivityType , owl:Class ; |
| 586 | rdfs:comment "production activity that is all of what is done in the operation of a facility during a period"^^xsd:string ; | 612 | rdfs:comment "production activity that is all of what is done in the operation of a facility during a period"^^xsd:string ; |
| 587 | rdfs:label "production operation"^^xsd:string ; | 613 | rdfs:label "production operation"^^xsd:string ; |
| 588 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 614 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| ... | @@ -609,12 +635,12 @@ ep-prodact:ProductionOperationProcessingLoss | ... | @@ -609,12 +635,12 @@ ep-prodact:ProductionOperationProcessingLoss |
| 609 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 635 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 610 | 636 | ||
| 611 | ep-prodact:ProductionOperationProcessingLossForUnspecifiedReason | 637 | ep-prodact:ProductionOperationProcessingLossForUnspecifiedReason |
| 612 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 638 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 613 | rdfs:label "production operation processing loss for unspecified reason"^^xsd:string ; | 639 | rdfs:label "production operation processing loss for unspecified reason"^^xsd:string ; |
| 614 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 640 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 615 | 641 | ||
| 616 | ep-prodact:ProductionOperationProcessingRegulatoryReference | 642 | ep-prodact:ProductionOperationProcessingRegulatoryReference |
| 617 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 643 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 618 | rdfs:label "production operation processing regulatory reference"^^xsd:string ; | 644 | rdfs:label "production operation processing regulatory reference"^^xsd:string ; |
| 619 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 645 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 620 | 646 | ||
| ... | @@ -637,6 +663,7 @@ ep-prodact:ProductionVolumeActivity | ... | @@ -637,6 +663,7 @@ ep-prodact:ProductionVolumeActivity |
| 637 | 663 | ||
| 638 | ep-prodact:RaiseAnAlert | 664 | ep-prodact:RaiseAnAlert |
| 639 | rdf:type owl:Class ; | 665 | rdf:type owl:Class ; |
| 666 | + rdfs:comment "activity that draws attention to an unexpected value in a set of data"^^xsd:string ; | ||
| 640 | rdfs:label "raise an alert"^^xsd:string ; | 667 | rdfs:label "raise an alert"^^xsd:string ; |
| 641 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 668 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 642 | 669 | ||
| ... | @@ -646,22 +673,22 @@ ep-prodact:ReasonForLossOfProcessingType | ... | @@ -646,22 +673,22 @@ ep-prodact:ReasonForLossOfProcessingType |
| 646 | rdfs:subClassOf owl:Class . | 673 | rdfs:subClassOf owl:Class . |
| 647 | 674 | ||
| 648 | ep-prodact:ReleaseToAir | 675 | ep-prodact:ReleaseToAir |
| 649 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 676 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 650 | rdfs:label "release to air"^^xsd:string ; | 677 | rdfs:label "release to air"^^xsd:string ; |
| 651 | rdfs:subClassOf ep-prodact:SpillOrLeak . | 678 | rdfs:subClassOf ep-prodact:SpillOrLeak . |
| 652 | 679 | ||
| 653 | ep-prodact:ReleaseToWater | 680 | ep-prodact:ReleaseToWater |
| 654 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 681 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 655 | rdfs:label "release to water"^^xsd:string ; | 682 | rdfs:label "release to water"^^xsd:string ; |
| 656 | rdfs:subClassOf ep-prodact:SpillOrLeak . | 683 | rdfs:subClassOf ep-prodact:SpillOrLeak . |
| 657 | 684 | ||
| 658 | ep-prodact:ReportHazard | 685 | ep-prodact:ReportHazard |
| 659 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 686 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 660 | rdfs:label "report hazard"^^xsd:string ; | 687 | rdfs:label "report hazard"^^xsd:string ; |
| 661 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 688 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 662 | 689 | ||
| 663 | ep-prodact:ReservoirLoss | 690 | ep-prodact:ReservoirLoss |
| 664 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 691 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 665 | rdfs:label "reservoir loss"^^xsd:string ; | 692 | rdfs:label "reservoir loss"^^xsd:string ; |
| 666 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 693 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 667 | 694 | ||
| ... | @@ -671,12 +698,12 @@ ep-prodact:RestrictedWork | ... | @@ -671,12 +698,12 @@ ep-prodact:RestrictedWork |
| 671 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 698 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 672 | 699 | ||
| 673 | ep-prodact:RestrictedWorkInjury | 700 | ep-prodact:RestrictedWorkInjury |
| 674 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 701 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 675 | rdfs:label "restricted work injury"^^xsd:string ; | 702 | rdfs:label "restricted work injury"^^xsd:string ; |
| 676 | rdfs:subClassOf ep-prodact:Injury . | 703 | rdfs:subClassOf ep-prodact:Injury . |
| 677 | 704 | ||
| 678 | ep-prodact:RevisionWellTest | 705 | ep-prodact:RevisionWellTest |
| 679 | - rdf:type owl:Class , ep-prodact:WellTestReasonType ; | 706 | + rdf:type ep-prodact:WellTestReasonType , owl:Class ; |
| 680 | rdfs:label "revision"^^xsd:string ; | 707 | rdfs:label "revision"^^xsd:string ; |
| 681 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . | 708 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 682 | 709 | ||
| ... | @@ -691,12 +718,13 @@ ep-prodact:SafetyConsideration | ... | @@ -691,12 +718,13 @@ ep-prodact:SafetyConsideration |
| 691 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 718 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 692 | 719 | ||
| 693 | ep-prodact:SafetyMeeting | 720 | ep-prodact:SafetyMeeting |
| 694 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 721 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 695 | rdfs:label "safety meeting"^^xsd:string ; | 722 | rdfs:label "safety meeting"^^xsd:string ; |
| 696 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 723 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 697 | 724 | ||
| 698 | ep-prodact:SalesActivity | 725 | ep-prodact:SalesActivity |
| 699 | rdf:type owl:Class ; | 726 | rdf:type owl:Class ; |
| 727 | + rdfs:comment "activity that is all or part of a sale"^^xsd:string ; | ||
| 700 | rdfs:label "sales activity"^^xsd:string ; | 728 | rdfs:label "sales activity"^^xsd:string ; |
| 701 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 729 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 702 | 730 | ||
| ... | @@ -706,12 +734,12 @@ ep-prodact:SalesActivityType | ... | @@ -706,12 +734,12 @@ ep-prodact:SalesActivityType |
| 706 | rdfs:subClassOf owl:Class . | 734 | rdfs:subClassOf owl:Class . |
| 707 | 735 | ||
| 708 | ep-prodact:SentAshore | 736 | ep-prodact:SentAshore |
| 709 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 737 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 710 | rdfs:label "sent ashore"^^xsd:string ; | 738 | rdfs:label "sent ashore"^^xsd:string ; |
| 711 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 739 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 712 | 740 | ||
| 713 | ep-prodact:SevereAccident | 741 | ep-prodact:SevereAccident |
| 714 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 742 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 715 | rdfs:label "severe accident"^^xsd:string ; | 743 | rdfs:label "severe accident"^^xsd:string ; |
| 716 | rdfs:subClassOf ep-prodact:Incident . | 744 | rdfs:subClassOf ep-prodact:Incident . |
| 717 | 745 | ||
| ... | @@ -721,12 +749,12 @@ ep-prodact:ShutdownProduction | ... | @@ -721,12 +749,12 @@ ep-prodact:ShutdownProduction |
| 721 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . | 749 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> . |
| 722 | 750 | ||
| 723 | ep-prodact:SickOnBoard | 751 | ep-prodact:SickOnBoard |
| 724 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 752 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 725 | rdfs:label "sick on board"^^xsd:string ; | 753 | rdfs:label "sick on board"^^xsd:string ; |
| 726 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . | 754 | rdfs:subClassOf ep-prodact:HealthSafetyAndEnvironmentActivity . |
| 727 | 755 | ||
| 728 | ep-prodact:SpillOrLeak | 756 | ep-prodact:SpillOrLeak |
| 729 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 757 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 730 | rdfs:label "spill or leak"^^xsd:string ; | 758 | rdfs:label "spill or leak"^^xsd:string ; |
| 731 | rdfs:subClassOf ep-prodact:Incident . | 759 | rdfs:subClassOf ep-prodact:Incident . |
| 732 | 760 | ||
| ... | @@ -741,7 +769,7 @@ ep-prodact:StandbyVesselOperation | ... | @@ -741,7 +769,7 @@ ep-prodact:StandbyVesselOperation |
| 741 | rdfs:subClassOf ep-prodact:MarineOperation . | 769 | rdfs:subClassOf ep-prodact:MarineOperation . |
| 742 | 770 | ||
| 743 | ep-prodact:StrikeOrLockout | 771 | ep-prodact:StrikeOrLockout |
| 744 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 772 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 745 | rdfs:label "strike or lock-out"^^xsd:string ; | 773 | rdfs:label "strike or lock-out"^^xsd:string ; |
| 746 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 774 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 747 | 775 | ||
| ... | @@ -751,22 +779,22 @@ ep-prodact:SupplyShipOperation | ... | @@ -751,22 +779,22 @@ ep-prodact:SupplyShipOperation |
| 751 | rdfs:subClassOf ep-prodact:MarineOperation . | 779 | rdfs:subClassOf ep-prodact:MarineOperation . |
| 752 | 780 | ||
| 753 | ep-prodact:TestingAndLogging | 781 | ep-prodact:TestingAndLogging |
| 754 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 782 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 755 | rdfs:label "testing and logging"^^xsd:string ; | 783 | rdfs:label "testing and logging"^^xsd:string ; |
| 756 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 784 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 757 | 785 | ||
| 758 | ep-prodact:ThirdPartyProcessingLoss | 786 | ep-prodact:ThirdPartyProcessingLoss |
| 759 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 787 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 760 | rdfs:label "third party processing loss"^^xsd:string ; | 788 | rdfs:label "third party processing loss"^^xsd:string ; |
| 761 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 789 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 762 | 790 | ||
| 763 | ep-prodact:TopsideEquipmentFailureMaintenance | 791 | ep-prodact:TopsideEquipmentFailureMaintenance |
| 764 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 792 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 765 | rdfs:label "topside equipment failure maintenance"^^xsd:string ; | 793 | rdfs:label "topside equipment failure maintenance"^^xsd:string ; |
| 766 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 794 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 767 | 795 | ||
| 768 | ep-prodact:TrafficAccident | 796 | ep-prodact:TrafficAccident |
| 769 | - rdf:type owl:Class , ep-prodact:SafetyActivityType ; | 797 | + rdf:type ep-prodact:SafetyActivityType , owl:Class ; |
| 770 | rdfs:label "traffic accident"^^xsd:string ; | 798 | rdfs:label "traffic accident"^^xsd:string ; |
| 771 | rdfs:subClassOf ep-prodact:Incident . | 799 | rdfs:subClassOf ep-prodact:Incident . |
| 772 | 800 | ||
| ... | @@ -776,12 +804,12 @@ ep-prodact:TransportationActivity | ... | @@ -776,12 +804,12 @@ ep-prodact:TransportationActivity |
| 776 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 804 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 777 | 805 | ||
| 778 | ep-prodact:UnavailableTankerStorage | 806 | ep-prodact:UnavailableTankerStorage |
| 779 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 807 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 780 | rdfs:label "unavailable tanker storage"^^xsd:string ; | 808 | rdfs:label "unavailable tanker storage"^^xsd:string ; |
| 781 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 809 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 782 | 810 | ||
| 783 | ep-prodact:UnknownReasonWellTest | 811 | ep-prodact:UnknownReasonWellTest |
| 784 | - rdf:type owl:Class , ep-prodact:WellTestReasonType ; | 812 | + rdf:type ep-prodact:WellTestReasonType , owl:Class ; |
| 785 | rdfs:label "unknown"^^xsd:string ; | 813 | rdfs:label "unknown"^^xsd:string ; |
| 786 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . | 814 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#WellTest> . |
| 787 | 815 | ||
| ... | @@ -791,27 +819,27 @@ ep-prodact:WaterCleaningOperation | ... | @@ -791,27 +819,27 @@ ep-prodact:WaterCleaningOperation |
| 791 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . | 819 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 792 | 820 | ||
| 793 | ep-prodact:WeatherProblem | 821 | ep-prodact:WeatherProblem |
| 794 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 822 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 795 | rdfs:label "weather problem"^^xsd:string ; | 823 | rdfs:label "weather problem"^^xsd:string ; |
| 796 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 824 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 797 | 825 | ||
| 798 | ep-prodact:WellEquipmentFailureMaintenance | 826 | ep-prodact:WellEquipmentFailureMaintenance |
| 799 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 827 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 800 | rdfs:label "well equipment failure maintenance"^^xsd:string ; | 828 | rdfs:label "well equipment failure maintenance"^^xsd:string ; |
| 801 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 829 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 802 | 830 | ||
| 803 | ep-prodact:WellPlannedOperations | 831 | ep-prodact:WellPlannedOperations |
| 804 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 832 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 805 | rdfs:label "well planned operations"^^xsd:string ; | 833 | rdfs:label "well planned operations"^^xsd:string ; |
| 806 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 834 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 807 | 835 | ||
| 808 | ep-prodact:WellPreventiveMaintenance | 836 | ep-prodact:WellPreventiveMaintenance |
| 809 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 837 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 810 | rdfs:label "well preventive maintenance"^^xsd:string ; | 838 | rdfs:label "well preventive maintenance"^^xsd:string ; |
| 811 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 839 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 812 | 840 | ||
| 813 | ep-prodact:WellProblems | 841 | ep-prodact:WellProblems |
| 814 | - rdf:type owl:Class , ep-prodact:ReasonForLossOfProcessingType ; | 842 | + rdf:type ep-prodact:ReasonForLossOfProcessingType , owl:Class ; |
| 815 | rdfs:label "well problems"^^xsd:string ; | 843 | rdfs:label "well problems"^^xsd:string ; |
| 816 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . | 844 | rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . |
| 817 | 845 | ||
| ... | @@ -846,7 +874,7 @@ ep-prodact:buyer | ... | @@ -846,7 +874,7 @@ ep-prodact:buyer |
| 846 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> . | 874 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#PersonOrOrganization> . |
| 847 | 875 | ||
| 848 | ep-prodact:cargoBatchNumber | 876 | ep-prodact:cargoBatchNumber |
| 849 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; | 877 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 850 | rdfs:label "cargo batch number"^^xsd:string . | 878 | rdfs:label "cargo batch number"^^xsd:string . |
| 851 | 879 | ||
| 852 | ep-prodact:cargoLoaded | 880 | ep-prodact:cargoLoaded |
| ... | @@ -856,7 +884,7 @@ ep-prodact:cargoLoaded | ... | @@ -856,7 +884,7 @@ ep-prodact:cargoLoaded |
| 856 | rdfs:range ep-core:PhysicalObject . | 884 | rdfs:range ep-core:PhysicalObject . |
| 857 | 885 | ||
| 858 | ep-prodact:cargoNumber | 886 | ep-prodact:cargoNumber |
| 859 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; | 887 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 860 | rdfs:label "cargo number"^^xsd:string . | 888 | rdfs:label "cargo number"^^xsd:string . |
| 861 | 889 | ||
| 862 | ep-prodact:causedBy | 890 | ep-prodact:causedBy |
| ... | @@ -914,7 +942,7 @@ ep-prodact:facilityShutdown | ... | @@ -914,7 +942,7 @@ ep-prodact:facilityShutdown |
| 914 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> . | 942 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 915 | 943 | ||
| 916 | ep-prodact:glycolDensity | 944 | ep-prodact:glycolDensity |
| 917 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 945 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 918 | rdfs:range ep-core:Density . | 946 | rdfs:range ep-core:Density . |
| 919 | 947 | ||
| 920 | ep-prodact:hasDischargeFlow | 948 | ep-prodact:hasDischargeFlow |
| ... | @@ -924,7 +952,7 @@ ep-prodact:hasDischargeFlow | ... | @@ -924,7 +952,7 @@ ep-prodact:hasDischargeFlow |
| 924 | rdfs:range <http://www.reportinghub.no/ep/schema/flow#Flow> . | 952 | rdfs:range <http://www.reportinghub.no/ep/schema/flow#Flow> . |
| 925 | 953 | ||
| 926 | ep-prodact:hasGasLiftChoke | 954 | ep-prodact:hasGasLiftChoke |
| 927 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 955 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 928 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#WellTest> ; | 956 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#WellTest> ; |
| 929 | rdfs:label "has gas lift choke"^^xsd:string ; | 957 | rdfs:label "has gas lift choke"^^xsd:string ; |
| 930 | rdfs:range <http://www.reportinghub.no/ep/schema/production-equipment#GasLiftChoke> . | 958 | rdfs:range <http://www.reportinghub.no/ep/schema/production-equipment#GasLiftChoke> . |
| ... | @@ -942,7 +970,7 @@ ep-prodact:hasPredecessor | ... | @@ -942,7 +970,7 @@ ep-prodact:hasPredecessor |
| 942 | rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> . | 970 | rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 943 | 971 | ||
| 944 | ep-prodact:hasShutInPressure | 972 | ep-prodact:hasShutInPressure |
| 945 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 973 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 946 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> ; | 974 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionWellTest> ; |
| 947 | rdfs:label "has shut-in pressure"^^xsd:string ; | 975 | rdfs:label "has shut-in pressure"^^xsd:string ; |
| 948 | rdfs:range ep-core:Pressure . | 976 | rdfs:range ep-core:Pressure . |
| ... | @@ -954,25 +982,25 @@ ep-prodact:hasValidPredecessor | ... | @@ -954,25 +982,25 @@ ep-prodact:hasValidPredecessor |
| 954 | rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> . | 982 | rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| 955 | 983 | ||
| 956 | ep-prodact:injectionWellTestMaximumAnnularPressure | 984 | ep-prodact:injectionWellTestMaximumAnnularPressure |
| 957 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 985 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 958 | rdfs:domain ep-prodact:InjectionWellTest ; | 986 | rdfs:domain ep-prodact:InjectionWellTest ; |
| 959 | rdfs:label "injection well test maximum annular pressure"^^xsd:string ; | 987 | rdfs:label "injection well test maximum annular pressure"^^xsd:string ; |
| 960 | rdfs:range ep-core:Pressure . | 988 | rdfs:range ep-core:Pressure . |
| 961 | 989 | ||
| 962 | ep-prodact:injectionWellTestMinimumAnnularPressure | 990 | ep-prodact:injectionWellTestMinimumAnnularPressure |
| 963 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 991 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 964 | rdfs:domain ep-prodact:InjectionWellTest ; | 992 | rdfs:domain ep-prodact:InjectionWellTest ; |
| 965 | rdfs:label "injection well test minimum annular pressure"^^xsd:string ; | 993 | rdfs:label "injection well test minimum annular pressure"^^xsd:string ; |
| 966 | rdfs:range ep-core:Pressure . | 994 | rdfs:range ep-core:Pressure . |
| 967 | 995 | ||
| 968 | ep-prodact:injectionWellTestWellheadFlowingPressure | 996 | ep-prodact:injectionWellTestWellheadFlowingPressure |
| 969 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 997 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 970 | rdfs:domain ep-prodact:InjectionWellTest ; | 998 | rdfs:domain ep-prodact:InjectionWellTest ; |
| 971 | rdfs:label "injection well test wellhead flowing pressure"^^xsd:string ; | 999 | rdfs:label "injection well test wellhead flowing pressure"^^xsd:string ; |
| 972 | rdfs:range ep-core:Pressure . | 1000 | rdfs:range ep-core:Pressure . |
| 973 | 1001 | ||
| 974 | ep-prodact:injectionWellTestWellheadMaximumPressure | 1002 | ep-prodact:injectionWellTestWellheadMaximumPressure |
| 975 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 1003 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 976 | rdfs:domain ep-prodact:InjectionWellTest ; | 1004 | rdfs:domain ep-prodact:InjectionWellTest ; |
| 977 | rdfs:label "injection well test wellhead maximum pressure"^^xsd:string ; | 1005 | rdfs:label "injection well test wellhead maximum pressure"^^xsd:string ; |
| 978 | rdfs:range ep-core:Pressure . | 1006 | rdfs:range ep-core:Pressure . |
| ... | @@ -984,7 +1012,7 @@ ep-prodact:measuredFlow | ... | @@ -984,7 +1012,7 @@ ep-prodact:measuredFlow |
| 984 | rdfs:range <http://www.reportinghub.no/ep/schema/flow#Flow> . | 1012 | rdfs:range <http://www.reportinghub.no/ep/schema/flow#Flow> . |
| 985 | 1013 | ||
| 986 | ep-prodact:movedProduct | 1014 | ep-prodact:movedProduct |
| 987 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1015 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 988 | rdfs:domain ep-prodact:MovementOfProduct ; | 1016 | rdfs:domain ep-prodact:MovementOfProduct ; |
| 989 | rdfs:label "moved product"^^xsd:string . | 1017 | rdfs:label "moved product"^^xsd:string . |
| 990 | 1018 | ||
| ... | @@ -1029,7 +1057,7 @@ ep-prodact:noOfSpillsOrLeaks | ... | @@ -1029,7 +1057,7 @@ ep-prodact:noOfSpillsOrLeaks |
| 1029 | rdfs:range xsd:integer . | 1057 | rdfs:range xsd:integer . |
| 1030 | 1058 | ||
| 1031 | ep-prodact:noOfSystemAlarms | 1059 | ep-prodact:noOfSystemAlarms |
| 1032 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; | 1060 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 1033 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; | 1061 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; |
| 1034 | rdfs:label "number of system alarms"^^xsd:string ; | 1062 | rdfs:label "number of system alarms"^^xsd:string ; |
| 1035 | rdfs:range xsd:integer . | 1063 | rdfs:range xsd:integer . |
| ... | @@ -1039,7 +1067,7 @@ ep-prodact:oilInWater | ... | @@ -1039,7 +1067,7 @@ ep-prodact:oilInWater |
| 1039 | rdfs:range ep-core:MassPerMass . | 1067 | rdfs:range ep-core:MassPerMass . |
| 1040 | 1068 | ||
| 1041 | ep-prodact:onProductionFacility | 1069 | ep-prodact:onProductionFacility |
| 1042 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1070 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 1043 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; | 1071 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; |
| 1044 | rdfs:label "on facility"^^xsd:string ; | 1072 | rdfs:label "on facility"^^xsd:string ; |
| 1045 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility> . | 1073 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility> . |
| ... | @@ -1064,7 +1092,7 @@ ep-prodact:phenolDensity | ... | @@ -1064,7 +1092,7 @@ ep-prodact:phenolDensity |
| 1064 | rdfs:range ep-core:Density . | 1092 | rdfs:range ep-core:Density . |
| 1065 | 1093 | ||
| 1066 | ep-prodact:processingLost | 1094 | ep-prodact:processingLost |
| 1067 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1095 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 1068 | rdfs:domain ep-prodact:ProductionOperationProcessingLoss ; | 1096 | rdfs:domain ep-prodact:ProductionOperationProcessingLoss ; |
| 1069 | rdfs:range ep-material:QuantityOfMaterial . | 1097 | rdfs:range ep-material:QuantityOfMaterial . |
| 1070 | 1098 | ||
| ... | @@ -1074,13 +1102,13 @@ ep-prodact:productionActivityPeriodClassification | ... | @@ -1074,13 +1102,13 @@ ep-prodact:productionActivityPeriodClassification |
| 1074 | rdfs:range ep-prodact:ProductionOperationClassByDuration . | 1102 | rdfs:range ep-prodact:ProductionOperationClassByDuration . |
| 1075 | 1103 | ||
| 1076 | ep-prodact:productionOperator | 1104 | ep-prodact:productionOperator |
| 1077 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1105 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 1078 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; | 1106 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#ProductionActivity> ; |
| 1079 | rdfs:label "production operator"^^xsd:string ; | 1107 | rdfs:label "production operator"^^xsd:string ; |
| 1080 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . | 1108 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . |
| 1081 | 1109 | ||
| 1082 | ep-prodact:remainingActivity | 1110 | ep-prodact:remainingActivity |
| 1083 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1111 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 1084 | rdfs:domain ep-prodact:LastPartOfTypeRemainingActivityPair ; | 1112 | rdfs:domain ep-prodact:LastPartOfTypeRemainingActivityPair ; |
| 1085 | rdfs:label "remaining activity"^^xsd:string ; | 1113 | rdfs:label "remaining activity"^^xsd:string ; |
| 1086 | rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> . | 1114 | rdfs:range <http://www.reportinghub.no/ep/schema/activity#Activity> . |
| ... | @@ -1115,7 +1143,7 @@ ep-prodact:samplingPerformedAt | ... | @@ -1115,7 +1143,7 @@ ep-prodact:samplingPerformedAt |
| 1115 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> . | 1143 | rdfs:range <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 1116 | 1144 | ||
| 1117 | ep-prodact:samplingPerformedAtPointInSpace | 1145 | ep-prodact:samplingPerformedAtPointInSpace |
| 1118 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1146 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 1119 | rdfs:domain ep-prodact:FluidSamplingAndAnalysis ; | 1147 | rdfs:domain ep-prodact:FluidSamplingAndAnalysis ; |
| 1120 | rdfs:label "sampling performed at point in space"^^xsd:string ; | 1148 | rdfs:label "sampling performed at point in space"^^xsd:string ; |
| 1121 | rdfs:range ep-core:TemporalPartOfAPointInSpace . | 1149 | rdfs:range ep-core:TemporalPartOfAPointInSpace . |
| ... | @@ -1139,13 +1167,13 @@ ep-prodact:sourceOrganization | ... | @@ -1139,13 +1167,13 @@ ep-prodact:sourceOrganization |
| 1139 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . | 1167 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . |
| 1140 | 1168 | ||
| 1141 | ep-prodact:testedWellBoreInterval | 1169 | ep-prodact:testedWellBoreInterval |
| 1142 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 1170 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 1143 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#WellTest> ; | 1171 | rdfs:domain <http://www.reportinghub.no/ep/schema/activity#WellTest> ; |
| 1144 | rdfs:label "tested wellbore interval"^^xsd:string ; | 1172 | rdfs:label "tested wellbore interval"^^xsd:string ; |
| 1145 | rdfs:range ep-core:PhysicalObject . | 1173 | rdfs:range ep-core:PhysicalObject . |
| 1146 | 1174 | ||
| 1147 | ep-prodact:timeWorked | 1175 | ep-prodact:timeWorked |
| 1148 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 1176 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 1149 | rdfs:domain ep-prodact:ProductionOperation ; | 1177 | rdfs:domain ep-prodact:ProductionOperation ; |
| 1150 | rdfs:label "time worked"^^xsd:string ; | 1178 | rdfs:label "time worked"^^xsd:string ; |
| 1151 | rdfs:range ep-core:TimeDuration . | 1179 | rdfs:range ep-core:TimeDuration . | ... | ... |
| ... | @@ -35,6 +35,7 @@ | ... | @@ -35,6 +35,7 @@ |
| 35 | 35 | ||
| 36 | <http://www.reportinghub.no/ep/schema/facility#CloudCover> | 36 | <http://www.reportinghub.no/ep/schema/facility#CloudCover> |
| 37 | rdf:type owl:Class ; | 37 | rdf:type owl:Class ; |
| 38 | + rdfs:comment "physical object that is cloud cover in the atmosphere"^^xsd:string ; | ||
| 38 | rdfs:label "cloud cover"^^xsd:string ; | 39 | rdfs:label "cloud cover"^^xsd:string ; |
| 39 | rdfs:subClassOf ep-core:PhysicalObject . | 40 | rdfs:subClassOf ep-core:PhysicalObject . |
| 40 | 41 | ||
| ... | @@ -79,48 +80,56 @@ | ... | @@ -79,48 +80,56 @@ |
| 79 | 80 | ||
| 80 | <http://www.reportinghub.no/ep/schema/facility#averageHighestThirdWaveHeight> | 81 | <http://www.reportinghub.no/ep/schema/facility#averageHighestThirdWaveHeight> |
| 81 | rdf:type owl:FunctionalProperty , ep-core:Class_of_indirect_property , owl:ObjectProperty ; | 82 | rdf:type owl:FunctionalProperty , ep-core:Class_of_indirect_property , owl:ObjectProperty ; |
| 83 | + rdfs:comment "length that is the average of the higher 1/3 of the wave heights passing during a sample period (typically 20 to 30 minutes) (source: MPR-XSD)"^^xsd:string ; | ||
| 82 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; | 84 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; |
| 83 | rdfs:label "average highest third wave height"^^xsd:string ; | 85 | rdfs:label "average highest third wave height"^^xsd:string ; |
| 84 | rdfs:range ep-core:Length . | 86 | rdfs:range ep-core:Length . |
| 85 | 87 | ||
| 86 | <http://www.reportinghub.no/ep/schema/facility#averageWaveHeight> | 88 | <http://www.reportinghub.no/ep/schema/facility#averageWaveHeight> |
| 87 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 89 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 90 | + rdfs:comment "length that is the average height of surface waves"^^xsd:string ; | ||
| 88 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; | 91 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; |
| 89 | rdfs:label "average wave height"^^xsd:string ; | 92 | rdfs:label "average wave height"^^xsd:string ; |
| 90 | rdfs:range ep-core:Length . | 93 | rdfs:range ep-core:Length . |
| 91 | 94 | ||
| 92 | <http://www.reportinghub.no/ep/schema/facility#cloudCeilingHeight> | 95 | <http://www.reportinghub.no/ep/schema/facility#cloudCeilingHeight> |
| 93 | rdf:type owl:FunctionalProperty , ep-core:Class_of_indirect_property , owl:ObjectProperty ; | 96 | rdf:type owl:FunctionalProperty , ep-core:Class_of_indirect_property , owl:ObjectProperty ; |
| 97 | + rdfs:comment "length that is the height of the cloud ceiling"^^xsd:string ; | ||
| 94 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#CloudCover> ; | 98 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#CloudCover> ; |
| 95 | rdfs:label "cloud ceiling height"^^xsd:string ; | 99 | rdfs:label "cloud ceiling height"^^xsd:string ; |
| 96 | rdfs:range ep-core:Length . | 100 | rdfs:range ep-core:Length . |
| 97 | 101 | ||
| 98 | <http://www.reportinghub.no/ep/schema/facility#facilityOperator> | 102 | <http://www.reportinghub.no/ep/schema/facility#facilityOperator> |
| 99 | rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 103 | rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 104 | + rdfs:comment "organization that operates a facility"^^xsd:string ; | ||
| 100 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; | 105 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; |
| 101 | rdfs:label "facility operator"^^xsd:string ; | 106 | rdfs:label "facility operator"^^xsd:string ; |
| 102 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . | 107 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . |
| 103 | 108 | ||
| 104 | <http://www.reportinghub.no/ep/schema/facility#maximumWaveHeight> | 109 | <http://www.reportinghub.no/ep/schema/facility#maximumWaveHeight> |
| 105 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 110 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 111 | + rdfs:comment "length that is the maximum height of surface waves"^^xsd:string ; | ||
| 106 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; | 112 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; |
| 107 | rdfs:label "maximum wave height"^^xsd:string ; | 113 | rdfs:label "maximum wave height"^^xsd:string ; |
| 108 | rdfs:range ep-core:Length . | 114 | rdfs:range ep-core:Length . |
| 109 | 115 | ||
| 110 | -<http://www.reportinghub.no/ep/schema/facility#period> | 116 | +<http://www.reportinghub.no/ep/schema/facility#surfaceWavePeriod> |
| 111 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 117 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 118 | + rdfs:comment "time duration that is the period of surface waves"^^xsd:string ; | ||
| 112 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; | 119 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurfaceWaves> ; |
| 113 | rdfs:label "period"^^xsd:string ; | 120 | rdfs:label "period"^^xsd:string ; |
| 114 | - rdfs:range ep-core:Length . | 121 | + rdfs:range ep-core:TimeDuration . |
| 115 | 122 | ||
| 116 | <http://www.reportinghub.no/ep/schema/facility#visibility> | 123 | <http://www.reportinghub.no/ep/schema/facility#visibility> |
| 117 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 124 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 125 | + rdfs:comment "length that is the maximum distance at which things can be seen through surrounding air"^^xsd:string ; | ||
| 118 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurroundingAir> ; | 126 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurroundingAir> ; |
| 119 | rdfs:label "visibility"^^xsd:string ; | 127 | rdfs:label "visibility"^^xsd:string ; |
| 120 | rdfs:range ep-core:Length . | 128 | rdfs:range ep-core:Length . |
| 121 | 129 | ||
| 122 | <http://www.reportinghub.no/ep/schema/facility#windChillTemperature> | 130 | <http://www.reportinghub.no/ep/schema/facility#windChillTemperature> |
| 123 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 131 | rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
| 132 | + rdfs:comment "temperature that is the wind chill temperature of surrounding air"^^xsd:string ; | ||
| 124 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurroundingAir> ; | 133 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#SurroundingAir> ; |
| 125 | rdfs:label "wind chill temperature"^^xsd:string ; | 134 | rdfs:label "wind chill temperature"^^xsd:string ; |
| 126 | rdfs:range ep-core:Temperature . | 135 | rdfs:range ep-core:Temperature . |
| ... | @@ -139,6 +148,7 @@ | ... | @@ -139,6 +148,7 @@ |
| 139 | 148 | ||
| 140 | ep-prodfac:Boat | 149 | ep-prodfac:Boat |
| 141 | rdf:type owl:Class ; | 150 | rdf:type owl:Class ; |
| 151 | + rdfs:comment "facility that is a boat"^^xsd:string ; | ||
| 142 | rdfs:label "boat"^^xsd:string ; | 152 | rdfs:label "boat"^^xsd:string ; |
| 143 | rdfs:subClassOf ep-prodfac:ShipOrBoat . | 153 | rdfs:subClassOf ep-prodfac:ShipOrBoat . |
| 144 | 154 | ||
| ... | @@ -162,29 +172,34 @@ ep-prodfac:Field-part | ... | @@ -162,29 +172,34 @@ ep-prodfac:Field-part |
| 162 | 172 | ||
| 163 | ep-prodfac:Installation | 173 | ep-prodfac:Installation |
| 164 | rdf:type owl:Class ; | 174 | rdf:type owl:Class ; |
| 175 | + rdfs:comment "physical object that is an appliance involved in the extraction, production, transportation or storage of oil or gas (source: MPR-XSD)"^^xsd:string ; | ||
| 165 | rdfs:label "installation"^^xsd:string ; | 176 | rdfs:label "installation"^^xsd:string ; |
| 166 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 177 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 167 | 178 | ||
| 168 | ep-prodfac:OilTanker | 179 | ep-prodfac:OilTanker |
| 169 | rdf:type owl:Class ; | 180 | rdf:type owl:Class ; |
| 181 | + rdfs:comment "ship that carries a cargo of oil"^^xsd:string ; | ||
| 170 | rdfs:label "oil tanker"^^xsd:string ; | 182 | rdfs:label "oil tanker"^^xsd:string ; |
| 171 | rdfs:subClassOf ep-prodfac:Ship . | 183 | rdfs:subClassOf ep-prodfac:Ship . |
| 172 | 184 | ||
| 173 | ep-prodfac:Pipeline | 185 | ep-prodfac:Pipeline |
| 174 | - rdfs:comment "facility that is a pipeline"^^xsd:string . | 186 | + rdfs:comment "fluid conductor that consists of pipe, possibly also including pumps, valves, and control devices, intended for conveying liquids, gases, or finely divided solids (source: MPR-XSD)"^^xsd:string . |
| 175 | 187 | ||
| 176 | ep-prodfac:Plant | 188 | ep-prodfac:Plant |
| 177 | rdf:type owl:Class ; | 189 | rdf:type owl:Class ; |
| 190 | + rdfs:comment "facility that is a <no definition in MPR-XSD>"^^xsd:string ; | ||
| 178 | rdfs:label "plant"^^xsd:string ; | 191 | rdfs:label "plant"^^xsd:string ; |
| 179 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 192 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 180 | 193 | ||
| 181 | ep-prodfac:Plant-processing | 194 | ep-prodfac:Plant-processing |
| 182 | rdf:type owl:Class ; | 195 | rdf:type owl:Class ; |
| 196 | + rdfs:comment "facility that is a <no definition in MPR-XSD>"^^xsd:string ; | ||
| 183 | rdfs:label "plant - processing"^^xsd:string ; | 197 | rdfs:label "plant - processing"^^xsd:string ; |
| 184 | rdfs:subClassOf ep-prodfac:Plant . | 198 | rdfs:subClassOf ep-prodfac:Plant . |
| 185 | 199 | ||
| 186 | ep-prodfac:ProcessingFacility | 200 | ep-prodfac:ProcessingFacility |
| 187 | rdf:type owl:Class ; | 201 | rdf:type owl:Class ; |
| 202 | + rdfs:comment "single production processing facility (source: MPR-XSD)"^^xsd:string ; | ||
| 188 | rdfs:label "processing facility"^^xsd:string ; | 203 | rdfs:label "processing facility"^^xsd:string ; |
| 189 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 204 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 190 | 205 | ||
| ... | @@ -196,31 +211,31 @@ ep-prodfac:ReportingFacilityType | ... | @@ -196,31 +211,31 @@ ep-prodfac:ReportingFacilityType |
| 196 | 211 | ||
| 197 | ep-prodfac:Ship | 212 | ep-prodfac:Ship |
| 198 | rdf:type owl:Class ; | 213 | rdf:type owl:Class ; |
| 214 | + rdfs:comment "facility that is a ship"^^xsd:string ; | ||
| 199 | rdfs:label "ship"^^xsd:string ; | 215 | rdfs:label "ship"^^xsd:string ; |
| 200 | rdfs:subClassOf ep-prodfac:ShipOrBoat . | 216 | rdfs:subClassOf ep-prodfac:ShipOrBoat . |
| 201 | 217 | ||
| 202 | ep-prodfac:ShipOrBoat | 218 | ep-prodfac:ShipOrBoat |
| 203 | rdf:type owl:Class ; | 219 | rdf:type owl:Class ; |
| 204 | - rdfs:label "ship or boat"^^xsd:string ; | 220 | + rdfs:comment "facility that is a ship or boat"^^xsd:string ; |
| 205 | - rdfs:subClassOf ep-prodfac:TemporalPartOfAShipOrBoat . | 221 | + rdfs:label "(temporal part of a) ship or boat"^^xsd:string ; |
| 222 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | ||
| 206 | 223 | ||
| 207 | ep-prodfac:StorageFacility | 224 | ep-prodfac:StorageFacility |
| 208 | rdf:type owl:Class ; | 225 | rdf:type owl:Class ; |
| 226 | + rdfs:comment "system for the storage of gaseous, liquid and solid products (source: MPR-XSD)"^^xsd:string ; | ||
| 209 | rdfs:label "storage facility"^^xsd:string ; | 227 | rdfs:label "storage facility"^^xsd:string ; |
| 210 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 228 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 211 | 229 | ||
| 212 | ep-prodfac:SupplyShip | 230 | ep-prodfac:SupplyShip |
| 213 | rdf:type owl:Class ; | 231 | rdf:type owl:Class ; |
| 232 | + rdfs:comment "ship that supplies off-shore installations"^^xsd:string ; | ||
| 214 | rdfs:label "supply ship"^^xsd:string ; | 233 | rdfs:label "supply ship"^^xsd:string ; |
| 215 | rdfs:subClassOf ep-prodfac:Ship . | 234 | rdfs:subClassOf ep-prodfac:Ship . |
| 216 | 235 | ||
| 217 | -ep-prodfac:TemporalPartOfAShipOrBoat | ||
| 218 | - rdf:type owl:Class ; | ||
| 219 | - rdfs:label "temporal part of a ship or boat"^^xsd:string ; | ||
| 220 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | ||
| 221 | - | ||
| 222 | ep-prodfac:TrunkLine | 236 | ep-prodfac:TrunkLine |
| 223 | rdf:type owl:Class ; | 237 | rdf:type owl:Class ; |
| 238 | + rdfs:comment "A single trunkline (source: MPR-XSD)"^^xsd:string ; | ||
| 224 | rdfs:label "trunk line"^^xsd:string ; | 239 | rdfs:label "trunk line"^^xsd:string ; |
| 225 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 240 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
| 226 | 241 | ||
| ... | @@ -266,6 +281,7 @@ ep-prodfac:numberOfPersonnelOnBoard | ... | @@ -266,6 +281,7 @@ ep-prodfac:numberOfPersonnelOnBoard |
| 266 | 281 | ||
| 267 | ep-prodfac:operatingTime | 282 | ep-prodfac:operatingTime |
| 268 | rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 283 | rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 284 | + rdfs:comment "time duration that is the operating time of a temporal part of a facility"^^xsd:string ; | ||
| 269 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; | 285 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; |
| 270 | rdfs:label "operating time"^^xsd:string ; | 286 | rdfs:label "operating time"^^xsd:string ; |
| 271 | rdfs:range ep-core:TimeDuration . | 287 | rdfs:range ep-core:TimeDuration . | ... | ... |
| ... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
| 14 | 14 | ||
| 15 | <http://www.reportinghub.no/ep/schema/1.0/production-well> | 15 | <http://www.reportinghub.no/ep/schema/1.0/production-well> |
| 16 | rdf:type owl:Ontology ; | 16 | rdf:type owl:Ontology ; |
| 17 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/flow> ; | 17 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/flow> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/well> ; |
| 18 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 18 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 19 | 19 | ||
| 20 | ep-material:Air-gas | 20 | ep-material:Air-gas |
| ... | @@ -348,171 +348,175 @@ ep-material:substance-T13dmcyPentane | ... | @@ -348,171 +348,175 @@ ep-material:substance-T13dmcyPentane |
| 348 | rdf:type ep-prodwell:ComponentMaterialType . | 348 | rdf:type ep-prodwell:ComponentMaterialType . |
| 349 | 349 | ||
| 350 | ep-prodwell:AbandonedWell | 350 | ep-prodwell:AbandonedWell |
| 351 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 351 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 352 | + rdfs:comment "well or wellbore that has been abandoned"^^xsd:string ; | ||
| 352 | rdfs:label "abandoned well"^^xsd:string ; | 353 | rdfs:label "abandoned well"^^xsd:string ; |
| 353 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 354 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 354 | 355 | ||
| 355 | ep-prodwell:ClosedWell | 356 | ep-prodwell:ClosedWell |
| 356 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 357 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 358 | + rdfs:comment "well or wellbore that has been closed"^^xsd:string ; | ||
| 357 | rdfs:label "closed well"^^xsd:string ; | 359 | rdfs:label "closed well"^^xsd:string ; |
| 358 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 360 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 359 | 361 | ||
| 360 | ep-prodwell:ComponentMaterialType | 362 | ep-prodwell:ComponentMaterialType |
| 361 | rdf:type rdfs:Class ; | 363 | rdf:type rdfs:Class ; |
| 362 | - rdfs:comment "The set of classes that are enumerated for the base component of a fluid sample in the MPR schema."^^xsd:string ; | 364 | + rdfs:comment "class that consists of subclasses of material corresponding to the FluidComponent enumeration in the MPR-XSD"^^xsd:string ; |
| 363 | rdfs:label "component material type"^^xsd:string ; | 365 | rdfs:label "component material type"^^xsd:string ; |
| 364 | rdfs:subClassOf owl:Class . | 366 | rdfs:subClassOf owl:Class . |
| 365 | 367 | ||
| 366 | ep-prodwell:FluidComponentKindType | 368 | ep-prodwell:FluidComponentKindType |
| 367 | rdf:type rdfs:Class ; | 369 | rdf:type rdfs:Class ; |
| 370 | + rdfs:comment "class that consists of subclasses of material corresponding to the FluidComponentKind enumeration in the MPR-XSD"^^xsd:string ; | ||
| 368 | rdfs:label "fluid component kind type"^^xsd:string ; | 371 | rdfs:label "fluid component kind type"^^xsd:string ; |
| 369 | rdfs:subClassOf owl:Class . | 372 | rdfs:subClassOf owl:Class . |
| 370 | 373 | ||
| 371 | ep-prodwell:FluidPhaseType | 374 | ep-prodwell:FluidPhaseType |
| 372 | rdf:type rdfs:Class ; | 375 | rdf:type rdfs:Class ; |
| 376 | + rdfs:comment "This is probably not required. The function selectFluidPhaseType is not used."^^xsd:string ; | ||
| 373 | rdfs:label "fluid phase type"^^xsd:string ; | 377 | rdfs:label "fluid phase type"^^xsd:string ; |
| 374 | rdfs:subClassOf owl:Class . | 378 | rdfs:subClassOf owl:Class . |
| 375 | 379 | ||
| 376 | ep-prodwell:InjectingWell | 380 | ep-prodwell:InjectingWell |
| 377 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 381 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 382 | + rdfs:comment "well or wellbore that is used for injecting"^^xsd:string ; | ||
| 378 | rdfs:label "injecting well"^^xsd:string ; | 383 | rdfs:label "injecting well"^^xsd:string ; |
| 379 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 384 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 380 | 385 | ||
| 381 | ep-prodwell:InjectionFluidType | 386 | ep-prodwell:InjectionFluidType |
| 382 | rdf:type rdfs:Class ; | 387 | rdf:type rdfs:Class ; |
| 388 | + rdfs:comment "class that consists of subclasses of material corresponding to the InjectionFluid enumeration in the MPR-XSD"^^xsd:string ; | ||
| 383 | rdfs:label "injection fluid type"^^xsd:string ; | 389 | rdfs:label "injection fluid type"^^xsd:string ; |
| 384 | rdfs:subClassOf owl:Class . | 390 | rdfs:subClassOf owl:Class . |
| 385 | 391 | ||
| 386 | ep-prodwell:JunkedWell | 392 | ep-prodwell:JunkedWell |
| 387 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 393 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 394 | + rdfs:comment "well or wellbore that has been junked"^^xsd:string ; | ||
| 388 | rdfs:label "junked well"^^xsd:string ; | 395 | rdfs:label "junked well"^^xsd:string ; |
| 389 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 396 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 390 | 397 | ||
| 391 | -ep-prodwell:NaturalGasClass | ||
| 392 | - rdf:type rdfs:Class ; | ||
| 393 | - rdfs:label "natural gas class"^^xsd:string ; | ||
| 394 | - rdfs:subClassOf owl:Class . | ||
| 395 | - | ||
| 396 | ep-prodwell:OperatingWell | 398 | ep-prodwell:OperatingWell |
| 397 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 399 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 400 | + rdfs:comment "well or wellbore that is operating"^^xsd:string ; | ||
| 398 | rdfs:label "operating well"^^xsd:string ; | 401 | rdfs:label "operating well"^^xsd:string ; |
| 399 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 402 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 400 | 403 | ||
| 401 | ep-prodwell:PluggedAndAbandonedWell | 404 | ep-prodwell:PluggedAndAbandonedWell |
| 402 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 405 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 406 | + rdfs:comment "well or wellbore that has been plugged and abandoned"^^xsd:string ; | ||
| 403 | rdfs:label "plugged and abandoned well"^^xsd:string ; | 407 | rdfs:label "plugged and abandoned well"^^xsd:string ; |
| 404 | - rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 408 | + rdfs:subClassOf ep-prodwell:PluggedWell , ep-prodwell:AbandonedWell . |
| 405 | 409 | ||
| 406 | ep-prodwell:PluggedWell | 410 | ep-prodwell:PluggedWell |
| 407 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 411 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 412 | + rdfs:comment "well or wellbore that has been plugged"^^xsd:string ; | ||
| 408 | rdfs:label "plugged well"^^xsd:string ; | 413 | rdfs:label "plugged well"^^xsd:string ; |
| 409 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 414 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 410 | 415 | ||
| 411 | ep-prodwell:ProducingInjectingWell | 416 | ep-prodwell:ProducingInjectingWell |
| 412 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 417 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 418 | + rdfs:comment "well or wellbore that <advice needed>"^^xsd:string ; | ||
| 413 | rdfs:label "producing injecting well"^^xsd:string ; | 419 | rdfs:label "producing injecting well"^^xsd:string ; |
| 414 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 420 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 415 | 421 | ||
| 416 | ep-prodwell:ProducingWell | 422 | ep-prodwell:ProducingWell |
| 417 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 423 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 424 | + rdfs:comment "well or wellbore that is producing"^^xsd:string ; | ||
| 418 | rdfs:label "producing well"^^xsd:string ; | 425 | rdfs:label "producing well"^^xsd:string ; |
| 419 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 426 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 420 | 427 | ||
| 421 | ep-prodwell:RockFormation | 428 | ep-prodwell:RockFormation |
| 422 | rdf:type owl:Class ; | 429 | rdf:type owl:Class ; |
| 430 | + rdfs:comment "physical object that is a rock formation"^^xsd:string ; | ||
| 423 | rdfs:label "rock formation"^^xsd:string ; | 431 | rdfs:label "rock formation"^^xsd:string ; |
| 424 | rdfs:subClassOf ep-core:PhysicalObject . | 432 | rdfs:subClassOf ep-core:PhysicalObject . |
| 425 | 433 | ||
| 426 | ep-prodwell:SuspendedAtTdWell | 434 | ep-prodwell:SuspendedAtTdWell |
| 427 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 435 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 436 | + rdfs:comment "well or wellbore that <advice needed>"^^xsd:string ; | ||
| 428 | rdfs:label "suspended at td well"^^xsd:string ; | 437 | rdfs:label "suspended at td well"^^xsd:string ; |
| 429 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 438 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 430 | 439 | ||
| 431 | ep-prodwell:SuspendedWell | 440 | ep-prodwell:SuspendedWell |
| 432 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 441 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 442 | + rdfs:comment "well or wellbore that has been suspended"^^xsd:string ; | ||
| 433 | rdfs:label "suspended well"^^xsd:string ; | 443 | rdfs:label "suspended well"^^xsd:string ; |
| 434 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 444 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 435 | 445 | ||
| 436 | -ep-prodwell:TemporalPartOfASpatialPartOfAWellBore | ||
| 437 | - rdf:type owl:Class ; | ||
| 438 | - rdfs:label "temporal part of a spatial part of a wellbore"^^xsd:string ; | ||
| 439 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore . | ||
| 440 | - | ||
| 441 | ep-prodwell:TemporalPartOfAWellOrWellBore | 446 | ep-prodwell:TemporalPartOfAWellOrWellBore |
| 442 | rdf:type owl:Class ; | 447 | rdf:type owl:Class ; |
| 448 | + rdfs:comment "physical object that is a well or wellbore"^^xsd:string ; | ||
| 443 | rdfs:label "(temporal part of a) well or wellbore"^^xsd:string ; | 449 | rdfs:label "(temporal part of a) well or wellbore"^^xsd:string ; |
| 444 | rdfs:subClassOf ep-core:PhysicalObject . | 450 | rdfs:subClassOf ep-core:PhysicalObject . |
| 445 | 451 | ||
| 446 | ep-prodwell:TubingHead | 452 | ep-prodwell:TubingHead |
| 447 | rdf:type owl:Class ; | 453 | rdf:type owl:Class ; |
| 454 | + rdfs:comment "equipment that supports the tubing hanger and provides a means of attaching the Christmas tree to the wellhead (Schlumberger)"^^xsd:string ; | ||
| 448 | rdfs:label "tubing head"^^xsd:string ; | 455 | rdfs:label "tubing head"^^xsd:string ; |
| 449 | - rdfs:subClassOf ep-well:SpatialPartOfAWell . | 456 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . |
| 450 | 457 | ||
| 451 | -ep-prodwell:WellCompletion | 458 | +ep-prodwell:WellCompletionEquipment |
| 452 | rdf:type owl:Class ; | 459 | rdf:type owl:Class ; |
| 453 | - rdfs:label "well completion"^^xsd:string ; | 460 | + rdfs:comment "equipment that is installed to complete a well"^^xsd:string ; |
| 454 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 461 | + rdfs:label "well completion equipment"^^xsd:string ; |
| 462 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> ; | ||
| 463 | + ep-core:seeReferenceData | ||
| 464 | + "http://posccaesar.org/rdl/page/RDS8015624975"^^xsd:string . | ||
| 455 | 465 | ||
| 456 | ep-prodwell:WellReclassedToDevelopment | 466 | ep-prodwell:WellReclassedToDevelopment |
| 457 | - rdf:type owl:Class , ep-prodwell:WellStatusType ; | 467 | + rdf:type ep-prodwell:WellStatusType , owl:Class ; |
| 468 | + rdfs:comment "well or wellbore that has been reclassified as a development well"^^xsd:string ; | ||
| 458 | rdfs:label "well reclassed to development"^^xsd:string ; | 469 | rdfs:label "well reclassed to development"^^xsd:string ; |
| 459 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 470 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 460 | 471 | ||
| 461 | ep-prodwell:WellStatusType | 472 | ep-prodwell:WellStatusType |
| 462 | rdf:type rdfs:Class ; | 473 | rdf:type rdfs:Class ; |
| 474 | + rdfs:comment "class that consists of subclasses of well or wellbore defined by the wellStatus enumeration in the MPR-XSD"^^xsd:string ; | ||
| 463 | rdfs:label "well status type"^^xsd:string ; | 475 | rdfs:label "well status type"^^xsd:string ; |
| 464 | rdfs:subClassOf owl:Class . | 476 | rdfs:subClassOf owl:Class . |
| 465 | 477 | ||
| 466 | ep-prodwell:completeLiquidPartOf | 478 | ep-prodwell:completeLiquidPartOf |
| 467 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 479 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 480 | + rdfs:comment "all of a quantity of material that is liquid"^^xsd:string ; | ||
| 468 | rdfs:domain ep-material:QuantityOfMaterial ; | 481 | rdfs:domain ep-material:QuantityOfMaterial ; |
| 469 | rdfs:label "complete liquid part of"^^xsd:string ; | 482 | rdfs:label "complete liquid part of"^^xsd:string ; |
| 470 | rdfs:range ep-material:Liquid . | 483 | rdfs:range ep-material:Liquid . |
| 471 | 484 | ||
| 472 | -ep-prodwell:condensateYield | ||
| 473 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | ||
| 474 | - rdfs:label "condensate yield"^^xsd:string ; | ||
| 475 | - rdfs:range ep-core:VolumePerMass . | ||
| 476 | - | ||
| 477 | ep-prodwell:depthOfBaseUsableWaterFromSurface | 485 | ep-prodwell:depthOfBaseUsableWaterFromSurface |
| 478 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 486 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 487 | + rdfs:comment "length that is the lowest usable water depth as measured from the surface. (source: MPR-XSD)"^^xsd:string ; | ||
| 479 | rdfs:domain ep-material:Fluid ; | 488 | rdfs:domain ep-material:Fluid ; |
| 480 | rdfs:label "depth of base of usable water from surface"^^xsd:string ; | 489 | rdfs:label "depth of base of usable water from surface"^^xsd:string ; |
| 481 | rdfs:range ep-core:Length . | 490 | rdfs:range ep-core:Length . |
| 482 | 491 | ||
| 483 | ep-prodwell:depthOfFluidSurfaceFromTopOfWell | 492 | ep-prodwell:depthOfFluidSurfaceFromTopOfWell |
| 484 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 493 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 494 | + rdfs:comment "length that is the fluid level achieved in the well. The value is given as length units from the top of the well. (source MPR-XSD)"^^xsd:string ; | ||
| 485 | rdfs:domain ep-material:Fluid ; | 495 | rdfs:domain ep-material:Fluid ; |
| 486 | rdfs:label "depth of fluid surface from top of well"^^xsd:string ; | 496 | rdfs:label "depth of fluid surface from top of well"^^xsd:string ; |
| 487 | rdfs:range ep-core:Length . | 497 | rdfs:range ep-core:Length . |
| 488 | 498 | ||
| 489 | -ep-prodwell:oilWaterRatioByMass | ||
| 490 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | ||
| 491 | - rdfs:domain ep-material:Fluid ; | ||
| 492 | - rdfs:label "oil/water ratio by mass"^^xsd:string ; | ||
| 493 | - rdfs:range ep-core:Ratio . | ||
| 494 | - | ||
| 495 | ep-prodwell:pOverZ | 499 | ep-prodwell:pOverZ |
| 496 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 500 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 497 | - rdfs:domain ep-material:Fluid ; | 501 | + rdfs:comment "The P/Z value at the point. This is P/Z, pressure over gas compressibility factor (z). Note that the uom is units of pressure, since Z is dimensionless. (source: MPR-XSD)"^^xsd:string ; |
| 502 | + rdfs:domain ep-material:Gas ; | ||
| 498 | rdfs:label "pressure over gas compressibility factor"^^xsd:string ; | 503 | rdfs:label "pressure over gas compressibility factor"^^xsd:string ; |
| 499 | rdfs:range ep-core:Pressure . | 504 | rdfs:range ep-core:Pressure . |
| 500 | 505 | ||
| 501 | ep-prodwell:potentialGasProduction | 506 | ep-prodwell:potentialGasProduction |
| 502 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 507 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 503 | - rdfs:domain ep-well:WellBore ; | 508 | + rdfs:comment "volumetric flow rate that is the potential of the well to produce natural gas. This represents the flow rate that could be achieved under maximum drawdown. (source: MPR-XSD)"^^xsd:string ; |
| 509 | + rdfs:domain ep-prodwell:TemporalPartOfAWellOrWellBore ; | ||
| 504 | rdfs:label "potential gas production"^^xsd:string ; | 510 | rdfs:label "potential gas production"^^xsd:string ; |
| 505 | rdfs:range ep-core:VolumetricFlowRate . | 511 | rdfs:range ep-core:VolumetricFlowRate . |
| 506 | 512 | ||
| 507 | ep-prodwell:potentialOilProduction | 513 | ep-prodwell:potentialOilProduction |
| 508 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 514 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 509 | - rdfs:domain ep-well:WellBore ; | 515 | + rdfs:comment "volumetric flow rate is the the potential of a well or wellbore to produce crude oil. This represents the flow rate that could be achieved under maximum drawdown. (source: MPR-XSD)"^^xsd:string ; |
| 516 | + rdfs:domain ep-prodwell:TemporalPartOfAWellOrWellBore ; | ||
| 510 | rdfs:label "potential oil production"^^xsd:string ; | 517 | rdfs:label "potential oil production"^^xsd:string ; |
| 511 | rdfs:range ep-core:VolumetricFlowRate . | 518 | rdfs:range ep-core:VolumetricFlowRate . |
| 512 | 519 | ||
| 513 | -ep-well:SpatialPartOfAWellBore | ||
| 514 | - rdfs:subClassOf ep-prodwell:TemporalPartOfASpatialPartOfAWellBore . | ||
| 515 | - | ||
| 516 | ep-well:TemporalPartOfAWell | 520 | ep-well:TemporalPartOfAWell |
| 517 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . | 521 | rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . |
| 518 | 522 | ... | ... |
| 1 | -# baseURI: http://www.reportinghub.no/ep/schema/1.0/well | 1 | +# baseURI: http://www.reportinghub.no/ep/schema/1.0/well |
| 2 | -# imports: http://www.reportinghub.no/ep/schema/1.0/core | 2 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core |
| 3 | -# imports: http://www.reportinghub.no/ep/schema/1.0/equipment | 3 | +# imports: http://www.reportinghub.no/ep/schema/1.0/equipment |
| 4 | -# imports: http://www.reportinghub.no/ep/schema/1.0/facility | 4 | +# imports: http://www.reportinghub.no/ep/schema/1.0/facility |
| 5 | -# imports: http://www.reportinghub.no/ep/schema/1.0/material | 5 | +# imports: http://www.reportinghub.no/ep/schema/1.0/material |
| 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-fac: <http://www.reportinghub.no/ep/schema/facility#> . | 8 | +@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . |
| 9 | -@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> . | 9 | +@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> . |
| 10 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 10 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 11 | -@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#> . |
| 12 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 12 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 13 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 13 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 14 | - | 14 | + |
| 15 | -<http://www.reportinghub.no/ep/schema/1.0/well> | 15 | +<http://www.reportinghub.no/ep/schema/1.0/well> |
| 16 | - rdf:type owl:Ontology ; | 16 | + rdf:type owl:Ontology ; |
| 17 | - owl:imports <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/facility> , <http://www.reportinghub.no/ep/schema/1.0/material> ; | 17 | + owl:imports <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/facility> , <http://www.reportinghub.no/ep/schema/1.0/material> ; |
| 18 | - owl:versionInfo "0.1.0"^^xsd:string . | 18 | + owl:versionInfo "0.1.0"^^xsd:string . |
| 19 | - | 19 | + |
| 20 | -<http://www.reportinghub.no/ep/schema/equipment#CasingString> | 20 | +<http://www.reportinghub.no/ep/schema/equipment#CasingString> |
| 21 | - ep-core:seeReferenceData | 21 | + ep-core:seeReferenceData |
| 22 | - "http://posccaesar.org/rdl/RDS5793773"^^xsd:string . | 22 | + "http://posccaesar.org/rdl/RDS5793773"^^xsd:string . |
| 23 | - | 23 | + |
| 24 | -<http://www.reportinghub.no/ep/schema/material#Condensate> | 24 | +<http://www.reportinghub.no/ep/schema/material#Condensate> |
| 25 | - rdf:type ep-well:FluidComponentType . | 25 | + rdf:type ep-well:FluidComponentType . |
| 26 | - | 26 | + |
| 27 | -<http://www.reportinghub.no/ep/schema/material#Filtrate> | 27 | +<http://www.reportinghub.no/ep/schema/material#Filtrate> |
| 28 | - rdf:type ep-well:FluidComponentType . | 28 | + rdf:type ep-well:FluidComponentType . |
| 29 | - | 29 | + |
| 30 | -<http://www.reportinghub.no/ep/schema/material#Gas> | 30 | +<http://www.reportinghub.no/ep/schema/material#Gas> |
| 31 | - rdf:type ep-well:FluidComponentType . | 31 | + rdf:type ep-well:FluidComponentType . |
| 32 | - | 32 | + |
| 33 | -<http://www.reportinghub.no/ep/schema/material#Oil> | 33 | +<http://www.reportinghub.no/ep/schema/material#Oil> |
| 34 | - rdf:type ep-well:FluidComponentType . | 34 | + rdf:type ep-well:FluidComponentType . |
| 35 | - | 35 | + |
| 36 | -<http://www.reportinghub.no/ep/schema/material#Water> | 36 | +<http://www.reportinghub.no/ep/schema/material#Water> |
| 37 | - rdf:type ep-well:FluidComponentType . | 37 | + rdf:type ep-well:FluidComponentType . |
| 38 | - | 38 | + |
| 39 | -ep-well:CementingFluid | 39 | +ep-well:CementingFluid |
| 40 | - rdf:type owl:Class ; | 40 | + rdf:type owl:Class ; |
| 41 | - rdfs:comment "fluid that is intended to be used for cementing a well"^^xsd:string ; | 41 | + rdfs:comment "fluid that is intended to be used for cementing a well"^^xsd:string ; |
| 42 | - rdfs:label "cementing fluid"^^xsd:string ; | 42 | + rdfs:label "cementing fluid"^^xsd:string ; |
| 43 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/material#Fluid> . | 43 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/material#Fluid> . |
| 44 | - | 44 | + |
| 45 | -ep-well:CementingFluidType | 45 | +ep-well:CementingFluidType |
| 46 | - rdf:type owl:Class ; | 46 | + rdf:type owl:Class ; |
| 47 | - rdfs:comment "class of cementing fluid on the basis of whether it is mud, slurry, spacer or wash"^^xsd:string ; | 47 | + rdfs:comment "class of cementing fluid on the basis of whether it is mud, slurry, spacer or wash"^^xsd:string ; |
| 48 | - rdfs:label "cementing fluid type"^^xsd:string ; | 48 | + rdfs:label "cementing fluid type"^^xsd:string ; |
| 49 | - rdfs:subClassOf ep-well:FluidType . | 49 | + rdfs:subClassOf ep-well:FluidType . |
| 50 | - | 50 | + |
| 51 | -ep-well:ClassOfWellBoreSectionBySize | 51 | +ep-well:ClassOfWellBoreSectionBySize |
| 52 | - rdf:type rdfs:Class ; | 52 | + rdf:type rdfs:Class ; |
| 53 | - rdfs:comment "class of wellbore section on the basis of its size"^^xsd:string ; | 53 | + rdfs:comment "class of wellbore section on the basis of its size"^^xsd:string ; |
| 54 | - rdfs:label "class of wellbore section by size"^^xsd:string ; | 54 | + rdfs:label "class of wellbore section by size"^^xsd:string ; |
| 55 | - rdfs:subClassOf owl:Class . | 55 | + rdfs:subClassOf owl:Class . |
| 56 | - | 56 | + |
| 57 | -ep-well:Cluster | 57 | +ep-well:Cluster |
| 58 | - rdf:type owl:Class ; | 58 | + rdf:type owl:Class ; |
| 59 | - rdfs:label "cluster"^^xsd:string ; | 59 | + rdfs:label "cluster"^^xsd:string ; |
| 60 | - rdfs:subClassOf ep-core:PhysicalObject ; | 60 | + rdfs:subClassOf ep-core:PhysicalObject ; |
| 61 | - ep-core:seeReferenceData | 61 | + ep-core:seeReferenceData |
| 62 | - "http://posccaesar.org/rdl/RDS8015624968"^^xsd:string . | 62 | + "http://posccaesar.org/rdl/RDS8015624968"^^xsd:string . |
| 63 | - | 63 | + |
| 64 | -ep-well:FluidComponentType | 64 | +ep-well:FluidComponentType |
| 65 | - rdf:type rdfs:Class ; | 65 | + rdf:type rdfs:Class ; |
| 66 | - rdfs:comment "The set of classes that are enumerated for the dominant component in a fluid sample in the DDR schema."^^xsd:string ; | 66 | + rdfs:comment "The set of classes that are enumerated for the dominant component in a fluid sample in the DDR schema."^^xsd:string ; |
| 67 | - rdfs:label "fluid component type"^^xsd:string ; | 67 | + rdfs:label "fluid component type"^^xsd:string ; |
| 68 | - rdfs:subClassOf owl:Class . | 68 | + rdfs:subClassOf owl:Class . |
| 69 | - | 69 | + |
| 70 | -ep-well:FluidType | 70 | +ep-well:FluidType |
| 71 | - rdf:type owl:Class ; | 71 | + rdf:type owl:Class ; |
| 72 | - rdfs:comment "class of fluid"^^xsd:string ; | 72 | + rdfs:comment "class of fluid"^^xsd:string ; |
| 73 | - rdfs:label "fluid type"^^xsd:string ; | 73 | + rdfs:label "fluid type"^^xsd:string ; |
| 74 | - rdfs:subClassOf owl:Class . | 74 | + rdfs:subClassOf owl:Class . |
| 75 | - | 75 | + |
| 76 | -ep-well:HphtWellBore | 76 | +ep-well:HphtWellBore |
| 77 | - rdf:type ep-well:WellBoreHphtType , owl:Class ; | 77 | + rdf:type ep-well:WellBoreHphtType , owl:Class ; |
| 78 | - rdfs:comment "wellbore that is high pressure and high temperature"^^xsd:string ; | 78 | + rdfs:comment "wellbore that is high pressure and high temperature"^^xsd:string ; |
| 79 | - rdfs:label "high pressure high temperature well bore"^^xsd:string ; | 79 | + rdfs:label "high pressure high temperature well bore"^^xsd:string ; |
| 80 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 80 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 81 | - owl:disjointWith ep-well:NotHphtWellBore . | 81 | + owl:disjointWith ep-well:NotHphtWellBore . |
| 82 | - | 82 | + |
| 83 | -ep-well:LeakyWellBore | 83 | +ep-well:LeakyWellBore |
| 84 | - rdf:type ep-well:WellBoreTightnessType , owl:Class ; | 84 | + rdf:type ep-well:WellBoreTightnessType , owl:Class ; |
| 85 | - rdfs:comment "wellbore that is leaky"^^xsd:string ; | 85 | + rdfs:comment "wellbore that is leaky"^^xsd:string ; |
| 86 | - rdfs:label "leaky well bore"^^xsd:string ; | 86 | + rdfs:label "leaky well bore"^^xsd:string ; |
| 87 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 87 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 88 | - owl:disjointWith ep-well:TightWellBore . | 88 | + owl:disjointWith ep-well:TightWellBore . |
| 89 | - | 89 | + |
| 90 | -ep-well:LowerPartOfAWellBore | 90 | +ep-well:LowerPartOfAWellBore |
| 91 | - rdf:type owl:Class ; | 91 | + rdf:type owl:Class ; |
| 92 | - rdfs:comment "spatial part of a wellbore that is all of it below a point"^^xsd:string ; | 92 | + rdfs:comment "spatial part of a wellbore that is all of it below a point"^^xsd:string ; |
| 93 | - rdfs:label "lower part of a well bore"^^xsd:string ; | 93 | + rdfs:label "lower part of a well bore"^^xsd:string ; |
| 94 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 94 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 95 | - | 95 | + |
| 96 | -ep-well:Mud | 96 | +ep-well:Mud |
| 97 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 97 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 98 | - rdfs:comment "cementing fluid that is mud"^^xsd:string ; | 98 | + rdfs:comment "cementing fluid that is mud"^^xsd:string ; |
| 99 | - rdfs:label "mud"^^xsd:string ; | 99 | + rdfs:label "mud"^^xsd:string ; |
| 100 | - rdfs:subClassOf ep-well:CementingFluid ; | 100 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 101 | - owl:disjointWith ep-well:Slurry , ep-well:Spacer , ep-well:Wash . | 101 | + owl:disjointWith ep-well:Slurry , ep-well:Spacer , ep-well:Wash . |
| 102 | - | 102 | + |
| 103 | -ep-well:Mud-oilBased | 103 | +ep-well:Mud-oilBased |
| 104 | - rdf:type ep-well:MudClass , owl:Class ; | 104 | + rdf:type ep-well:MudClass , owl:Class ; |
| 105 | - rdfs:comment "mud that is oil based"^^xsd:string ; | 105 | + rdfs:comment "mud that is oil based"^^xsd:string ; |
| 106 | - rdfs:label "mud - oil based"^^xsd:string ; | 106 | + rdfs:label "mud - oil based"^^xsd:string ; |
| 107 | - rdfs:subClassOf ep-well:Mud ; | 107 | + rdfs:subClassOf ep-well:Mud ; |
| 108 | - owl:disjointWith ep-well:Mud-other , ep-well:Mud-waterBased . | 108 | + owl:disjointWith ep-well:Mud-other , ep-well:Mud-waterBased . |
| 109 | - | 109 | + |
| 110 | -ep-well:Mud-other | 110 | +ep-well:Mud-other |
| 111 | - rdf:type ep-well:MudClass , owl:Class ; | 111 | + rdf:type ep-well:MudClass , owl:Class ; |
| 112 | - rdfs:comment "mud that is neither oil nor water based"^^xsd:string ; | 112 | + rdfs:comment "mud that is neither oil nor water based"^^xsd:string ; |
| 113 | - rdfs:label "mud - other"^^xsd:string ; | 113 | + rdfs:label "mud - other"^^xsd:string ; |
| 114 | - rdfs:subClassOf ep-well:Mud ; | 114 | + rdfs:subClassOf ep-well:Mud ; |
| 115 | - owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-waterBased . | 115 | + owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-waterBased . |
| 116 | - | 116 | + |
| 117 | -ep-well:Mud-waterBased | 117 | +ep-well:Mud-waterBased |
| 118 | - rdf:type ep-well:MudClass , owl:Class ; | 118 | + rdf:type ep-well:MudClass , owl:Class ; |
| 119 | - rdfs:comment "mud that is water based"^^xsd:string ; | 119 | + rdfs:comment "mud that is water based"^^xsd:string ; |
| 120 | - rdfs:label "mud - water based"^^xsd:string ; | 120 | + rdfs:label "mud - water based"^^xsd:string ; |
| 121 | - rdfs:subClassOf ep-well:Mud ; | 121 | + rdfs:subClassOf ep-well:Mud ; |
| 122 | - owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-other . | 122 | + owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-other . |
| 123 | - | 123 | + |
| 124 | -ep-well:MudClass | 124 | +ep-well:MudClass |
| 125 | - rdf:type owl:Class ; | 125 | + rdf:type owl:Class ; |
| 126 | - rdfs:comment "class of mud on the basis of whether it is oil based, water based, or neither"^^xsd:string ; | 126 | + rdfs:comment "class of mud on the basis of whether it is oil based, water based, or neither"^^xsd:string ; |
| 127 | - rdfs:label "mud class"^^xsd:string ; | 127 | + rdfs:label "mud class"^^xsd:string ; |
| 128 | - rdfs:subClassOf ep-well:FluidType . | 128 | + rdfs:subClassOf ep-well:FluidType . |
| 129 | - | 129 | + |
| 130 | -ep-well:NotHphtWellBore | 130 | +ep-well:NotHphtWellBore |
| 131 | - rdf:type ep-well:WellBoreHphtType , owl:Class ; | 131 | + rdf:type ep-well:WellBoreHphtType , owl:Class ; |
| 132 | - rdfs:comment "wellbore that is not high pressure and high temperature"^^xsd:string ; | 132 | + rdfs:comment "wellbore that is not high pressure and high temperature"^^xsd:string ; |
| 133 | - rdfs:label "not high pressure high temperature well bore"^^xsd:string ; | 133 | + rdfs:label "not high pressure high temperature well bore"^^xsd:string ; |
| 134 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 134 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 135 | - owl:disjointWith ep-well:HphtWellBore . | 135 | + owl:disjointWith ep-well:HphtWellBore . |
| 136 | - | 136 | + |
| 137 | -ep-well:PositionWithinWellBore | 137 | +ep-well:PositionWithinWellBore |
| 138 | - rdf:type owl:Class ; | 138 | + rdf:type owl:Class ; |
| 139 | - rdfs:comment "spatial part of a wellbore that is a position down the hole"^^xsd:string ; | 139 | + rdfs:comment "spatial part of a wellbore that is a position down the hole"^^xsd:string ; |
| 140 | - rdfs:label "position within wellbore"^^xsd:string ; | 140 | + rdfs:label "position within wellbore"^^xsd:string ; |
| 141 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 141 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 142 | - | 142 | + |
| 143 | -ep-well:RecoveredCore | 143 | +ep-well:RecoveredCore |
| 144 | - rdf:type owl:Class ; | 144 | + rdf:type owl:Class ; |
| 145 | - rdfs:label "recovered core"^^xsd:string ; | 145 | + rdfs:label "recovered core"^^xsd:string ; |
| 146 | - rdfs:subClassOf ep-core:PhysicalObject . | 146 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 147 | - | 147 | + |
| 148 | -ep-well:Slurry | 148 | +ep-well:Slurry |
| 149 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 149 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 150 | - rdfs:comment "cementing fluid that is slurry"^^xsd:string ; | 150 | + rdfs:comment "cementing fluid that is slurry"^^xsd:string ; |
| 151 | - rdfs:label "slurry"^^xsd:string ; | 151 | + rdfs:label "slurry"^^xsd:string ; |
| 152 | - rdfs:subClassOf ep-well:CementingFluid ; | 152 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 153 | - owl:disjointWith ep-well:Mud , ep-well:Spacer , ep-well:Wash . | 153 | + owl:disjointWith ep-well:Mud , ep-well:Spacer , ep-well:Wash . |
| 154 | - | 154 | + |
| 155 | -ep-well:Spacer | 155 | +ep-well:Spacer |
| 156 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 156 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 157 | - rdfs:comment "cementing fluid that is spacer"^^xsd:string ; | 157 | + rdfs:comment "cementing fluid that is spacer"^^xsd:string ; |
| 158 | - rdfs:label "spacer"^^xsd:string ; | 158 | + rdfs:label "spacer"^^xsd:string ; |
| 159 | - rdfs:subClassOf ep-well:CementingFluid ; | 159 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 160 | - owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Wash . | 160 | + owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Wash . |
| 161 | - | 161 | + |
| 162 | -ep-well:SpatialPartOfAWell | 162 | +ep-well:SpatialPartOfAWell |
| 163 | - rdf:type owl:Class ; | 163 | + rdf:type owl:Class ; |
| 164 | - rdfs:comment "physical object that is a spatial part of a well"^^xsd:string ; | 164 | + rdfs:comment "physical object that is a spatial part of a well"^^xsd:string ; |
| 165 | - rdfs:label "spatial part of a well "^^xsd:string ; | 165 | + rdfs:label "spatial part of a well "^^xsd:string ; |
| 166 | - rdfs:subClassOf ep-core:PhysicalObject . | 166 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 167 | - | 167 | + |
| 168 | -ep-well:SpatialPartOfAWellBore | 168 | +ep-well:SpatialPartOfAWellBore |
| 169 | - rdf:type owl:Class ; | 169 | + rdf:type owl:Class ; |
| 170 | - rdfs:comment "physical object that is a spatial part of a wellbore"^^xsd:string ; | 170 | + rdfs:comment "physical object that is a spatial part of a wellbore for all of its life"^^xsd:string ; |
| 171 | - rdfs:label "spatial part of a well bore"^^xsd:string ; | 171 | + rdfs:label "spatial part of a well bore"^^xsd:string ; |
| 172 | - rdfs:subClassOf ep-core:PhysicalObject . | 172 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 173 | - | 173 | + |
| 174 | -ep-well:SurroundingRockFormation | 174 | +ep-well:SurroundingRockFormation |
| 175 | - rdf:type owl:Class ; | 175 | + rdf:type owl:Class ; |
| 176 | - rdfs:comment "spatial part of a wellbore that is the surrounding rock formation"^^xsd:string ; | 176 | + rdfs:comment "spatial part of a wellbore that is the surrounding rock formation"^^xsd:string ; |
| 177 | - rdfs:label "surrounding rock formation"^^xsd:string ; | 177 | + rdfs:label "surrounding rock formation"^^xsd:string ; |
| 178 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 178 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 179 | - | 179 | + |
| 180 | -ep-well:TemporalPartOfAWell | 180 | +ep-well:TemporalPartOfASpatialPartOfAWellBore |
| 181 | - rdf:type owl:Class ; | 181 | + rdf:type owl:Class ; |
| 182 | - rdfs:comment "a physical object that is a well"^^xsd:string ; | 182 | + rdfs:comment "physical object that is a spatial part of a wellbore"^^xsd:string ; |
| 183 | - rdfs:label "temporal part of a well"^^xsd:string ; | 183 | + rdfs:label "(temporal part of a) spatial part of a wellbore"^^xsd:string ; |
| 184 | - rdfs:subClassOf ep-core:PhysicalObject . | 184 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 185 | - | 185 | + |
| 186 | -ep-well:TemporalPartOfAWellBore | 186 | +ep-well:TemporalPartOfAWell |
| 187 | - rdf:type owl:Class ; | 187 | + rdf:type owl:Class ; |
| 188 | - rdfs:comment "a physical object that is a wellbore"^^xsd:string ; | 188 | + rdfs:comment "a physical object that is a well"^^xsd:string ; |
| 189 | - rdfs:label "temporal part of a wellbore"^^xsd:string ; | 189 | + rdfs:label "temporal part of a well"^^xsd:string ; |
| 190 | - rdfs:subClassOf ep-core:PhysicalObject . | 190 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 191 | - | 191 | + |
| 192 | -ep-well:TightWellBore | 192 | +ep-well:TemporalPartOfAWellBore |
| 193 | - rdf:type ep-well:WellBoreTightnessType , owl:Class ; | 193 | + rdf:type owl:Class ; |
| 194 | - rdfs:comment "wellbore that is not leaky"^^xsd:string ; | 194 | + rdfs:comment "physical object that is a wellbore"^^xsd:string ; |
| 195 | - rdfs:label "tight well bore"^^xsd:string ; | 195 | + rdfs:label "(temporal part of a) wellbore"^^xsd:string ; |
| 196 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 196 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 197 | - owl:disjointWith ep-well:LeakyWellBore . | 197 | + |
| 198 | - | 198 | +ep-well:TightWellBore |
| 199 | -ep-well:UserDescribedCementingFluidType | 199 | + rdf:type ep-well:WellBoreTightnessType , owl:Class ; |
| 200 | - rdf:type owl:Class ; | 200 | + rdfs:comment "wellbore that is not leaky"^^xsd:string ; |
| 201 | - rdfs:comment "class of cementing fluid that is not defined within the EPIM schema"^^xsd:string ; | 201 | + rdfs:label "tight well bore"^^xsd:string ; |
| 202 | - rdfs:label "user described cementing fluid type"^^xsd:string ; | 202 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 203 | - rdfs:subClassOf ep-well:FluidType . | 203 | + owl:disjointWith ep-well:LeakyWellBore . |
| 204 | - | 204 | + |
| 205 | -ep-well:Wash | 205 | +ep-well:UserDescribedCementingFluidType |
| 206 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 206 | + rdf:type owl:Class ; |
| 207 | - rdfs:comment "cementing fluid that is wash"^^xsd:string ; | 207 | + rdfs:comment "class of cementing fluid that is not defined within the EPIM schema"^^xsd:string ; |
| 208 | - rdfs:label "wash"^^xsd:string ; | 208 | + rdfs:label "user described cementing fluid type"^^xsd:string ; |
| 209 | - rdfs:subClassOf ep-well:CementingFluid ; | 209 | + rdfs:subClassOf ep-well:FluidType . |
| 210 | - owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Spacer . | 210 | + |
| 211 | - | 211 | +ep-well:Wash |
| 212 | -ep-well:Well | 212 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 213 | - rdf:type owl:Class ; | 213 | + rdfs:comment "cementing fluid that is wash"^^xsd:string ; |
| 214 | - rdfs:comment "a well for all of its life"^^xsd:string ; | 214 | + rdfs:label "wash"^^xsd:string ; |
| 215 | - rdfs:label "well"^^xsd:string ; | 215 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 216 | - rdfs:subClassOf ep-well:TemporalPartOfAWell ; | 216 | + owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Spacer . |
| 217 | - ep-core:seeReferenceData | 217 | + |
| 218 | - "http://posccaesar.org/rdl/RDS16458543"^^xsd:string . | 218 | +ep-well:Well |
| 219 | - | 219 | + rdf:type owl:Class ; |
| 220 | -ep-well:WellBore | 220 | + rdfs:comment "a well for all of its life"^^xsd:string ; |
| 221 | - rdf:type owl:Class ; | 221 | + rdfs:label "well"^^xsd:string ; |
| 222 | - rdfs:comment "wellbore for all of its life"^^xsd:string ; | 222 | + rdfs:subClassOf ep-well:TemporalPartOfAWell ; |
| 223 | - rdfs:label "wellbore (whole life)"^^xsd:string ; | 223 | + ep-core:seeReferenceData |
| 224 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 224 | + "http://posccaesar.org/rdl/RDS16458543"^^xsd:string . |
| 225 | - ep-core:seeReferenceData | 225 | + |
| 226 | - "http://posccaesar.org/rdl/RDS1714464911"^^xsd:string . | 226 | +ep-well:WellBore |
| 227 | - | 227 | + rdf:type owl:Class ; |
| 228 | -ep-well:WellBoreBottom | 228 | + rdfs:comment "wellbore for all of its life"^^xsd:string ; |
| 229 | - rdf:type owl:Class ; | 229 | + rdfs:label "wellbore (whole life)"^^xsd:string ; |
| 230 | - rdfs:comment "spatial part of a wellbore that is the bottom of the hole"^^xsd:string ; | 230 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 231 | - rdfs:label "wellbore bottom"^^xsd:string ; | 231 | + ep-core:seeReferenceData |
| 232 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 232 | + "http://posccaesar.org/rdl/RDS1714464911"^^xsd:string . |
| 233 | - | 233 | + |
| 234 | -ep-well:WellBoreHphtType | 234 | +ep-well:WellBoreBottom |
| 235 | - rdf:type rdfs:Class ; | 235 | + rdf:type owl:Class ; |
| 236 | - rdfs:comment "class of wellbore on the basis of whether or not it is high pressure and high temperature"^^xsd:string ; | 236 | + rdfs:comment "spatial part of a wellbore that is the bottom of the hole"^^xsd:string ; |
| 237 | - rdfs:label "well bore high pressure high temperature type"^^xsd:string ; | 237 | + rdfs:label "wellbore bottom"^^xsd:string ; |
| 238 | - rdfs:subClassOf owl:Class . | 238 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 239 | - | 239 | + |
| 240 | -ep-well:WellBoreKickOff | 240 | +ep-well:WellBoreHphtType |
| 241 | - rdf:type owl:Class ; | 241 | + rdf:type rdfs:Class ; |
| 242 | - rdfs:comment "spatial part of a wellbore that is its kick-off"^^xsd:string ; | 242 | + rdfs:comment "class of wellbore on the basis of whether or not it is high pressure and high temperature"^^xsd:string ; |
| 243 | - rdfs:label "wellbore kickoff"^^xsd:string ; | 243 | + rdfs:label "well bore high pressure high temperature type"^^xsd:string ; |
| 244 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 244 | + rdfs:subClassOf owl:Class . |
| 245 | - | 245 | + |
| 246 | -ep-well:WellBorePilotHole | 246 | +ep-well:WellBoreKickOff |
| 247 | - rdf:type owl:Class ; | 247 | + rdf:type owl:Class ; |
| 248 | - rdfs:comment "spatial part of a wellbore that is its pilot hole"^^xsd:string ; | 248 | + rdfs:comment "spatial part of a wellbore that is its kick-off"^^xsd:string ; |
| 249 | - rdfs:label "wellbore pilot hole"^^xsd:string ; | 249 | + rdfs:label "wellbore kickoff"^^xsd:string ; |
| 250 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 250 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 251 | - | 251 | + |
| 252 | -ep-well:WellBoreSection | 252 | +ep-well:WellBorePilotHole |
| 253 | - rdf:type owl:Class ; | 253 | + rdf:type owl:Class ; |
| 254 | - rdfs:comment "spatial part of a wellbore that is a section across it"^^xsd:string ; | 254 | + rdfs:comment "spatial part of a wellbore that is its pilot hole"^^xsd:string ; |
| 255 | - rdfs:label "wellbore section"^^xsd:string ; | 255 | + rdfs:label "wellbore pilot hole"^^xsd:string ; |
| 256 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore ; | 256 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore . |
| 257 | - ep-core:seeReferenceData | 257 | + |
| 258 | - "http://posccaesar.org/rdl/RDS16453593"^^xsd:string . | 258 | +ep-well:WellBoreSection |
| 259 | - | 259 | + rdf:type owl:Class ; |
| 260 | -ep-well:WellBoreTightnessType | 260 | + rdfs:comment "spatial part of a wellbore that is a section across it"^^xsd:string ; |
| 261 | - rdf:type rdfs:Class ; | 261 | + rdfs:label "wellbore section"^^xsd:string ; |
| 262 | - rdfs:comment "class of wellbore on the basis of whether or not it is leaky"^^xsd:string ; | 262 | + rdfs:subClassOf ep-well:TemporalPartOfASpatialPartOfAWellBore ; |
| 263 | - rdfs:label "well bore tightness type"^^xsd:string ; | 263 | + ep-core:seeReferenceData |
| 264 | - rdfs:subClassOf owl:Class . | 264 | + "http://posccaesar.org/rdl/RDS16453593"^^xsd:string . |
| 265 | - | 265 | + |
| 266 | -ep-well:WellBoreWithCirculation | 266 | +ep-well:WellBoreTightnessType |
| 267 | - rdf:type owl:Class ; | 267 | + rdf:type rdfs:Class ; |
| 268 | - rdfs:comment "wellbore that has circulation"^^xsd:string ; | 268 | + rdfs:comment "class of wellbore on the basis of whether or not it is leaky"^^xsd:string ; |
| 269 | - rdfs:label "well bore with circulation"^^xsd:string ; | 269 | + rdfs:label "well bore tightness type"^^xsd:string ; |
| 270 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 270 | + rdfs:subClassOf owl:Class . |
| 271 | - owl:disjointWith ep-well:WellBoreWithoutCirculation . | 271 | + |
| 272 | - | 272 | +ep-well:WellBoreWithCirculation |
| 273 | -ep-well:WellBoreWithoutCirculation | 273 | + rdf:type owl:Class ; |
| 274 | - rdf:type owl:Class ; | 274 | + rdfs:comment "wellbore that has circulation"^^xsd:string ; |
| 275 | - rdfs:comment "wellbore that does not have circulation"^^xsd:string ; | 275 | + rdfs:label "well bore with circulation"^^xsd:string ; |
| 276 | - rdfs:label "well bore without circulation"^^xsd:string ; | 276 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 277 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 277 | + owl:disjointWith ep-well:WellBoreWithoutCirculation . |
| 278 | - owl:disjointWith ep-well:WellBoreWithCirculation . | 278 | + |
| 279 | - | 279 | +ep-well:WellBoreWithoutCirculation |
| 280 | -ep-well:WellGroup | 280 | + rdf:type owl:Class ; |
| 281 | - rdf:type owl:Class ; | 281 | + rdfs:comment "wellbore that does not have circulation"^^xsd:string ; |
| 282 | - rdfs:comment "not used in the DDR"^^xsd:string ; | 282 | + rdfs:label "well bore without circulation"^^xsd:string ; |
| 283 | - rdfs:label "well group"^^xsd:string ; | 283 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 284 | - rdfs:subClassOf ep-core:PhysicalObject . | 284 | + owl:disjointWith ep-well:WellBoreWithCirculation . |
| 285 | - | 285 | + |
| 286 | -ep-well:WellHead | 286 | +ep-well:WellGroup |
| 287 | - rdf:type owl:Class ; | 287 | + rdf:type owl:Class ; |
| 288 | - rdfs:comment "spatial part of a well that is a well head"^^xsd:string ; | 288 | + rdfs:comment "not used in the DDR"^^xsd:string ; |
| 289 | - rdfs:label "well head"^^xsd:string ; | 289 | + rdfs:label "well group"^^xsd:string ; |
| 290 | - rdfs:subClassOf ep-well:SpatialPartOfAWell ; | 290 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 291 | - ep-core:seeReferenceData | 291 | + |
| 292 | - "http://posccaesar.org/rdl/RDS13609850"^^xsd:string . | 292 | +ep-well:WellHead |
| 293 | - | 293 | + rdf:type owl:Class ; |
| 294 | -ep-well:averageBottomHolePressure | 294 | + rdfs:comment "spatial part of a well that is a well head"^^xsd:string ; |
| 295 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 295 | + rdfs:label "well head"^^xsd:string ; |
| 296 | - rdfs:comment "class_of_indirect_property that is the average pressure at the bottom of a wellbore"^^xsd:string ; | 296 | + rdfs:subClassOf ep-well:SpatialPartOfAWell ; |
| 297 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 297 | + ep-core:seeReferenceData |
| 298 | - rdfs:label "average bottom hole pressure"^^xsd:string ; | 298 | + "http://posccaesar.org/rdl/RDS13609850"^^xsd:string . |
| 299 | - rdfs:range ep-core:Pressure ; | 299 | + |
| 300 | - ep-core:seeReferenceData | 300 | +ep-well:averageBottomHolePressure |
| 301 | - "http://posccaesar.org/rdl/RDS1748178911"^^xsd:string . | 301 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 302 | - | 302 | + rdfs:comment "class_of_indirect_property that is the average pressure at the bottom of a wellbore"^^xsd:string ; |
| 303 | -ep-well:averageBottomHoleTemperature | 303 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 304 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 304 | + rdfs:label "average bottom hole pressure"^^xsd:string ; |
| 305 | - rdfs:comment "class_of_indirect_property that is the average temperature at the bottom of a wellbore"^^xsd:string ; | 305 | + rdfs:range ep-core:Pressure ; |
| 306 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 306 | + ep-core:seeReferenceData |
| 307 | - rdfs:label "average bottom hole temperature"^^xsd:string ; | 307 | + "http://posccaesar.org/rdl/RDS1748178911"^^xsd:string . |
| 308 | - rdfs:range ep-core:Temperature ; | 308 | + |
| 309 | - ep-core:seeReferenceData | 309 | +ep-well:averageBottomHoleTemperature |
| 310 | - "http://posccaesar.org/rdl/RDS1748247961"^^xsd:string . | 310 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 311 | - | 311 | + rdfs:comment "class_of_indirect_property that is the average temperature at the bottom of a wellbore"^^xsd:string ; |
| 312 | -ep-well:azimuth | 312 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 313 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 313 | + rdfs:label "average bottom hole temperature"^^xsd:string ; |
| 314 | - rdfs:comment "class_of_indirect_property that is the inclination of wellbore orientation at a position within a wellbore"^^xsd:string ; | 314 | + rdfs:range ep-core:Temperature ; |
| 315 | - rdfs:domain ep-well:PositionWithinWellBore ; | 315 | + ep-core:seeReferenceData |
| 316 | - rdfs:label "azimuth"^^xsd:string ; | 316 | + "http://posccaesar.org/rdl/RDS1748247961"^^xsd:string . |
| 317 | - rdfs:range ep-core:PlaneAngle ; | 317 | + |
| 318 | - ep-core:seeReferenceData | 318 | +ep-well:azimuth |
| 319 | - "http://posccaesar.org/rdl/RDS17688492"^^xsd:string . | 319 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 320 | - | 320 | + rdfs:comment "class_of_indirect_property that is the inclination of wellbore orientation at a position within a wellbore"^^xsd:string ; |
| 321 | -ep-well:bottomHoleMeasuredDepth | 321 | + rdfs:domain ep-well:PositionWithinWellBore ; |
| 322 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 322 | + rdfs:label "azimuth"^^xsd:string ; |
| 323 | - rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a wellbore"^^xsd:string ; | 323 | + rdfs:range ep-core:PlaneAngle ; |
| 324 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 324 | + ep-core:seeReferenceData |
| 325 | - rdfs:label "bottom hole measured depth"^^xsd:string ; | 325 | + "http://posccaesar.org/rdl/RDS17688492"^^xsd:string . |
| 326 | - rdfs:range ep-core:Length . | 326 | + |
| 327 | - | 327 | +ep-well:bottomHoleMeasuredDepth |
| 328 | -ep-well:bottomHoleTemperature | 328 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 329 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 329 | + rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a wellbore"^^xsd:string ; |
| 330 | - rdfs:comment "class_of_indirect_property that is the temperature at the bottom of a wellbore"^^xsd:string ; | 330 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 331 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 331 | + rdfs:label "bottom hole measured depth"^^xsd:string ; |
| 332 | - rdfs:label "bottom hole temperature"^^xsd:string ; | 332 | + rdfs:range ep-core:Length . |
| 333 | - rdfs:range ep-core:Temperature . | 333 | + |
| 334 | - | 334 | +ep-well:bottomHoleTemperature |
| 335 | -ep-well:bottomHoleTrueVerticalDepth | 335 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 336 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 336 | + rdfs:comment "class_of_indirect_property that is the temperature at the bottom of a wellbore"^^xsd:string ; |
| 337 | - rdfs:comment "class_of_indirect_property that is the true vertical depth of the bottom of a wellbore"^^xsd:string ; | 337 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 338 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 338 | + rdfs:label "bottom hole temperature"^^xsd:string ; |
| 339 | - rdfs:label "bottom hole true vertical depth"^^xsd:string ; | 339 | + rdfs:range ep-core:Temperature . |
| 340 | - rdfs:range ep-core:Length . | 340 | + |
| 341 | - | 341 | +ep-well:bottomHoleTrueVerticalDepth |
| 342 | -ep-well:cementingFluidPerCentFreeWater | 342 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 343 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 343 | + rdfs:comment "class_of_indirect_property that is the true vertical depth of the bottom of a wellbore"^^xsd:string ; |
| 344 | - rdfs:comment "class_of_indirect_property that is the percentage free water by volume within a cementing fluid"^^xsd:string ; | 344 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 345 | - rdfs:domain ep-well:CementingFluid ; | 345 | + rdfs:label "bottom hole true vertical depth"^^xsd:string ; |
| 346 | - rdfs:label "cementing fluid per cent free water"^^xsd:string ; | 346 | + rdfs:range ep-core:Length . |
| 347 | - rdfs:range ep-core:VolumePerUnitVolumeConcentration . | 347 | + |
| 348 | - | 348 | +ep-well:cementingFluidPerCentFreeWater |
| 349 | -ep-well:cementingFluidThickeningTime | 349 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 350 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 350 | + rdfs:comment "class_of_indirect_property that is the percentage free water by volume within a cementing fluid"^^xsd:string ; |
| 351 | - rdfs:comment "class_of_indirect_property that is the thickening time for a cementing fluid"^^xsd:string ; | 351 | + rdfs:domain ep-well:CementingFluid ; |
| 352 | - rdfs:domain ep-well:CementingFluid ; | 352 | + rdfs:label "cementing fluid per cent free water"^^xsd:string ; |
| 353 | - rdfs:label "cementing fluid thickening time"^^xsd:string ; | 353 | + rdfs:range ep-core:VolumePerUnitVolumeConcentration . |
| 354 | - rdfs:range ep-core:TimeDuration . | 354 | + |
| 355 | - | 355 | +ep-well:cementingFluidThickeningTime |
| 356 | -ep-well:coreLength | 356 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 357 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 357 | + rdfs:comment "class_of_indirect_property that is the thickening time for a cementing fluid"^^xsd:string ; |
| 358 | - rdfs:comment "class_of_indirect_property that is the length of a recovered core"^^xsd:string ; | 358 | + rdfs:domain ep-well:CementingFluid ; |
| 359 | - rdfs:domain ep-well:RecoveredCore ; | 359 | + rdfs:label "cementing fluid thickening time"^^xsd:string ; |
| 360 | - rdfs:label "core length"^^xsd:string ; | 360 | + rdfs:range ep-core:TimeDuration . |
| 361 | - rdfs:range ep-core:Length . | 361 | + |
| 362 | - | 362 | +ep-well:coreLength |
| 363 | -ep-well:diameterOfAWellBorePilotHole | 363 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 364 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 364 | + rdfs:comment "class_of_indirect_property that is the length of a recovered core"^^xsd:string ; |
| 365 | - rdfs:comment "class_of_indirect_property that is the diameter of a wellbore pilot hole"^^xsd:string ; | 365 | + rdfs:domain ep-well:RecoveredCore ; |
| 366 | - rdfs:domain ep-well:WellBorePilotHole ; | 366 | + rdfs:label "core length"^^xsd:string ; |
| 367 | - rdfs:label "diameter of a wellbore pilot hole"^^xsd:string ; | 367 | + rdfs:range ep-core:Length . |
| 368 | - rdfs:range ep-core:Length . | 368 | + |
| 369 | - | 369 | +ep-well:diameterOfAWellBorePilotHole |
| 370 | -ep-well:dominantComponent | 370 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 371 | - rdf:type owl:ObjectProperty ; | 371 | + rdfs:comment "class_of_indirect_property that is the diameter of a wellbore pilot hole"^^xsd:string ; |
| 372 | - rdfs:comment "fluid component type of the dominant component of a fluid"^^xsd:string ; | 372 | + rdfs:domain ep-well:WellBorePilotHole ; |
| 373 | - rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ; | 373 | + rdfs:label "diameter of a wellbore pilot hole"^^xsd:string ; |
| 374 | - rdfs:label "dominant component"^^xsd:string ; | 374 | + rdfs:range ep-core:Length . |
| 375 | - rdfs:range ep-well:FluidComponentType . | 375 | + |
| 376 | - | 376 | +ep-well:dominantComponent |
| 377 | -ep-well:finalBottomHoleMeasuredDepth | 377 | + rdf:type owl:ObjectProperty ; |
| 378 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 378 | + rdfs:comment "fluid component type of the dominant component of a fluid"^^xsd:string ; |
| 379 | - rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; | 379 | + rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ; |
| 380 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 380 | + rdfs:label "dominant component"^^xsd:string ; |
| 381 | - rdfs:label "final bottom hole measured depth"^^xsd:string ; | 381 | + rdfs:range ep-well:FluidComponentType . |
| 382 | - rdfs:range ep-core:Length . | 382 | + |
| 383 | - | 383 | +ep-well:finalBottomHoleMeasuredDepth |
| 384 | -ep-well:finalBottomHoleTrueVerticalDepth | 384 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 385 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 385 | + rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; |
| 386 | - rdfs:comment "class_of_indirect_property that is the true vertical dept of the bottom of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; | 386 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 387 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 387 | + rdfs:label "final bottom hole measured depth"^^xsd:string ; |
| 388 | - rdfs:label "final bottom hole true vertical depth"^^xsd:string ; | 388 | + rdfs:range ep-core:Length . |
| 389 | - rdfs:range ep-core:Length . | 389 | + |
| 390 | - | 390 | +ep-well:finalBottomHoleTrueVerticalDepth |
| 391 | -ep-well:gasConcentrationHigh | 391 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 392 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 392 | + rdfs:comment "class_of_indirect_property that is the true vertical dept of the bottom of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; |
| 393 | - rdfs:comment "class_of_indirect_property that is the highest gas concentration by volume within a temporal part of a fluid"^^xsd:string ; | 393 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 394 | - rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ; | 394 | + rdfs:label "final bottom hole true vertical depth"^^xsd:string ; |
| 395 | - rdfs:label "gas concentration - high"^^xsd:string ; | 395 | + rdfs:range ep-core:Length . |
| 396 | - rdfs:range ep-core:VolumePerUnitVolumeConcentration . | 396 | + |
| 397 | - | 397 | +ep-well:gasConcentrationHigh |
| 398 | -ep-well:gasConcentrationLow | 398 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 399 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 399 | + rdfs:comment "class_of_indirect_property that is the highest gas concentration by volume within a temporal part of a fluid"^^xsd:string ; |
| 400 | - rdfs:comment "class_of_indirect_property that is the lowest gas concentration by volume within a temporal part of a fluid"^^xsd:string ; | 400 | + rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ; |
| 401 | - rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ; | 401 | + rdfs:label "gas concentration - high"^^xsd:string ; |
| 402 | - rdfs:label "gas concentration - low"^^xsd:string ; | 402 | + rdfs:range ep-core:VolumePerUnitVolumeConcentration . |
| 403 | - rdfs:range ep-core:VolumePerUnitVolumeConcentration . | 403 | + |
| 404 | - | 404 | +ep-well:gasConcentrationLow |
| 405 | -ep-well:hasBarrel | 405 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 406 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | 406 | + rdfs:comment "class_of_indirect_property that is the lowest gas concentration by volume within a temporal part of a fluid"^^xsd:string ; |
| 407 | - rdfs:comment "inner barrel of a recovered core"^^xsd:string ; | 407 | + rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ; |
| 408 | - rdfs:domain ep-well:RecoveredCore ; | 408 | + rdfs:label "gas concentration - low"^^xsd:string ; |
| 409 | - rdfs:label "has barrel"^^xsd:string ; | 409 | + rdfs:range ep-core:VolumePerUnitVolumeConcentration . |
| 410 | - rdfs:range <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> . | 410 | + |
| 411 | - | 411 | +ep-well:hasBarrel |
| 412 | -ep-well:inclination | 412 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 413 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 413 | + rdfs:comment "inner barrel of a recovered core"^^xsd:string ; |
| 414 | - rdfs:comment "class_of_indirect_property that is the inclination of wellbore orientation at a position within a wellbore"^^xsd:string ; | 414 | + rdfs:domain ep-well:RecoveredCore ; |
| 415 | - rdfs:domain ep-well:PositionWithinWellBore ; | 415 | + rdfs:label "has barrel"^^xsd:string ; |
| 416 | - rdfs:label "inclination"^^xsd:string ; | 416 | + rdfs:range <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> . |
| 417 | - rdfs:range ep-core:PlaneAngle ; | 417 | + |
| 418 | - ep-core:seeReferenceData | 418 | +ep-well:inclination |
| 419 | - "http://posccaesar.org/rdl/RDS17688057"^^xsd:string . | 419 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 420 | - | 420 | + rdfs:comment "class_of_indirect_property that is the inclination of wellbore orientation at a position within a wellbore"^^xsd:string ; |
| 421 | -ep-well:initialBottomHoleMeasuredDepth | 421 | + rdfs:domain ep-well:PositionWithinWellBore ; |
| 422 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 422 | + rdfs:label "inclination"^^xsd:string ; |
| 423 | - rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a wellbore at the beginning of a temporal part of a wellbore"^^xsd:string ; | 423 | + rdfs:range ep-core:PlaneAngle ; |
| 424 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 424 | + ep-core:seeReferenceData |
| 425 | - rdfs:label "initial bottom hole measured depth"^^xsd:string ; | 425 | + "http://posccaesar.org/rdl/RDS17688057"^^xsd:string . |
| 426 | - rdfs:range ep-core:Length . | 426 | + |
| 427 | - | 427 | +ep-well:initialBottomHoleMeasuredDepth |
| 428 | -ep-well:lithologyDescription | 428 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 429 | - rdf:type owl:DatatypeProperty ; | 429 | + rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a wellbore at the beginning of a temporal part of a wellbore"^^xsd:string ; |
| 430 | - rdfs:comment "description of the lithology at a spatial part of a wellbore"^^xsd:string ; | 430 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 431 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 431 | + rdfs:label "initial bottom hole measured depth"^^xsd:string ; |
| 432 | - rdfs:label "lithology description"^^xsd:string . | 432 | + rdfs:range ep-core:Length . |
| 433 | - | 433 | + |
| 434 | -ep-well:measuredDepth | 434 | +ep-well:lithologyDescription |
| 435 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 435 | + rdf:type owl:DatatypeProperty ; |
| 436 | - rdfs:comment "class_of_indirect_property that is the measured depth of a spatial part of a wellbore"^^xsd:string ; | 436 | + rdfs:comment "description of the lithology at a spatial part of a wellbore"^^xsd:string ; |
| 437 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 437 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 438 | - rdfs:label "measured depth"^^xsd:string ; | 438 | + rdfs:label "lithology description"^^xsd:string . |
| 439 | - rdfs:range ep-core:Length ; | 439 | + |
| 440 | - ep-core:seeReferenceData | 440 | +ep-well:measuredDepth |
| 441 | - "http://posccaesar.org/rdl/RDS1724710171"^^xsd:string . | 441 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 442 | - | 442 | + rdfs:comment "class_of_indirect_property that is the measured depth of a spatial part of a wellbore"^^xsd:string ; |
| 443 | -ep-well:measuredDepthOfPlugTop | 443 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 444 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 444 | + rdfs:label "measured depth"^^xsd:string ; |
| 445 | - rdfs:comment "class_of_indirect_property that is the measured depth of the plug top of a wellbore"^^xsd:string ; | 445 | + rdfs:range ep-core:Length ; |
| 446 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 446 | + ep-core:seeReferenceData |
| 447 | - rdfs:label "measured depth of plug top"^^xsd:string ; | 447 | + "http://posccaesar.org/rdl/RDS1724710171"^^xsd:string . |
| 448 | - rdfs:range ep-core:Length . | 448 | + |
| 449 | - | 449 | +ep-well:measuredDepthOfPlugTop |
| 450 | -ep-well:measuredDepthToTheBottomOfAPartOfAWellBore | 450 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 451 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 451 | + rdfs:comment "class_of_indirect_property that is the measured depth of the plug top of a wellbore"^^xsd:string ; |
| 452 | - rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a spatial part of a wellbore"^^xsd:string ; | 452 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 453 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 453 | + rdfs:label "measured depth of plug top"^^xsd:string ; |
| 454 | - rdfs:label "measured depth to the bottom of a part of a wellbore"^^xsd:string ; | 454 | + rdfs:range ep-core:Length . |
| 455 | - rdfs:range ep-core:Length . | 455 | + |
| 456 | - | 456 | +ep-well:measuredDepthToTheBottomOfAPartOfAWellBore |
| 457 | -ep-well:measuredDepthToTheTopOfAPartOfAWellBore | 457 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 458 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 458 | + rdfs:comment "class_of_indirect_property that is the measured depth to the bottom of a spatial part of a wellbore"^^xsd:string ; |
| 459 | - rdfs:comment "class_of_indirect_property that is the measured depth to the top of a spatial part of a wellbore"^^xsd:string ; | 459 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 460 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 460 | + rdfs:label "measured depth to the bottom of a part of a wellbore"^^xsd:string ; |
| 461 | - rdfs:label "measured depth to the top of a part of a wellbore"^^xsd:string ; | 461 | + rdfs:range ep-core:Length . |
| 462 | - rdfs:range ep-core:Length . | 462 | + |
| 463 | - | 463 | +ep-well:measuredDepthToTheTopOfAPartOfAWellBore |
| 464 | -ep-well:nominalInsideDiameterOfBoreHole | 464 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 465 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 465 | + rdfs:comment "class_of_indirect_property that is the measured depth to the top of a spatial part of a wellbore"^^xsd:string ; |
| 466 | - rdfs:comment "class_of_indirect_property that is the nominal diameter of a wellbore"^^xsd:string ; | 466 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 467 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 467 | + rdfs:label "measured depth to the top of a part of a wellbore"^^xsd:string ; |
| 468 | - rdfs:label "nominal inside diameter of borehole"^^xsd:string ; | 468 | + rdfs:range ep-core:Length . |
| 469 | - rdfs:range ep-core:Length . | 469 | + |
| 470 | - | 470 | +ep-well:nominalInsideDiameterOfBoreHole |
| 471 | -ep-well:plannedBottomHoleMeasuredDepth | 471 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 472 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 472 | + rdfs:comment "class_of_indirect_property that is the nominal diameter of a wellbore"^^xsd:string ; |
| 473 | - rdfs:comment "class_of_indirect_property that is the planned measured depth to the bottom of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; | 473 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 474 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 474 | + rdfs:label "nominal inside diameter of borehole"^^xsd:string ; |
| 475 | - rdfs:label "planned bottom hole measured depth"^^xsd:string ; | 475 | + rdfs:range ep-core:Length . |
| 476 | - rdfs:range ep-core:Length ; | 476 | + |
| 477 | - ep-core:seeReferenceData | 477 | +ep-well:plannedBottomHoleMeasuredDepth |
| 478 | - "http://posccaesar.org/rdl/RDS1035458501"^^xsd:string . | 478 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 479 | - | 479 | + rdfs:comment "class_of_indirect_property that is the planned measured depth to the bottom of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; |
| 480 | -ep-well:plannedPilotBottomHoleMeasuredDepth | 480 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 481 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 481 | + rdfs:label "planned bottom hole measured depth"^^xsd:string ; |
| 482 | - rdfs:comment "class_of_indirect_property that is the planned measured depth to the bottom of the pilot hole of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; | 482 | + rdfs:range ep-core:Length ; |
| 483 | - rdfs:domain ep-well:WellBorePilotHole ; | 483 | + ep-core:seeReferenceData |
| 484 | - rdfs:label "planned pilot bottom hole measured depth"^^xsd:string ; | 484 | + "http://posccaesar.org/rdl/RDS1035458501"^^xsd:string . |
| 485 | - rdfs:range ep-core:Length ; | 485 | + |
| 486 | - ep-core:seeReferenceData | 486 | +ep-well:plannedPilotBottomHoleMeasuredDepth |
| 487 | - "http://posccaesar.org/rdl/RDS17851115"^^xsd:string . | 487 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 488 | - | 488 | + rdfs:comment "class_of_indirect_property that is the planned measured depth to the bottom of the pilot hole of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; |
| 489 | -ep-well:plannedPilotBottomHoleTrueVerticalDepth | 489 | + rdfs:domain ep-well:WellBorePilotHole ; |
| 490 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 490 | + rdfs:label "planned pilot bottom hole measured depth"^^xsd:string ; |
| 491 | - rdfs:comment "class_of_indirect_property that is the planned true vertical depth of the bottom of the pilot hole of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; | 491 | + rdfs:range ep-core:Length ; |
| 492 | - rdfs:domain ep-well:WellBorePilotHole ; | 492 | + ep-core:seeReferenceData |
| 493 | - rdfs:label "planned pilot bottom hole true vertical depth"^^xsd:string ; | 493 | + "http://posccaesar.org/rdl/RDS17851115"^^xsd:string . |
| 494 | - rdfs:range ep-core:Length . | 494 | + |
| 495 | - | 495 | +ep-well:plannedPilotBottomHoleTrueVerticalDepth |
| 496 | -ep-well:porePressure | 496 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 497 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 497 | + rdfs:comment "class_of_indirect_property that is the planned true vertical depth of the bottom of the pilot hole of a wellbore at the end of a temporal part of a wellbore"^^xsd:string ; |
| 498 | - rdfs:comment "class_of_indirect_property that is the pore pressure at a spatial part of a wellbore"^^xsd:string ; | 498 | + rdfs:domain ep-well:WellBorePilotHole ; |
| 499 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 499 | + rdfs:label "planned pilot bottom hole true vertical depth"^^xsd:string ; |
| 500 | - rdfs:label "pore pressure"^^xsd:string ; | 500 | + rdfs:range ep-core:Length . |
| 501 | - rdfs:range ep-core:Pressure . | 501 | + |
| 502 | - | 502 | +ep-well:porePressure |
| 503 | -ep-well:porePressureEquivalentMudDensity | 503 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 504 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 504 | + rdfs:comment "class_of_indirect_property that is the pore pressure at a spatial part of a wellbore"^^xsd:string ; |
| 505 | - rdfs:comment "class_of_indirect_property that is the equipvalent mud density to the pore pressure at a spatial part of a wellbore"^^xsd:string ; | 505 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 506 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 506 | + rdfs:label "pore pressure"^^xsd:string ; |
| 507 | - rdfs:label "pore pressure - equivalent mud density"^^xsd:string ; | 507 | + rdfs:range ep-core:Pressure . |
| 508 | - rdfs:range ep-core:Density . | 508 | + |
| 509 | - | 509 | +ep-well:porePressureEquivalentMudDensity |
| 510 | -ep-well:ratioOfCementMixToWater | 510 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 511 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 511 | + rdfs:comment "class_of_indirect_property that is the equipvalent mud density to the pore pressure at a spatial part of a wellbore"^^xsd:string ; |
| 512 | - rdfs:comment "class_of_indirect_property that is the volumetric ratio of cement mix to water for a cementing fluid"^^xsd:string ; | 512 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 513 | - rdfs:domain ep-well:CementingFluid ; | 513 | + rdfs:label "pore pressure - equivalent mud density"^^xsd:string ; |
| 514 | - rdfs:label "ratio of cement mix to water"^^xsd:string ; | 514 | + rdfs:range ep-core:Density . |
| 515 | - rdfs:range ep-core:VolumePerUnitVolumeConcentration . | 515 | + |
| 516 | - | 516 | +ep-well:ratioOfCementMixToWater |
| 517 | -ep-well:relativeAmountOfCoreRecovered | 517 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 518 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 518 | + rdfs:comment "class_of_indirect_property that is the volumetric ratio of cement mix to water for a cementing fluid"^^xsd:string ; |
| 519 | - rdfs:comment "class_of_indirect_property that is the relative amount of core recovered by volume"^^xsd:string ; | 519 | + rdfs:domain ep-well:CementingFluid ; |
| 520 | - rdfs:domain ep-well:RecoveredCore ; | 520 | + rdfs:label "ratio of cement mix to water"^^xsd:string ; |
| 521 | - rdfs:label "relative amount of core recovered"^^xsd:string ; | 521 | + rdfs:range ep-core:VolumePerUnitVolumeConcentration . |
| 522 | - rdfs:range ep-core:VolumePerUnitVolumeConcentration . | 522 | + |
| 523 | - | 523 | +ep-well:relativeAmountOfCoreRecovered |
| 524 | -ep-well:showDescription | 524 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 525 | - rdf:type owl:DatatypeProperty ; | 525 | + rdfs:comment "class_of_indirect_property that is the relative amount of core recovered by volume"^^xsd:string ; |
| 526 | - rdfs:comment "description of the show at a spatial part of a wellbore"^^xsd:string ; | 526 | + rdfs:domain ep-well:RecoveredCore ; |
| 527 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 527 | + rdfs:label "relative amount of core recovered"^^xsd:string ; |
| 528 | - rdfs:label "show description"^^xsd:string . | 528 | + rdfs:range ep-core:VolumePerUnitVolumeConcentration . |
| 529 | - | 529 | + |
| 530 | -ep-well:shutInCasingPressure | 530 | +ep-well:showDescription |
| 531 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 531 | + rdf:type owl:DatatypeProperty ; |
| 532 | - rdfs:comment "class_of_indirect_property that is the shut in casing pressure for a wellbore"^^xsd:string ; | 532 | + rdfs:comment "description of the show at a spatial part of a wellbore"^^xsd:string ; |
| 533 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 533 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 534 | - rdfs:label "shut in casing pressure"^^xsd:string ; | 534 | + rdfs:label "show description"^^xsd:string . |
| 535 | - rdfs:range ep-core:Pressure ; | 535 | + |
| 536 | - ep-core:seeReferenceData | 536 | +ep-well:shutInCasingPressure |
| 537 | - "http://posccaesar.org/rdl/RDS17788782"^^xsd:string . | 537 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 538 | - | 538 | + rdfs:comment "class_of_indirect_property that is the shut in casing pressure for a wellbore"^^xsd:string ; |
| 539 | -ep-well:shutInDrillPipePressure | 539 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 540 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 540 | + rdfs:label "shut in casing pressure"^^xsd:string ; |
| 541 | - rdfs:comment "class_of_indirect_property that is the shut in drill pipe pressure for a wellbore"^^xsd:string ; | 541 | + rdfs:range ep-core:Pressure ; |
| 542 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 542 | + ep-core:seeReferenceData |
| 543 | - rdfs:label "shut in drill pipe pressure"^^xsd:string ; | 543 | + "http://posccaesar.org/rdl/RDS17788782"^^xsd:string . |
| 544 | - rdfs:range ep-core:Pressure ; | 544 | + |
| 545 | - ep-core:seeReferenceData | 545 | +ep-well:shutInDrillPipePressure |
| 546 | - "http://posccaesar.org/rdl/RDS17887970"^^xsd:string . | 546 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 547 | - | 547 | + rdfs:comment "class_of_indirect_property that is the shut in drill pipe pressure for a wellbore"^^xsd:string ; |
| 548 | -ep-well:stratigraphyDescription | 548 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 549 | - rdf:type owl:DatatypeProperty ; | 549 | + rdfs:label "shut in drill pipe pressure"^^xsd:string ; |
| 550 | - rdfs:comment "description of the stratigraphy at a spatial part of a wellbore"^^xsd:string ; | 550 | + rdfs:range ep-core:Pressure ; |
| 551 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 551 | + ep-core:seeReferenceData |
| 552 | - rdfs:label "stratigraphy description"^^xsd:string . | 552 | + "http://posccaesar.org/rdl/RDS17887970"^^xsd:string . |
| 553 | - | 553 | + |
| 554 | -ep-well:strengthOfRockFormation | 554 | +ep-well:stratigraphyDescription |
| 555 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 555 | + rdf:type owl:DatatypeProperty ; |
| 556 | - rdfs:comment "class_of_indirect_property that is the strength of a surrounding rock formation"^^xsd:string ; | 556 | + rdfs:comment "description of the stratigraphy at a spatial part of a wellbore"^^xsd:string ; |
| 557 | - rdfs:domain ep-well:SurroundingRockFormation ; | 557 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 558 | - rdfs:label "strength of rock formation"^^xsd:string ; | 558 | + rdfs:label "stratigraphy description"^^xsd:string . |
| 559 | - rdfs:range ep-core:StrengthOfRockFormation . | 559 | + |
| 560 | - | 560 | +ep-well:strengthOfRockFormation |
| 561 | -ep-well:trueVerticalDepth | 561 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 562 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 562 | + rdfs:comment "class_of_indirect_property that is the strength of a surrounding rock formation"^^xsd:string ; |
| 563 | - rdfs:comment "class_of_indirect_property that is the true vertical depth to a spatial part of a wellbore"^^xsd:string ; | 563 | + rdfs:domain ep-well:SurroundingRockFormation ; |
| 564 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 564 | + rdfs:label "strength of rock formation"^^xsd:string ; |
| 565 | - rdfs:label "true vertical depth"^^xsd:string ; | 565 | + rdfs:range ep-core:StrengthOfRockFormation . |
| 566 | - rdfs:range ep-core:Length . | 566 | + |
| 567 | - | 567 | +ep-well:trueVerticalDepth |
| 568 | -ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore | 568 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 569 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 569 | + rdfs:comment "class_of_indirect_property that is the true vertical depth to a spatial part of a wellbore"^^xsd:string ; |
| 570 | - rdfs:comment "class_of_indirect_property that is the true vertical depth of the bottom of a spatial part of a wellbore"^^xsd:string ; | 570 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 571 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 571 | + rdfs:label "true vertical depth"^^xsd:string ; |
| 572 | - rdfs:label "true vertical depth to the bottom of a part of a wellbore"^^xsd:string ; | 572 | + rdfs:range ep-core:Length . |
| 573 | - rdfs:range ep-core:Length . | 573 | + |
| 574 | - | 574 | +ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore |
| 575 | -ep-well:trueVerticalDepthToTheTopOfAPartOfAWellBore | 575 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 576 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 576 | + rdfs:comment "class_of_indirect_property that is the true vertical depth of the bottom of a spatial part of a wellbore"^^xsd:string ; |
| 577 | - rdfs:comment "class_of_indirect_property that is the true vertical depth of the top of a spatial part of a wellbore"^^xsd:string ; | 577 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 578 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 578 | + rdfs:label "true vertical depth to the bottom of a part of a wellbore"^^xsd:string ; |
| 579 | - rdfs:label "true vertical depth to the top of a part of a wellbore"^^xsd:string ; | 579 | + rdfs:range ep-core:Length . |
| 580 | - rdfs:range ep-core:Length . | 580 | + |
| 581 | - | 581 | +ep-well:trueVerticalDepthToTheTopOfAPartOfAWellBore |
| 582 | -ep-well:wellBoreCompletedAt | 582 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 583 | - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | 583 | + rdfs:comment "class_of_indirect_property that is the true vertical depth of the top of a spatial part of a wellbore"^^xsd:string ; |
| 584 | - rdfs:comment "UTC representation of the time at which a wellbore was completed"^^xsd:string ; | 584 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 585 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 585 | + rdfs:label "true vertical depth to the top of a part of a wellbore"^^xsd:string ; |
| 586 | - rdfs:label "wellbore completed at"^^xsd:string . | 586 | + rdfs:range ep-core:Length . |
| 587 | - | 587 | + |
| 588 | -ep-well:wellBorePreSpudAt | 588 | +ep-well:wellBoreCompletedAt |
| 589 | - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | 589 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 590 | - rdfs:comment "UTC representation of the time at of the pre-spud for a wellbore"^^xsd:string ; | 590 | + rdfs:comment "UTC representation of the time at which a wellbore was completed"^^xsd:string ; |
| 591 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 591 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 592 | - rdfs:label "wellbore pre-spud at"^^xsd:string . | 592 | + rdfs:label "wellbore completed at"^^xsd:string . |
| 593 | - | 593 | + |
| 594 | -ep-well:wellBoreSpudAt | 594 | +ep-well:wellBorePreSpudAt |
| 595 | - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | 595 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 596 | - rdfs:comment "UTC representation of the time of spud of a wellbore"^^xsd:string ; | 596 | + rdfs:comment "UTC representation of the time at of the pre-spud for a wellbore"^^xsd:string ; |
| 597 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 597 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 598 | - rdfs:label "wellbore spud at"^^xsd:string . | 598 | + rdfs:label "wellbore pre-spud at"^^xsd:string . |
| 599 | + | ||
| 600 | +ep-well:wellBoreSpudAt | ||
| 601 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 602 | + rdfs:comment "UTC representation of the time of spud of a wellbore"^^xsd:string ; | ||
| 603 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; | ||
| 604 | + rdfs:label "wellbore spud at"^^xsd:string . | ... | ... |
| ... | @@ -20,7 +20,7 @@ | ... | @@ -20,7 +20,7 @@ |
| 20 | 20 | ||
| 21 | <http://www.reportinghub.no/ep/spin/mpr-tables> | 21 | <http://www.reportinghub.no/ep/spin/mpr-tables> |
| 22 | rdf:type owl:Ontology ; | 22 | rdf:type owl:Ontology ; |
| 23 | - owl:imports <http://www.reportinghub.no/ep/transform/transform-helper-schema> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/production> , <http://spinrdf.org/spin> ; | 23 | + owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/production> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/transform/transform-helper-schema> ; |
| 24 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 24 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 25 | 25 | ||
| 26 | mpr-tables:Cargo | 26 | mpr-tables:Cargo |
| ... | @@ -2370,7 +2370,7 @@ mpr-tables:ProductionInventory | ... | @@ -2370,7 +2370,7 @@ mpr-tables:ProductionInventory |
| 2370 | sp:elements ([ sp:object | 2370 | sp:elements ([ sp:object |
| 2371 | [ sp:varName "massQuantityValue"^^xsd:string | 2371 | [ sp:varName "massQuantityValue"^^xsd:string |
| 2372 | ] ; | 2372 | ] ; |
| 2373 | - sp:predicate <http://www.reportinghub.no/ep/schema/flow#summedDailyMass> ; | 2373 | + sp:predicate <http://www.reportinghub.no/ep/schema/flow#massAtAccountingInstant> ; |
| 2374 | sp:subject | 2374 | sp:subject |
| 2375 | [ sp:varName "productInventoryInPeriod"^^xsd:string | 2375 | [ sp:varName "productInventoryInPeriod"^^xsd:string |
| 2376 | ] | 2376 | ] | ... | ... |
| ... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
| 23 | 23 | ||
| 24 | <http://www.reportinghub.no/ep/mpr/spin/1.1/lib> | 24 | <http://www.reportinghub.no/ep/mpr/spin/1.1/lib> |
| 25 | rdf:type owl:Ontology ; | 25 | rdf:type owl:Ontology ; |
| 26 | - owl:imports <http://www.reportinghub.no/ep/transform/transform-helper-schema> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production> , <http://www.epim.no/schemas/mprml/1> , <http://spinrdf.org/spin> ; | 26 | + owl:imports <http://spinrdf.org/spin> , <http://www.epim.no/schemas/mprml/1> , <http://www.reportinghub.no/ep/schema/1.0/production> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/transform/transform-helper-schema> ; |
| 27 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 27 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 28 | 28 | ||
| 29 | ep-mpr-spin-lib:Function | 29 | ep-mpr-spin-lib:Function |
| ... | @@ -5053,7 +5053,7 @@ ep-mpr-spin-lib:selectReportingFacilityType | ... | @@ -5053,7 +5053,7 @@ ep-mpr-spin-lib:selectReportingFacilityType |
| 5053 | sp:arg1 spin:_arg1 ; | 5053 | sp:arg1 spin:_arg1 ; |
| 5054 | sp:arg2 <http://www.epim.no/schemas/mprml/1#RF_completion> | 5054 | sp:arg2 <http://www.epim.no/schemas/mprml/1#RF_completion> |
| 5055 | ] ; | 5055 | ] ; |
| 5056 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#WellCompletion> ; | 5056 | + sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#WellCompletionEquipment> ; |
| 5057 | sp:arg3 [ rdf:type sp:if ; | 5057 | sp:arg3 [ rdf:type sp:if ; |
| 5058 | sp:arg1 [ rdf:type sp:eq ; | 5058 | sp:arg1 [ rdf:type sp:eq ; |
| 5059 | sp:arg1 spin:_arg1 ; | 5059 | sp:arg1 spin:_arg1 ; | ... | ... |
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
-
Please register or login to post a comment