Showing
2 changed files
with
674 additions
and
0 deletions
npd-schema-v-1.ttl
0 → 100755
1 | +# baseURI: http://data.posccaesar.org/npd/ontology/v-1 | ||
2 | +# imports: http://standards.iso.org/iso/15926/-12/ed-1/tech/ontology/ilap-npd-interface/v-1 | ||
3 | + | ||
4 | +@prefix ilap-npd-interface: <http://data.posccaesar.org/npd/ontology/ilap-interface/> . | ||
5 | +@prefix lci: <http://standards.iso.org/iso/15926/tech/ontology/> . | ||
6 | +@prefix npd-schema: <http://data.posccaesar.org/npd/ontology/> . | ||
7 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
8 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
9 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
10 | +@prefix rdl: <http://rds.posccaesar.org/2008/06/OWL/RDL#> . | ||
11 | +@prefix sp: <http://spinrdf.org/sp#> . | ||
12 | +@prefix spin: <http://spinrdf.org/spin#> . | ||
13 | +@prefix spl: <http://spinrdf.org/spl#> . | ||
14 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
15 | + | ||
16 | +ilap-npd-interface:Company | ||
17 | + rdfs:subClassOf npd-schema:Individual . | ||
18 | + | ||
19 | +ilap-npd-interface:Facility | ||
20 | + rdfs:subClassOf npd-schema:NPDIndividual . | ||
21 | + | ||
22 | +ilap-npd-interface:Field | ||
23 | + rdfs:subClassOf | ||
24 | + [ rdf:type owl:Restriction ; | ||
25 | + owl:minCardinality "0"^^xsd:nonNegativeInteger ; | ||
26 | + owl:onProperty npd-schema:currentActivityStatus | ||
27 | + ] ; | ||
28 | + rdfs:subClassOf | ||
29 | + [ rdf:type owl:Restriction ; | ||
30 | + owl:minCardinality "0"^^xsd:nonNegativeInteger ; | ||
31 | + owl:onProperty npd-schema:fieldDiscoveryWellBore | ||
32 | + ] ; | ||
33 | + rdfs:subClassOf | ||
34 | + [ rdf:type owl:Restriction ; | ||
35 | + owl:minCardinality "0"^^xsd:nonNegativeInteger ; | ||
36 | + owl:onProperty npd-schema:fieldOperator | ||
37 | + ] ; | ||
38 | + rdfs:subClassOf | ||
39 | + [ rdf:type owl:Restriction ; | ||
40 | + owl:minCardinality "0"^^xsd:nonNegativeInteger ; | ||
41 | + owl:onProperty npd-schema:fieldOwner | ||
42 | + ] . | ||
43 | + | ||
44 | +ilap-npd-interface:TemporalPartOfAField | ||
45 | + rdfs:subClassOf npd-schema:FixedFacilityParent . | ||
46 | + | ||
47 | +ilap-npd-interface:Well | ||
48 | + rdfs:subClassOf npd-schema:Individual . | ||
49 | + | ||
50 | +ilap-npd-interface:Wellbore | ||
51 | + rdfs:subClassOf npd-schema:NPDIndividual . | ||
52 | + | ||
53 | +npd-schema:BusinessArrangementArea | ||
54 | + rdf:type owl:Class ; | ||
55 | + rdfs:comment "an area on the Norweigan Continental Shelf that is that is a result of unitisations, sliding scale rules or other business arrangements which have altered the terms of the original production licence"^^xsd:string ; | ||
56 | + rdfs:label "Norwegian business arrangement area"@en ; | ||
57 | + rdfs:subClassOf npd-schema:Owner , npd-schema:NPDIndividual , lci:PossibleIndividual . | ||
58 | + | ||
59 | +npd-schema:DWBP_Injection | ||
60 | + rdf:type npd-schema:DevelopmentWellBorePurpose ; | ||
61 | + rdfs:label "injection"@en ; | ||
62 | + npd-schema:code "INJECTION"^^xsd:string . | ||
63 | + | ||
64 | +npd-schema:DWBP_Observation | ||
65 | + rdf:type npd-schema:DevelopmentWellBorePurpose ; | ||
66 | + rdfs:label "observation"@en ; | ||
67 | + npd-schema:code "OBSERVATION"^^xsd:string . | ||
68 | + | ||
69 | +npd-schema:DWBP_Production | ||
70 | + rdf:type npd-schema:DevelopmentWellBorePurpose ; | ||
71 | + rdfs:label "production"@en ; | ||
72 | + npd-schema:code "PRODUCTION"^^xsd:string . | ||
73 | + | ||
74 | +npd-schema:DevelopmentWellBorePurpose | ||
75 | + rdf:type owl:Class ; | ||
76 | + rdfs:comment "the purpose of the development wellbore"^^xsd:string ; | ||
77 | + rdfs:label "Development well bore purpose"@en ; | ||
78 | + rdfs:subClassOf npd-schema:WellBorePurpose ; | ||
79 | + owl:oneOf (npd-schema:DWBP_Injection npd-schema:DWBP_Observation npd-schema:DWBP_Production) . | ||
80 | + | ||
81 | +npd-schema:Discovery | ||
82 | + rdf:type owl:Class ; | ||
83 | + rdfs:comment "A discovery is a petroleum deposit or several petroleum deposits collectively, which have been discovered in the same well, in which through testing, sampling or logging there has been established a probability of the existence of mobile petroleum (includes both commercial and technical discovery)."^^xsd:string ; | ||
84 | + rdfs:label "petroleum deposit discovery"@en ; | ||
85 | + rdfs:subClassOf npd-schema:NPDIndividual . | ||
86 | + | ||
87 | +npd-schema:EWBP_Appraisal | ||
88 | + rdf:type npd-schema:ExplorationWellBorePurpose ; | ||
89 | + rdfs:label "appraisal"@en ; | ||
90 | + npd-schema:code "APPRAISAL"^^xsd:string . | ||
91 | + | ||
92 | +npd-schema:EWBP_Wildcat | ||
93 | + rdf:type npd-schema:ExplorationWellBorePurpose ; | ||
94 | + rdfs:label "wildcat"@en ; | ||
95 | + npd-schema:code "WILDCAT"^^xsd:string . | ||
96 | + | ||
97 | +npd-schema:EWBP_Wildcat-Appraisal | ||
98 | + rdf:type npd-schema:ExplorationWellBorePurpose ; | ||
99 | + rdfs:label "wildcat & appraisal"@en ; | ||
100 | + npd-schema:code "WILDCAT&APPRAISAL"^^xsd:string . | ||
101 | + | ||
102 | +npd-schema:Enumeration | ||
103 | + rdf:type owl:Class ; | ||
104 | + rdfs:label "Enumeration"^^xsd:string ; | ||
105 | + rdfs:subClassOf owl:Thing ; | ||
106 | + rdfs:subClassOf | ||
107 | + [ rdf:type owl:Restriction ; | ||
108 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; | ||
109 | + owl:onProperty npd-schema:code | ||
110 | + ] . | ||
111 | + | ||
112 | +npd-schema:ExplorationWellBorePurpose | ||
113 | + rdf:type owl:Class ; | ||
114 | + rdfs:comment "the purpose of the exploration wellbore"^^xsd:string ; | ||
115 | + rdfs:label "Exploration well bore purpose"@en ; | ||
116 | + rdfs:subClassOf npd-schema:WellBorePurpose ; | ||
117 | + owl:oneOf (npd-schema:EWBP_Appraisal npd-schema:EWBP_Wildcat-Appraisal npd-schema:EWBP_Wildcat) . | ||
118 | + | ||
119 | +npd-schema:FixedFacilityParent | ||
120 | + rdf:type owl:Class ; | ||
121 | + rdfs:comment "the parent facility of a fixed facility"^^xsd:string ; | ||
122 | + rdfs:label "fixed facility parent"@en ; | ||
123 | + rdfs:subClassOf npd-schema:NPDIndividual . | ||
124 | + | ||
125 | +npd-schema:HCT_Gas | ||
126 | + rdf:type npd-schema:HCType ; | ||
127 | + rdfs:label "gas"@en ; | ||
128 | + npd-schema:code "GAS"^^xsd:string . | ||
129 | + | ||
130 | +npd-schema:HCT_Gas-Condensate | ||
131 | + rdf:type npd-schema:HCType ; | ||
132 | + rdfs:label "gas/condensate"@en ; | ||
133 | + npd-schema:code "GAS/CONDENSATE"^^xsd:string . | ||
134 | + | ||
135 | +npd-schema:HCT_Oil | ||
136 | + rdf:type npd-schema:HCType ; | ||
137 | + rdfs:label "oil"@en ; | ||
138 | + npd-schema:code "OIL"^^xsd:string . | ||
139 | + | ||
140 | +npd-schema:HCT_Oil-Gas | ||
141 | + rdf:type npd-schema:HCType ; | ||
142 | + rdfs:label "oil/gas"@en ; | ||
143 | + npd-schema:code "OIL/GAS"^^xsd:string . | ||
144 | + | ||
145 | +npd-schema:HCType | ||
146 | + rdf:type owl:Class ; | ||
147 | + rdfs:comment "class that is a valid hydrocarbon type in the NPD fact pages"^^xsd:string ; | ||
148 | + rdfs:label "HC Type"@en ; | ||
149 | + rdfs:subClassOf npd-schema:Enumeration ; | ||
150 | + owl:oneOf (npd-schema:HCT_Gas-Condensate npd-schema:HCT_Oil-Gas npd-schema:HCT_Gas npd-schema:HCT_Oil) . | ||
151 | + | ||
152 | +npd-schema:Individual | ||
153 | + rdf:type owl:Class ; | ||
154 | + rdfs:label "Individual"@en ; | ||
155 | + rdfs:subClassOf owl:Thing . | ||
156 | + | ||
157 | +npd-schema:LS_Active | ||
158 | + rdf:type npd-schema:LicenceStatus ; | ||
159 | + rdfs:label "active"@en ; | ||
160 | + npd-schema:code "ACTIVE"^^xsd:string . | ||
161 | + | ||
162 | +npd-schema:LS_Inactive | ||
163 | + rdf:type npd-schema:LicenceStatus ; | ||
164 | + rdfs:label "inactive"@en ; | ||
165 | + npd-schema:code "INACTIVE"^^xsd:string . | ||
166 | + | ||
167 | +npd-schema:Licence | ||
168 | + rdf:type owl:Class ; | ||
169 | + rdfs:comment "an area on the Norweigan Continental Shelf to which the Ministry of Petroleum and Energy has granted a production licence"^^xsd:string ; | ||
170 | + rdfs:label "Norwegian production license area"@en ; | ||
171 | + rdfs:subClassOf npd-schema:NPDIndividual , lci:PossibleIndividual , npd-schema:Owner . | ||
172 | + | ||
173 | +npd-schema:LicenceStatus | ||
174 | + rdf:type owl:Class ; | ||
175 | + rdfs:comment "class that is the active – inactive status of a licence"^^xsd:string ; | ||
176 | + rdfs:label "Licence status"@en ; | ||
177 | + rdfs:subClassOf npd-schema:Enumeration ; | ||
178 | + owl:oneOf (npd-schema:LS_Active npd-schema:LS_Inactive) . | ||
179 | + | ||
180 | +npd-schema:MNA_BarentsSea | ||
181 | + rdf:type npd-schema:MainNCSArea ; | ||
182 | + rdfs:label "Barents sea"@en ; | ||
183 | + npd-schema:code "Barents sea"^^xsd:string . | ||
184 | + | ||
185 | +npd-schema:MNA_NorthSea | ||
186 | + rdf:type npd-schema:MainNCSArea ; | ||
187 | + rdfs:label "North sea"@en ; | ||
188 | + npd-schema:code "North sea"^^xsd:string . | ||
189 | + | ||
190 | +npd-schema:MNA_NorwegianSea | ||
191 | + rdf:type npd-schema:MainNCSArea ; | ||
192 | + rdfs:label "Norwegian sea"@en ; | ||
193 | + npd-schema:code "Norwegian sea"^^xsd:string . | ||
194 | + | ||
195 | +npd-schema:MainNCSArea | ||
196 | + rdf:type owl:Class ; | ||
197 | + rdfs:comment "part of the surface of the earth that is a main area of the Norwegian Continental Shelf"^^xsd:string ; | ||
198 | + rdfs:label "Main NCS Area"@en ; | ||
199 | + rdfs:subClassOf npd-schema:Enumeration ; | ||
200 | + owl:oneOf (npd-schema:MNA_NorthSea npd-schema:MNA_NorwegianSea npd-schema:MNA_BarentsSea) . | ||
201 | + | ||
202 | +npd-schema:NPDIndividual | ||
203 | + rdf:type owl:Class ; | ||
204 | + rdfs:comment "an individual that is a member of an NPD-related class"^^xsd:string ; | ||
205 | + rdfs:label "NPD individual"@en ; | ||
206 | + rdfs:subClassOf npd-schema:Individual . | ||
207 | + | ||
208 | +npd-schema:OperatingCompany | ||
209 | + rdf:type owl:Class ; | ||
210 | + rdfs:comment "a company operating a facility"^^xsd:string ; | ||
211 | + rdfs:label "operating company"@en ; | ||
212 | + rdfs:subClassOf npd-schema:NPDIndividual , ilap-npd-interface:Company . | ||
213 | + | ||
214 | +npd-schema:Owner | ||
215 | + rdf:type owl:Class ; | ||
216 | + rdfs:comment "a business arrangement area or production license on the Norweigan Continental Shelf "^^xsd:string ; | ||
217 | + rdfs:label "owner"@en ; | ||
218 | + rdfs:subClassOf npd-schema:Individual . | ||
219 | + | ||
220 | +npd-schema:ParcellBAA | ||
221 | + rdf:type owl:Class ; | ||
222 | + rdfs:comment "a business arrangement area based on a parcel"^^xsd:string ; | ||
223 | + rdfs:label "parcel BAA"@en ; | ||
224 | + rdfs:subClassOf npd-schema:BusinessArrangementArea . | ||
225 | + | ||
226 | +npd-schema:ParentCompany | ||
227 | + rdf:type owl:Class ; | ||
228 | + rdfs:comment "a company that is the parent of another company"^^xsd:string ; | ||
229 | + rdfs:label "parent company"@en ; | ||
230 | + rdfs:subClassOf ilap-npd-interface:Company . | ||
231 | + | ||
232 | +npd-schema:SeismicAreaBAA | ||
233 | + rdf:type owl:Class ; | ||
234 | + rdfs:comment "a business arrangement area that is a seismic area"^^xsd:string ; | ||
235 | + rdfs:label "seismic area BAA"@en ; | ||
236 | + rdfs:subClassOf npd-schema:BusinessArrangementArea . | ||
237 | + | ||
238 | +npd-schema:Share | ||
239 | + rdf:type owl:Class ; | ||
240 | + rdfs:comment "a company's share in something "^^xsd:string ; | ||
241 | + rdfs:label "share"@en ; | ||
242 | + rdfs:subClassOf lci:PossibleIndividual . | ||
243 | + | ||
244 | +npd-schema:ShareOfBAA | ||
245 | + rdf:type owl:Class ; | ||
246 | + rdfs:comment "a share of the ownership of a BAA"^^xsd:string ; | ||
247 | + rdfs:label "share of BAA"@en ; | ||
248 | + rdfs:subClassOf npd-schema:Share . | ||
249 | + | ||
250 | +npd-schema:ShareOfLicence | ||
251 | + rdf:type owl:Class ; | ||
252 | + rdfs:comment "a share of the ownership of a license"^^xsd:string ; | ||
253 | + rdfs:label "share of license"@en ; | ||
254 | + rdfs:subClassOf npd-schema:Share . | ||
255 | + | ||
256 | +npd-schema:SlidingScaleBAA | ||
257 | + rdf:type owl:Class ; | ||
258 | + rdfs:comment "a business arrangement area that is based on a sliding scale"^^xsd:string ; | ||
259 | + rdfs:label "sliding scale BAA"@en ; | ||
260 | + rdfs:subClassOf npd-schema:BusinessArrangementArea . | ||
261 | + | ||
262 | +npd-schema:TUF | ||
263 | + rdf:type owl:Class ; | ||
264 | + rdfs:comment "a transportation and utilization facility"^^xsd:string ; | ||
265 | + rdfs:label "TUF"@en ; | ||
266 | + rdfs:subClassOf npd-schema:FixedFacilityParent , ilap-npd-interface:Facility . | ||
267 | + | ||
268 | +npd-schema:TUFPart | ||
269 | + rdf:type owl:Class ; | ||
270 | + rdfs:comment "A part of a TUF"^^xsd:string ; | ||
271 | + rdfs:label "TUF part"@en ; | ||
272 | + rdfs:subClassOf npd-schema:FixedFacilityParent . | ||
273 | + | ||
274 | +npd-schema:UnitizedBAA | ||
275 | + rdf:type owl:Class ; | ||
276 | + rdfs:comment "a business arrangement area that is unitized"^^xsd:string ; | ||
277 | + rdfs:label "unitized BAA"@en ; | ||
278 | + rdfs:subClassOf npd-schema:BusinessArrangementArea . | ||
279 | + | ||
280 | +npd-schema:WBC_CO2 | ||
281 | + rdf:type npd-schema:WellBoreContent ; | ||
282 | + rdfs:label "CO2"@en ; | ||
283 | + npd-schema:code "CO2"^^xsd:string . | ||
284 | + | ||
285 | +npd-schema:WBC_Cuttings | ||
286 | + rdf:type npd-schema:WellBoreContent ; | ||
287 | + rdfs:label "cuttings"@en ; | ||
288 | + npd-schema:code "CUTTINGS"^^xsd:string . | ||
289 | + | ||
290 | +npd-schema:WBC_Gas | ||
291 | + rdf:type npd-schema:WellBoreContent ; | ||
292 | + rdfs:label "gas"@en ; | ||
293 | + npd-schema:code "GAS"^^xsd:string . | ||
294 | + | ||
295 | +npd-schema:WBC_Gas-Condensate | ||
296 | + rdf:type npd-schema:WellBoreContent ; | ||
297 | + rdfs:label "gas/condensate"@en ; | ||
298 | + npd-schema:code "GAS/CONDENSATE"^^xsd:string . | ||
299 | + | ||
300 | +npd-schema:WBC_NotApplicable | ||
301 | + rdf:type npd-schema:WellBoreContent ; | ||
302 | + rdfs:label "not applicable"@en ; | ||
303 | + npd-schema:code "NOT APPLICABLE"^^xsd:string . | ||
304 | + | ||
305 | +npd-schema:WBC_NotAvailable | ||
306 | + rdf:type npd-schema:WellBoreContent ; | ||
307 | + rdfs:label "not available"@en ; | ||
308 | + npd-schema:code "NOT AVAILABLE"^^xsd:string . | ||
309 | + | ||
310 | +npd-schema:WBC_Oil | ||
311 | + rdf:type npd-schema:WellBoreContent ; | ||
312 | + rdfs:label "oil"@en ; | ||
313 | + npd-schema:code "OIL"^^xsd:string . | ||
314 | + | ||
315 | +npd-schema:WBC_Oil-Gas | ||
316 | + rdf:type npd-schema:WellBoreContent ; | ||
317 | + rdfs:label "oil/gas"@en ; | ||
318 | + npd-schema:code "OIL/GAS"^^xsd:string . | ||
319 | + | ||
320 | +npd-schema:WBC_Water | ||
321 | + rdf:type npd-schema:WellBoreContent ; | ||
322 | + rdfs:label "water"@en ; | ||
323 | + npd-schema:code "WATER"^^xsd:string . | ||
324 | + | ||
325 | +npd-schema:WBC_Water-Gas | ||
326 | + rdf:type npd-schema:WellBoreContent ; | ||
327 | + rdfs:label "water/gas"@en ; | ||
328 | + npd-schema:code "WATER/GAS"^^xsd:string . | ||
329 | + | ||
330 | +npd-schema:WellBoreContent | ||
331 | + rdf:type owl:Class ; | ||
332 | + rdfs:comment "class of material that is a valid wellbore content in the NPD fact pages"^^xsd:string ; | ||
333 | + rdfs:label "Well bore content"@en ; | ||
334 | + rdfs:subClassOf npd-schema:Enumeration ; | ||
335 | + owl:oneOf (npd-schema:WBC_Water-Gas npd-schema:WBC_Water npd-schema:WBC_Gas npd-schema:WBC_Gas-Condensate npd-schema:WBC_NotAvailable npd-schema:WBC_Cuttings npd-schema:WBC_Oil npd-schema:WBC_NotApplicable npd-schema:WBC_Oil-Gas npd-schema:WBC_CO2) . | ||
336 | + | ||
337 | +npd-schema:WellBorePurpose | ||
338 | + rdf:type owl:Class ; | ||
339 | + rdfs:comment "class of activity that is a valid wellbore purpose in the NPD fact pages"^^xsd:string ; | ||
340 | + rdfs:label "Well bore purpose"@en ; | ||
341 | + rdfs:subClassOf npd-schema:Enumeration . | ||
342 | + | ||
343 | +npd-schema:baaOperator | ||
344 | + rdf:type owl:ObjectProperty ; | ||
345 | + rdfs:comment "the current operator of a BAA"^^xsd:string ; | ||
346 | + rdfs:domain npd-schema:BusinessArrangementArea ; | ||
347 | + rdfs:label "BAA operator"@en ; | ||
348 | + rdfs:range ilap-npd-interface:Company . | ||
349 | + | ||
350 | +npd-schema:baaShared | ||
351 | + rdf:type owl:ObjectProperty ; | ||
352 | + rdfs:comment "the BAA of which this is a share"^^xsd:string ; | ||
353 | + rdfs:domain npd-schema:ShareOfBAA ; | ||
354 | + rdfs:label "BAA shared"@en ; | ||
355 | + rdfs:range npd-schema:BusinessArrangementArea . | ||
356 | + | ||
357 | +npd-schema:belongsTo | ||
358 | + rdf:type owl:ObjectProperty ; | ||
359 | + rdfs:comment "the parent facility of the fixed facility"^^xsd:string ; | ||
360 | + rdfs:domain ilap-npd-interface:FixedFacility ; | ||
361 | + rdfs:label "belongs to"@en ; | ||
362 | + rdfs:range npd-schema:FixedFacilityParent . | ||
363 | + | ||
364 | +npd-schema:code | ||
365 | + rdf:type owl:DatatypeProperty ; | ||
366 | + rdfs:comment "the NPD code"^^xsd:string ; | ||
367 | + rdfs:label "code"@en . | ||
368 | + | ||
369 | +npd-schema:companyShortName | ||
370 | + rdf:type owl:DatatypeProperty ; | ||
371 | + rdfs:comment "the NPD company short name"^^xsd:string ; | ||
372 | + rdfs:domain ilap-npd-interface:Company ; | ||
373 | + rdfs:label "company short name"@en ; | ||
374 | + rdfs:range xsd:string . | ||
375 | + | ||
376 | +npd-schema:currentActivityStatus | ||
377 | + rdf:type owl:DatatypeProperty ; | ||
378 | + rdfs:comment "the NPD status of the field"^^xsd:string ; | ||
379 | + rdfs:domain ilap-npd-interface:Field ; | ||
380 | + rdfs:label "current activity status"@en ; | ||
381 | + rdfs:range xsd:string . | ||
382 | + | ||
383 | +npd-schema:currentOperator | ||
384 | + rdf:type owl:ObjectProperty ; | ||
385 | + rdfs:comment "the company that is the current operator of a fixed facility"^^xsd:string ; | ||
386 | + rdfs:domain ilap-npd-interface:FixedFacility ; | ||
387 | + rdfs:label "current operator"@en ; | ||
388 | + rdfs:range ilap-npd-interface:Company . | ||
389 | + | ||
390 | +npd-schema:currentlyResponsibleCompany | ||
391 | + rdf:type owl:ObjectProperty ; | ||
392 | + rdfs:comment "the company that is currently responsible for a moveable facility"^^xsd:string ; | ||
393 | + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#MoveableFacility> ; | ||
394 | + rdfs:label "currently responsible company"@en ; | ||
395 | + rdfs:range ilap-npd-interface:Company . | ||
396 | + | ||
397 | +npd-schema:discoveryCurrentActivityStatus | ||
398 | + rdf:type owl:DatatypeProperty ; | ||
399 | + rdfs:comment "the NPD status of the discovery"^^xsd:string ; | ||
400 | + rdfs:domain npd-schema:Discovery ; | ||
401 | + rdfs:label "discovery current activity status"@en ; | ||
402 | + rdfs:range xsd:string . | ||
403 | + | ||
404 | +npd-schema:discoveryField | ||
405 | + rdf:type owl:ObjectProperty ; | ||
406 | + rdfs:comment "the field in which the discovery exists"^^xsd:string ; | ||
407 | + rdfs:domain npd-schema:Discovery ; | ||
408 | + rdfs:label "discovery field"@en ; | ||
409 | + rdfs:range ilap-npd-interface:Field . | ||
410 | + | ||
411 | +npd-schema:discoveryHCType | ||
412 | + rdf:type owl:ObjectProperty ; | ||
413 | + rdfs:comment "the hydrocarbon type of the discovery"^^xsd:string ; | ||
414 | + rdfs:domain npd-schema:Discovery ; | ||
415 | + rdfs:label "discovery HC type"@en ; | ||
416 | + rdfs:range npd-schema:HCType . | ||
417 | + | ||
418 | +npd-schema:discoveryMainNcsArea | ||
419 | + rdf:type owl:ObjectProperty ; | ||
420 | + rdfs:comment "the main NCS area in which discovery is located"^^xsd:string ; | ||
421 | + rdfs:domain npd-schema:Discovery ; | ||
422 | + rdfs:label "discovery main NCS area"@en ; | ||
423 | + rdfs:range npd-schema:MainNCSArea . | ||
424 | + | ||
425 | +npd-schema:discoveryOperator | ||
426 | + rdf:type owl:ObjectProperty ; | ||
427 | + rdfs:comment "the operator of the discovery"^^xsd:string ; | ||
428 | + rdfs:domain npd-schema:Discovery ; | ||
429 | + rdfs:label "discovery operator"@en ; | ||
430 | + rdfs:range ilap-npd-interface:Company . | ||
431 | + | ||
432 | +npd-schema:discoveryOwner | ||
433 | + rdf:type owl:ObjectProperty ; | ||
434 | + rdfs:comment "the BAA or PL that owns the discovery"^^xsd:string ; | ||
435 | + rdfs:domain npd-schema:Discovery ; | ||
436 | + rdfs:label "discovery owner"@en ; | ||
437 | + rdfs:range npd-schema:Owner . | ||
438 | + | ||
439 | +npd-schema:discoveryWellBore | ||
440 | + rdf:type owl:ObjectProperty ; | ||
441 | + rdfs:comment "the wellbore that made the discovery"^^xsd:string ; | ||
442 | + rdfs:domain npd-schema:Discovery ; | ||
443 | + rdfs:label "discovery wellbore"@en ; | ||
444 | + rdfs:range ilap-npd-interface:Wellbore . | ||
445 | + | ||
446 | +npd-schema:discoveryYear | ||
447 | + rdf:type owl:DatatypeProperty ; | ||
448 | + rdfs:comment "the year the discovery was made"^^xsd:string ; | ||
449 | + rdfs:domain npd-schema:Discovery ; | ||
450 | + rdfs:label "discovery year"@en ; | ||
451 | + rdfs:range xsd:integer . | ||
452 | + | ||
453 | +npd-schema:drilledInProductionLicence | ||
454 | + rdf:type owl:ObjectProperty ; | ||
455 | + rdfs:comment "the production licence under which the wellbore was drilled"^^xsd:string ; | ||
456 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
457 | + rdfs:label "drilled in production licence"@en ; | ||
458 | + rdfs:range npd-schema:Licence . | ||
459 | + | ||
460 | +npd-schema:drillingFacility | ||
461 | + rdf:type owl:ObjectProperty ; | ||
462 | + rdfs:comment "the drilling facility of the wellbore"^^xsd:string ; | ||
463 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
464 | + rdfs:label "drilling facility"@en ; | ||
465 | + rdfs:range ilap-npd-interface:Facility . | ||
466 | + | ||
467 | +npd-schema:drillingOperator | ||
468 | + rdf:type owl:ObjectProperty ; | ||
469 | + rdfs:comment "the drilling operator of the wellbore"^^xsd:string ; | ||
470 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
471 | + rdfs:label "drilling operator"@en ; | ||
472 | + rdfs:range ilap-npd-interface:Company . | ||
473 | + | ||
474 | +npd-schema:endDate | ||
475 | + rdf:type owl:DatatypeProperty ; | ||
476 | + rdfs:comment "the NPD end date of the thing"^^xsd:string ; | ||
477 | + rdfs:domain lci:PossibleIndividual ; | ||
478 | + rdfs:label "end date"@en ; | ||
479 | + rdfs:range xsd:date . | ||
480 | + | ||
481 | +npd-schema:facilityFunctions | ||
482 | + rdf:type owl:DatatypeProperty ; | ||
483 | + rdfs:comment "the NPD functions of the facility"^^xsd:string ; | ||
484 | + rdfs:domain ilap-npd-interface:Facility ; | ||
485 | + rdfs:label "facility functions"@en ; | ||
486 | + rdfs:range xsd:string . | ||
487 | + | ||
488 | +npd-schema:facilityKind | ||
489 | + rdf:type owl:DatatypeProperty ; | ||
490 | + rdfs:comment "the NPD kind of the facility"^^xsd:string ; | ||
491 | + rdfs:domain ilap-npd-interface:Facility ; | ||
492 | + rdfs:label "facility kind"@en ; | ||
493 | + rdfs:range xsd:string . | ||
494 | + | ||
495 | +npd-schema:fieldDiscoveryWellBore | ||
496 | + rdf:type owl:ObjectProperty ; | ||
497 | + rdfs:comment "the wellbore that proved the field"^^xsd:string ; | ||
498 | + rdfs:domain ilap-npd-interface:Field ; | ||
499 | + rdfs:label "field discovery wellbore"@en ; | ||
500 | + rdfs:range ilap-npd-interface:Wellbore . | ||
501 | + | ||
502 | +npd-schema:fieldOperator | ||
503 | + rdf:type owl:ObjectProperty ; | ||
504 | + rdfs:comment "the company operating the field"^^xsd:string ; | ||
505 | + rdfs:domain ilap-npd-interface:Field ; | ||
506 | + rdfs:label "field operator"@en ; | ||
507 | + rdfs:range ilap-npd-interface:Company . | ||
508 | + | ||
509 | +npd-schema:fieldOwner | ||
510 | + rdf:type owl:ObjectProperty ; | ||
511 | + rdfs:comment "the licence that owns the field"^^xsd:string ; | ||
512 | + rdfs:domain ilap-npd-interface:Field ; | ||
513 | + rdfs:label "field owner"@en ; | ||
514 | + rdfs:range npd-schema:Owner . | ||
515 | + | ||
516 | +npd-schema:fixedFacilityPhase | ||
517 | + rdf:type owl:DatatypeProperty ; | ||
518 | + rdfs:comment "the NPD phase of the fixed facility"^^xsd:string ; | ||
519 | + rdfs:domain ilap-npd-interface:FixedFacility ; | ||
520 | + rdfs:label "fixed facility phase"@en ; | ||
521 | + rdfs:range xsd:string . | ||
522 | + | ||
523 | +npd-schema:id | ||
524 | + rdf:type owl:DatatypeProperty ; | ||
525 | + rdfs:comment "the NPD identifier"^^xsd:string ; | ||
526 | + rdfs:domain npd-schema:NPDIndividual ; | ||
527 | + rdfs:label "NPD identifier"@en ; | ||
528 | + rdfs:range xsd:string . | ||
529 | + | ||
530 | +npd-schema:licenceOperator | ||
531 | + rdf:type owl:ObjectProperty ; | ||
532 | + rdfs:comment "the company that is the operator of the licence"^^xsd:string ; | ||
533 | + rdfs:domain npd-schema:Licence ; | ||
534 | + rdfs:label "licence operator"@en ; | ||
535 | + rdfs:range npd-schema:OperatingCompany . | ||
536 | + | ||
537 | +npd-schema:licenceShared | ||
538 | + rdf:type owl:ObjectProperty ; | ||
539 | + rdfs:comment "the licence of which this is a share"^^xsd:string ; | ||
540 | + rdfs:domain npd-schema:ShareOfLicence ; | ||
541 | + rdfs:label "licence shared"@en ; | ||
542 | + rdfs:range npd-schema:Licence . | ||
543 | + | ||
544 | +npd-schema:licenceStatus | ||
545 | + rdf:type owl:ObjectProperty ; | ||
546 | + rdfs:comment "the NPD status of the licence"^^xsd:string ; | ||
547 | + rdfs:domain npd-schema:Licence ; | ||
548 | + rdfs:label "licence status"@en ; | ||
549 | + rdfs:range npd-schema:LicenceStatus . | ||
550 | + | ||
551 | +npd-schema:licensingActivity | ||
552 | + rdf:type owl:DatatypeProperty ; | ||
553 | + rdfs:comment "the Ministry of Petroleum and Energy licencing activity under which the licence was granted"^^xsd:string ; | ||
554 | + rdfs:domain npd-schema:Licence ; | ||
555 | + rdfs:label "licencing activity"@en ; | ||
556 | + rdfs:range xsd:string . | ||
557 | + | ||
558 | +npd-schema:name | ||
559 | + rdf:type owl:DatatypeProperty ; | ||
560 | + rdfs:comment "the NPD name"^^xsd:string ; | ||
561 | + rdfs:domain npd-schema:Individual ; | ||
562 | + rdfs:label "NPD name"@en ; | ||
563 | + rdfs:range xsd:string . | ||
564 | + | ||
565 | +npd-schema:organisationNumber | ||
566 | + rdf:type owl:DatatypeProperty ; | ||
567 | + rdfs:comment "the official Norwegian organization number of the operating company"^^xsd:string ; | ||
568 | + rdfs:domain npd-schema:OperatingCompany ; | ||
569 | + rdfs:label "organisation number"@en ; | ||
570 | + rdfs:range xsd:string . | ||
571 | + | ||
572 | +npd-schema:parentCompany | ||
573 | + rdf:type owl:ObjectProperty ; | ||
574 | + rdfs:comment "the parent company of the operating company"^^xsd:string ; | ||
575 | + rdfs:domain npd-schema:OperatingCompany ; | ||
576 | + rdfs:label "parent company"@en ; | ||
577 | + rdfs:range npd-schema:ParentCompany . | ||
578 | + | ||
579 | +npd-schema:partOfTUF | ||
580 | + rdf:type owl:ObjectProperty ; | ||
581 | + rdfs:comment "the TUF of which this is a part"^^xsd:string ; | ||
582 | + rdfs:domain npd-schema:TUFPart ; | ||
583 | + rdfs:label "part of TUF"@en ; | ||
584 | + rdfs:range npd-schema:TUF . | ||
585 | + | ||
586 | +npd-schema:partOfWell | ||
587 | + rdf:type owl:ObjectProperty ; | ||
588 | + rdfs:comment "the well of which the wellbore is a part"^^xsd:string ; | ||
589 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
590 | + rdfs:label "part of well"@en ; | ||
591 | + rdfs:range ilap-npd-interface:Well . | ||
592 | + | ||
593 | +npd-schema:percentageOfShare | ||
594 | + rdf:type owl:DatatypeProperty ; | ||
595 | + rdfs:comment "the percent of the total share of the licence"^^xsd:string ; | ||
596 | + rdfs:domain npd-schema:Share ; | ||
597 | + rdfs:label "percentage of share"@en ; | ||
598 | + rdfs:range xsd:float . | ||
599 | + | ||
600 | +npd-schema:productionFacility | ||
601 | + rdf:type owl:ObjectProperty ; | ||
602 | + rdfs:comment "the production facility for the wellbore"^^xsd:string ; | ||
603 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
604 | + rdfs:label "production facility"@en ; | ||
605 | + rdfs:range ilap-npd-interface:Facility . | ||
606 | + | ||
607 | +npd-schema:shareHolder | ||
608 | + rdf:type owl:ObjectProperty ; | ||
609 | + rdfs:comment "the company holding the share"^^xsd:string ; | ||
610 | + rdfs:domain npd-schema:Share ; | ||
611 | + rdfs:label "share holder"@en ; | ||
612 | + rdfs:range ilap-npd-interface:Company . | ||
613 | + | ||
614 | +npd-schema:startDate | ||
615 | + rdf:type owl:DatatypeProperty ; | ||
616 | + rdfs:comment "the NPD start date of the thing"^^xsd:string ; | ||
617 | + rdfs:domain lci:PossibleIndividual ; | ||
618 | + rdfs:label "start date"@en ; | ||
619 | + rdfs:range xsd:date . | ||
620 | + | ||
621 | +npd-schema:v-1 | ||
622 | + rdf:type owl:Ontology ; | ||
623 | + owl:imports <http://standards.iso.org/iso/15926/-12/ed-1/tech/ontology/ilap-npd-interface/v-1> ; | ||
624 | + owl:versionInfo "0.1.0"^^xsd:string . | ||
625 | + | ||
626 | +npd-schema:wellBoreCompletionDate | ||
627 | + rdf:type owl:DatatypeProperty ; | ||
628 | + rdfs:comment "the completion date of the wellbore"^^xsd:string ; | ||
629 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
630 | + rdfs:label "wellbore completion date"@en ; | ||
631 | + rdfs:range xsd:date ; | ||
632 | + rdfs:subPropertyOf npd-schema:endDate . | ||
633 | + | ||
634 | +npd-schema:wellBoreContent | ||
635 | + rdf:type owl:ObjectProperty ; | ||
636 | + rdfs:comment "the NPD content of the wellbore"^^xsd:string ; | ||
637 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
638 | + rdfs:label "wellbore content"@en ; | ||
639 | + rdfs:range npd-schema:WellBoreContent . | ||
640 | + | ||
641 | +npd-schema:wellBoreDrillPermit | ||
642 | + rdf:type owl:DatatypeProperty ; | ||
643 | + rdfs:comment "the NPD drill permit of the wellbore"^^xsd:string ; | ||
644 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
645 | + rdfs:label "wellbore drill permit"@en ; | ||
646 | + rdfs:range xsd:string . | ||
647 | + | ||
648 | +npd-schema:wellBorePurpose | ||
649 | + rdf:type owl:ObjectProperty ; | ||
650 | + rdfs:comment "the NPD purpose of the wellbore"^^xsd:string ; | ||
651 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
652 | + rdfs:label "wellbore purpose"@en ; | ||
653 | + rdfs:range npd-schema:WellBorePurpose . | ||
654 | + | ||
655 | +npd-schema:wellBoreType | ||
656 | + rdf:type owl:DatatypeProperty ; | ||
657 | + rdfs:comment "the NPD type of the wellbore"^^xsd:string ; | ||
658 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
659 | + rdfs:label "wellbore type"@en ; | ||
660 | + rdfs:range xsd:string . | ||
661 | + | ||
662 | +npd-schema:wellPartOfField | ||
663 | + rdf:type owl:ObjectProperty ; | ||
664 | + rdfs:comment "the well is part of field"^^xsd:string ; | ||
665 | + rdfs:domain ilap-npd-interface:Well ; | ||
666 | + rdfs:label "well part of field"@en ; | ||
667 | + rdfs:range ilap-npd-interface:Field . | ||
668 | + | ||
669 | +npd-schema:wellboreOwner | ||
670 | + rdf:type owl:ObjectProperty ; | ||
671 | + rdfs:comment "the owning licence of the wellbore"^^xsd:string ; | ||
672 | + rdfs:domain ilap-npd-interface:Wellbore ; | ||
673 | + rdfs:label "wellbore owner"@en ; | ||
674 | + rdfs:range npd-schema:Owner . |
npdi-v-1.ttl
0 → 100755
This diff could not be displayed because it is too large.
-
Please register or login to post a comment