Converted datatypes properties to enumerated object properties
Showing
2 changed files
with
647 additions
and
320 deletions
... | @@ -17,20 +17,151 @@ | ... | @@ -17,20 +17,151 @@ |
17 | npd:BusinessArrangementArea | 17 | npd:BusinessArrangementArea |
18 | rdf:type owl:Class ; | 18 | rdf:type owl:Class ; |
19 | rdfs:comment "A business arrangement area in this context is an area which is a result of unitisations, sliding scale rules or other business arrangements which have altered the terms of the original production licence."^^xsd:string ; | 19 | rdfs:comment "A business arrangement area in this context is an area which is a result of unitisations, sliding scale rules or other business arrangements which have altered the terms of the original production licence."^^xsd:string ; |
20 | - rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual , npd:Owner . | 20 | + rdfs:subClassOf npd:Owner , npd:NpdIndividual , npd:TemporalIndividual . |
21 | 21 | ||
22 | npd:Company | 22 | npd:Company |
23 | rdf:type owl:Class ; | 23 | rdf:type owl:Class ; |
24 | rdfs:subClassOf npd:NpdIndividual . | 24 | rdfs:subClassOf npd:NpdIndividual . |
25 | 25 | ||
26 | +npd:DAS_DecidedByTheLicensees | ||
27 | + rdf:type npd:DiscoveryActivityStatus ; | ||
28 | + rdfs:label "decided by the licensees"@en ; | ||
29 | + npd:code "DECIDED BY THE LICENSEES"^^xsd:string . | ||
30 | + | ||
31 | +npd:DAS_DevelopmentIsNotVeryLikely | ||
32 | + rdf:type npd:DiscoveryActivityStatus ; | ||
33 | + rdfs:label "development is not very likely"@en ; | ||
34 | + npd:code "DEVELOPMENT IS NOT VERY LIKELY"^^xsd:string . | ||
35 | + | ||
36 | +npd:DAS_DevelopmentLikelyButNotClarified | ||
37 | + rdf:type npd:DiscoveryActivityStatus ; | ||
38 | + rdfs:label "development likely but not clarified"@en ; | ||
39 | + npd:code "DEVELOPMENT LIKELY BUT NOT CLARIFIED"^^xsd:string . | ||
40 | + | ||
41 | +npd:DAS_IncludedInOtherDiscovery | ||
42 | + rdf:type npd:DiscoveryActivityStatus ; | ||
43 | + rdfs:label "included in other discovery"@en ; | ||
44 | + npd:code "INCLUDED IN OTHER DISCOVERY"^^xsd:string . | ||
45 | + | ||
46 | +npd:DAS_NewDiscoveriesNotEvaluated | ||
47 | + rdf:type npd:DiscoveryActivityStatus ; | ||
48 | + rdfs:label "new discoveries, not evaluated"@en ; | ||
49 | + npd:code "NEW DISCOVERIES, NOT EVALUATED"^^xsd:string . | ||
50 | + | ||
51 | +npd:DAS_PDOApproved | ||
52 | + rdf:type npd:DiscoveryActivityStatus ; | ||
53 | + rdfs:label "PDO approved"@en ; | ||
54 | + npd:code "PDO APPROVED"^^xsd:string . | ||
55 | + | ||
56 | +npd:DAS_PlanningPhase | ||
57 | + rdf:type npd:DiscoveryActivityStatus ; | ||
58 | + rdfs:label "planning phase"@en ; | ||
59 | + npd:code "PLANNING PHASE"^^xsd:string . | ||
60 | + | ||
61 | +npd:DAS_Producing | ||
62 | + rdf:type npd:DiscoveryActivityStatus ; | ||
63 | + rdfs:label "producing"@en ; | ||
64 | + npd:code "PRODUCING"^^xsd:string . | ||
65 | + | ||
66 | +npd:DAS_ShutDown | ||
67 | + rdf:type npd:DiscoveryActivityStatus ; | ||
68 | + rdfs:label "shut down"@en ; | ||
69 | + npd:code "SHUT DOWN"^^xsd:string . | ||
70 | + | ||
71 | +npd:DAS_Unknown | ||
72 | + rdf:type npd:DiscoveryActivityStatus ; | ||
73 | + rdfs:label "unknown"@en ; | ||
74 | + npd:code "?"^^xsd:string . | ||
75 | + | ||
26 | npd:Discovery | 76 | npd:Discovery |
27 | rdf:type owl:Class ; | 77 | rdf:type owl:Class ; |
28 | 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 ; | 78 | 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 ; |
29 | rdfs:subClassOf npd:NpdIndividual . | 79 | rdfs:subClassOf npd:NpdIndividual . |
30 | 80 | ||
81 | +npd:DiscoveryActivityStatus | ||
82 | + rdf:type owl:Class ; | ||
83 | + rdfs:label "Discovery activity status"^^xsd:string ; | ||
84 | + rdfs:subClassOf npd:Enumeration ; | ||
85 | + owl:oneOf (npd:DAS_Unknown npd:DAS_PlanningPhase npd:DAS_IncludedInOtherDiscovery npd:DAS_PDOApproved npd:DAS_ShutDown npd:DAS_DevelopmentLikelyButNotClarified npd:DAS_DecidedByTheLicensees npd:DAS_DevelopmentIsNotVeryLikely npd:DAS_NewDiscoveriesNotEvaluated npd:DAS_Producing) . | ||
86 | + | ||
87 | +npd:Enumeration | ||
88 | + rdf:type owl:Class ; | ||
89 | + rdfs:label "Enumeration"^^xsd:string ; | ||
90 | + rdfs:subClassOf owl:Thing ; | ||
91 | + rdfs:subClassOf | ||
92 | + [ rdf:type owl:Restriction ; | ||
93 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; | ||
94 | + owl:onProperty npd:code | ||
95 | + ] . | ||
96 | + | ||
97 | +npd:FAS_PDOApproved | ||
98 | + rdf:type npd:FieldActivityStatus ; | ||
99 | + rdfs:label "PDO approved"@en ; | ||
100 | + npd:code "PDO APPROVED"^^xsd:string . | ||
101 | + | ||
102 | +npd:FAS_Producing | ||
103 | + rdf:type npd:FieldActivityStatus ; | ||
104 | + rdfs:label "producing"@en ; | ||
105 | + npd:code "PRODUCING"^^xsd:string . | ||
106 | + | ||
107 | +npd:FAS_ShutDown | ||
108 | + rdf:type npd:FieldActivityStatus ; | ||
109 | + rdfs:label "shut down"@en ; | ||
110 | + npd:code "SHUT DOWN"^^xsd:string . | ||
111 | + | ||
112 | +npd:FFP_Decommissioned | ||
113 | + rdf:type npd:FixedFacilityPhase ; | ||
114 | + rdfs:label "decommissioned"@en ; | ||
115 | + npd:code "DECOMMISSIONED"^^xsd:string . | ||
116 | + | ||
117 | +npd:FFP_DisposalCompleted | ||
118 | + rdf:type npd:FixedFacilityPhase ; | ||
119 | + rdfs:label "disposal completed"@en ; | ||
120 | + npd:code "DISPOSAL COMPLETED"^^xsd:string . | ||
121 | + | ||
122 | +npd:FFP_Fabrication | ||
123 | + rdf:type npd:FixedFacilityPhase ; | ||
124 | + rdfs:label "fabrication"@en ; | ||
125 | + npd:code "FABRICATION"^^xsd:string . | ||
126 | + | ||
127 | +npd:FFP_Future | ||
128 | + rdf:type npd:FixedFacilityPhase ; | ||
129 | + rdfs:label "future"@en ; | ||
130 | + npd:code "FUTURE"^^xsd:string . | ||
131 | + | ||
132 | +npd:FFP_InService | ||
133 | + rdf:type npd:FixedFacilityPhase ; | ||
134 | + rdfs:label "in service"@en ; | ||
135 | + npd:code "IN SERVICE"^^xsd:string . | ||
136 | + | ||
137 | +npd:FFP_Installation | ||
138 | + rdf:type npd:FixedFacilityPhase ; | ||
139 | + rdfs:label "installation"@en ; | ||
140 | + npd:code "INSTALLATION"^^xsd:string . | ||
141 | + | ||
142 | +npd:FFP_PartlyRemoved | ||
143 | + rdf:type npd:FixedFacilityPhase ; | ||
144 | + rdfs:label "partly removed"@en ; | ||
145 | + npd:code "PARTLY REMOVED"^^xsd:string . | ||
146 | + | ||
147 | +npd:FFP_Removal | ||
148 | + rdf:type npd:FixedFacilityPhase ; | ||
149 | + rdfs:label "removal"@en ; | ||
150 | + npd:code "REMOVAL"^^xsd:string . | ||
151 | + | ||
152 | +npd:FFP_Removed | ||
153 | + rdf:type npd:FixedFacilityPhase ; | ||
154 | + rdfs:label "removed"@en ; | ||
155 | + npd:code "REMOVED"^^xsd:string . | ||
156 | + | ||
157 | +npd:FFP_ShutDown | ||
158 | + rdf:type npd:FixedFacilityPhase ; | ||
159 | + rdfs:label "shut down"@en ; | ||
160 | + npd:code "SHUT DOWN"^^xsd:string . | ||
161 | + | ||
31 | npd:Facility | 162 | npd:Facility |
32 | rdf:type owl:Class ; | 163 | rdf:type owl:Class ; |
33 | - rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual . | 164 | + rdfs:subClassOf npd:NpdIndividual , npd:TemporalIndividual . |
34 | 165 | ||
35 | npd:Field | 166 | npd:Field |
36 | rdf:type owl:Class ; | 167 | rdf:type owl:Class ; |
... | @@ -41,6 +172,12 @@ A field may have several Wells, however this information is not presented direct | ... | @@ -41,6 +172,12 @@ A field may have several Wells, however this information is not presented direct |
41 | NOTE: Wells do not have NPDIDs"""^^xsd:string ; | 172 | NOTE: Wells do not have NPDIDs"""^^xsd:string ; |
42 | rdfs:subClassOf npd:FixedFacilityParent . | 173 | rdfs:subClassOf npd:FixedFacilityParent . |
43 | 174 | ||
175 | +npd:FieldActivityStatus | ||
176 | + rdf:type owl:Class ; | ||
177 | + rdfs:label "Field activity status"^^xsd:string ; | ||
178 | + rdfs:subClassOf npd:Enumeration ; | ||
179 | + owl:oneOf (npd:FAS_PDOApproved npd:FAS_Producing npd:FAS_ShutDown) . | ||
180 | + | ||
44 | npd:FieldPart | 181 | npd:FieldPart |
45 | rdf:type owl:Class ; | 182 | rdf:type owl:Class ; |
46 | rdfs:comment "A part of a Field"^^xsd:string ; | 183 | rdfs:comment "A part of a Field"^^xsd:string ; |
... | @@ -55,14 +192,83 @@ npd:FixedFacilityParent | ... | @@ -55,14 +192,83 @@ npd:FixedFacilityParent |
55 | rdf:type owl:Class ; | 192 | rdf:type owl:Class ; |
56 | rdfs:subClassOf npd:NpdIndividual . | 193 | rdfs:subClassOf npd:NpdIndividual . |
57 | 194 | ||
195 | +npd:FixedFacilityPhase | ||
196 | + rdf:type owl:Class ; | ||
197 | + rdfs:label "Fixed facility phase"^^xsd:string ; | ||
198 | + rdfs:subClassOf npd:Enumeration ; | ||
199 | + owl:oneOf (npd:FFP_Fabrication npd:FFP_PartlyRemoved npd:FFP_DisposalCompleted npd:FFP_ShutDown npd:FFP_Decommissioned npd:FFP_Removal npd:FFP_Removed npd:FFP_Installation npd:FFP_InService npd:FFP_Future) . | ||
200 | + | ||
201 | +npd:HCT_Gas | ||
202 | + rdf:type npd:HCType ; | ||
203 | + rdfs:label "gas"@en ; | ||
204 | + npd:code "GAS"^^xsd:string . | ||
205 | + | ||
206 | +npd:HCT_Gas-Condensate | ||
207 | + rdf:type npd:HCType ; | ||
208 | + rdfs:label "gas/condensate"@en ; | ||
209 | + npd:code "GAS/CONDENSATE"^^xsd:string . | ||
210 | + | ||
211 | +npd:HCT_Oil | ||
212 | + rdf:type npd:HCType ; | ||
213 | + rdfs:label "oil"@en ; | ||
214 | + npd:code "OIL"^^xsd:string . | ||
215 | + | ||
216 | +npd:HCT_Oil-Gas | ||
217 | + rdf:type npd:HCType ; | ||
218 | + rdfs:label "oil/gas"@en ; | ||
219 | + npd:code "OIL/GAS"^^xsd:string . | ||
220 | + | ||
221 | +npd:HCType | ||
222 | + rdf:type owl:Class ; | ||
223 | + rdfs:label "HCType"^^xsd:string ; | ||
224 | + rdfs:subClassOf npd:Enumeration ; | ||
225 | + owl:oneOf (npd:HCT_Gas-Condensate npd:HCT_Oil-Gas npd:HCT_Gas npd:HCT_Oil) . | ||
226 | + | ||
58 | npd:Individual | 227 | npd:Individual |
59 | rdf:type owl:Class ; | 228 | rdf:type owl:Class ; |
60 | rdfs:subClassOf owl:Thing . | 229 | rdfs:subClassOf owl:Thing . |
61 | 230 | ||
231 | +npd:LS_Active | ||
232 | + rdf:type npd:LicenseStatus ; | ||
233 | + rdfs:label "active"@en ; | ||
234 | + npd:code "ACTIVE"^^xsd:string . | ||
235 | + | ||
236 | +npd:LS_Inactive | ||
237 | + rdf:type npd:LicenseStatus ; | ||
238 | + rdfs:label "inactive"@en ; | ||
239 | + npd:code "INACTIVE"^^xsd:string . | ||
240 | + | ||
62 | npd:Licence | 241 | npd:Licence |
63 | rdf:type owl:Class ; | 242 | rdf:type owl:Class ; |
64 | rdfs:comment "Production licences are granted by the Ministry of Petroleum and Energy. Transfer of a production licence or participating interest in a production licence must be approved by the ministry."^^xsd:string ; | 243 | rdfs:comment "Production licences are granted by the Ministry of Petroleum and Energy. Transfer of a production licence or participating interest in a production licence must be approved by the ministry."^^xsd:string ; |
65 | - rdfs:subClassOf npd:Owner , npd:NpdIndividual , npd:TemporalIndividual . | 244 | + rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual , npd:Owner . |
245 | + | ||
246 | +npd:LicenseStatus | ||
247 | + rdf:type owl:Class ; | ||
248 | + rdfs:label "License status"^^xsd:string ; | ||
249 | + rdfs:subClassOf npd:Enumeration ; | ||
250 | + owl:oneOf (npd:LS_Active npd:LS_Inactive) . | ||
251 | + | ||
252 | +npd:MNA_BarentsSea | ||
253 | + rdf:type npd:MainNCSArea ; | ||
254 | + rdfs:label "Barents sea"@en ; | ||
255 | + npd:code "Barents sea"^^xsd:string . | ||
256 | + | ||
257 | +npd:MNA_NorthSea | ||
258 | + rdf:type npd:MainNCSArea ; | ||
259 | + rdfs:label "North sea"@en ; | ||
260 | + npd:code "North sea"^^xsd:string . | ||
261 | + | ||
262 | +npd:MNA_NorwegianSea | ||
263 | + rdf:type npd:MainNCSArea ; | ||
264 | + rdfs:label "Norwegian sea"@en ; | ||
265 | + npd:code "Norwegian sea"^^xsd:string . | ||
266 | + | ||
267 | +npd:MainNCSArea | ||
268 | + rdf:type owl:Class ; | ||
269 | + rdfs:label "Main NCS Area"^^xsd:string ; | ||
270 | + rdfs:subClassOf npd:Enumeration ; | ||
271 | + owl:oneOf (npd:MNA_NorthSea npd:MNA_NorwegianSea npd:MNA_BarentsSea) . | ||
66 | 272 | ||
67 | npd:MoveableFacility | 273 | npd:MoveableFacility |
68 | rdf:type owl:Class ; | 274 | rdf:type owl:Class ; |
... | @@ -139,6 +345,71 @@ npd:UnitizedBAA | ... | @@ -139,6 +345,71 @@ npd:UnitizedBAA |
139 | rdf:type owl:Class ; | 345 | rdf:type owl:Class ; |
140 | rdfs:subClassOf npd:BusinessArrangementArea . | 346 | rdfs:subClassOf npd:BusinessArrangementArea . |
141 | 347 | ||
348 | +npd:WBC_CO2 | ||
349 | + rdf:type npd:WellBoreContent ; | ||
350 | + rdfs:label "CO2"@en ; | ||
351 | + npd:code "CO2"^^xsd:string . | ||
352 | + | ||
353 | +npd:WBC_Cuttings | ||
354 | + rdf:type npd:WellBoreContent ; | ||
355 | + rdfs:label "cuttings"@en ; | ||
356 | + npd:code "CUTTINGS"^^xsd:string . | ||
357 | + | ||
358 | +npd:WBC_Gas | ||
359 | + rdf:type npd:WellBoreContent ; | ||
360 | + rdfs:label "gas"@en ; | ||
361 | + npd:code "GAS"^^xsd:string . | ||
362 | + | ||
363 | +npd:WBC_Gas-Condensate | ||
364 | + rdf:type npd:WellBoreContent ; | ||
365 | + rdfs:label "gas/condensate"@en ; | ||
366 | + npd:code "GAS/CONDENSATE"^^xsd:string . | ||
367 | + | ||
368 | +npd:WBC_NotApplicable | ||
369 | + rdf:type npd:WellBoreContent ; | ||
370 | + rdfs:label "not applicable"@en ; | ||
371 | + npd:code "NOT APPLICABLE"^^xsd:string . | ||
372 | + | ||
373 | +npd:WBC_NotAvailable | ||
374 | + rdf:type npd:WellBoreContent ; | ||
375 | + rdfs:label "not available"@en ; | ||
376 | + npd:code "NOT AVAILABLE"^^xsd:string . | ||
377 | + | ||
378 | +npd:WBC_Oil | ||
379 | + rdf:type npd:WellBoreContent ; | ||
380 | + rdfs:label "oil"@en ; | ||
381 | + npd:code "OIL"^^xsd:string . | ||
382 | + | ||
383 | +npd:WBC_Oil-Gas | ||
384 | + rdf:type npd:WellBoreContent ; | ||
385 | + rdfs:label "oil/gas"@en ; | ||
386 | + npd:code "OIL/GAS"^^xsd:string . | ||
387 | + | ||
388 | +npd:WBC_Water | ||
389 | + rdf:type npd:WellBoreContent ; | ||
390 | + rdfs:label "water"@en ; | ||
391 | + npd:code "WATER"^^xsd:string . | ||
392 | + | ||
393 | +npd:WBC_Water-Gas | ||
394 | + rdf:type npd:WellBoreContent ; | ||
395 | + rdfs:label "water/gas"@en ; | ||
396 | + npd:code "WATER/GAS"^^xsd:string . | ||
397 | + | ||
398 | +npd:WBP_Injection | ||
399 | + rdf:type npd:WellBorePurpose ; | ||
400 | + rdfs:label "injection"@en ; | ||
401 | + npd:code "INJECTION"^^xsd:string . | ||
402 | + | ||
403 | +npd:WBP_Observation | ||
404 | + rdf:type npd:WellBorePurpose ; | ||
405 | + rdfs:label "observation"@en ; | ||
406 | + npd:code "OBSERVATION"^^xsd:string . | ||
407 | + | ||
408 | +npd:WBP_Production | ||
409 | + rdf:type npd:WellBorePurpose ; | ||
410 | + rdfs:label "production"@en ; | ||
411 | + npd:code "PRODUCTION"^^xsd:string . | ||
412 | + | ||
142 | npd:Well | 413 | npd:Well |
143 | rdf:type owl:Class ; | 414 | rdf:type owl:Class ; |
144 | rdfs:comment "Wells are referred to by name in the NPD datasheets, but there is not specific dataset for them, nor do they have NPDIDs. It is assumed that Wells may have more than one WellBore, but usually only have one. Wells belong to Fields, it would seem, but again the data is patchy."^^xsd:string ; | 415 | rdfs:comment "Wells are referred to by name in the NPD datasheets, but there is not specific dataset for them, nor do they have NPDIDs. It is assumed that Wells may have more than one WellBore, but usually only have one. Wells belong to Fields, it would seem, but again the data is patchy."^^xsd:string ; |
... | @@ -146,7 +417,19 @@ npd:Well | ... | @@ -146,7 +417,19 @@ npd:Well |
146 | 417 | ||
147 | npd:WellBore | 418 | npd:WellBore |
148 | rdf:type owl:Class ; | 419 | rdf:type owl:Class ; |
149 | - rdfs:subClassOf npd:TemporalIndividual , npd:NpdIndividual . | 420 | + rdfs:subClassOf npd:NpdIndividual , npd:TemporalIndividual . |
421 | + | ||
422 | +npd:WellBoreContent | ||
423 | + rdf:type owl:Class ; | ||
424 | + rdfs:label "Well bore content"^^xsd:string ; | ||
425 | + rdfs:subClassOf npd:Enumeration ; | ||
426 | + owl:oneOf (npd:WBC_Water-Gas npd:WBC_Water npd:WBC_Gas npd:WBC_Gas-Condensate npd:WBC_NotAvailable npd:WBC_Cuttings npd:WBC_Oil npd:WBC_NotApplicable npd:WBC_Oil-Gas npd:WBC_CO2) . | ||
427 | + | ||
428 | +npd:WellBorePurpose | ||
429 | + rdf:type owl:Class ; | ||
430 | + rdfs:label "Well bore purpose"^^xsd:string ; | ||
431 | + rdfs:subClassOf npd:Enumeration ; | ||
432 | + owl:oneOf (npd:WBP_Injection npd:WBP_Observation npd:WBP_Production) . | ||
150 | 433 | ||
151 | npd:baaShared | 434 | npd:baaShared |
152 | rdf:type owl:ObjectProperty ; | 435 | rdf:type owl:ObjectProperty ; |
... | @@ -158,6 +441,11 @@ npd:belongsTo | ... | @@ -158,6 +441,11 @@ npd:belongsTo |
158 | rdfs:domain npd:FixedFacility ; | 441 | rdfs:domain npd:FixedFacility ; |
159 | rdfs:range npd:FixedFacilityParent . | 442 | rdfs:range npd:FixedFacilityParent . |
160 | 443 | ||
444 | +npd:code | ||
445 | + rdf:type owl:DatatypeProperty ; | ||
446 | + rdfs:comment "Identifier of enumerated resources (control vocabularies). Can be used to match against string values in databases etc."^^xsd:string ; | ||
447 | + rdfs:label "code"^^xsd:string . | ||
448 | + | ||
161 | npd:companyShortName | 449 | npd:companyShortName |
162 | rdf:type owl:DatatypeProperty ; | 450 | rdf:type owl:DatatypeProperty ; |
163 | rdfs:domain npd:Company ; | 451 | rdfs:domain npd:Company ; |
... | @@ -165,9 +453,9 @@ npd:companyShortName | ... | @@ -165,9 +453,9 @@ npd:companyShortName |
165 | rdfs:subPropertyOf rdfs:label . | 453 | rdfs:subPropertyOf rdfs:label . |
166 | 454 | ||
167 | npd:currentActivityStatus | 455 | npd:currentActivityStatus |
168 | - rdf:type owl:DatatypeProperty ; | 456 | + rdf:type owl:ObjectProperty ; |
169 | rdfs:domain npd:Field ; | 457 | rdfs:domain npd:Field ; |
170 | - rdfs:range xsd:string . | 458 | + rdfs:range npd:FieldActivityStatus . |
171 | 459 | ||
172 | npd:currentOperator | 460 | npd:currentOperator |
173 | rdf:type owl:ObjectProperty ; | 461 | rdf:type owl:ObjectProperty ; |
... | @@ -182,9 +470,9 @@ npd:currentlyResponsibleCompany | ... | @@ -182,9 +470,9 @@ npd:currentlyResponsibleCompany |
182 | rdfs:range npd:Company . | 470 | rdfs:range npd:Company . |
183 | 471 | ||
184 | npd:discoveryCurrentActivityStatus | 472 | npd:discoveryCurrentActivityStatus |
185 | - rdf:type owl:DatatypeProperty ; | 473 | + rdf:type owl:ObjectProperty ; |
186 | rdfs:domain npd:Discovery ; | 474 | rdfs:domain npd:Discovery ; |
187 | - rdfs:range xsd:string . | 475 | + rdfs:range npd:DiscoveryActivityStatus . |
188 | 476 | ||
189 | npd:discoveryField | 477 | npd:discoveryField |
190 | rdf:type owl:ObjectProperty ; | 478 | rdf:type owl:ObjectProperty ; |
... | @@ -193,14 +481,14 @@ npd:discoveryField | ... | @@ -193,14 +481,14 @@ npd:discoveryField |
193 | rdfs:range npd:Field . | 481 | rdfs:range npd:Field . |
194 | 482 | ||
195 | npd:discoveryHCType | 483 | npd:discoveryHCType |
196 | - rdf:type owl:DatatypeProperty ; | 484 | + rdf:type owl:ObjectProperty ; |
197 | rdfs:domain npd:Discovery ; | 485 | rdfs:domain npd:Discovery ; |
198 | - rdfs:range xsd:string . | 486 | + rdfs:range npd:HCType . |
199 | 487 | ||
200 | npd:discoveryMainNcsArea | 488 | npd:discoveryMainNcsArea |
201 | - rdf:type owl:DatatypeProperty ; | 489 | + rdf:type owl:ObjectProperty ; |
202 | rdfs:domain npd:Discovery ; | 490 | rdfs:domain npd:Discovery ; |
203 | - rdfs:range xsd:string . | 491 | + rdfs:range npd:MainNCSArea . |
204 | 492 | ||
205 | npd:discoveryOperator | 493 | npd:discoveryOperator |
206 | rdf:type owl:ObjectProperty ; | 494 | rdf:type owl:ObjectProperty ; |
... | @@ -273,15 +561,10 @@ npd:fieldOwner | ... | @@ -273,15 +561,10 @@ npd:fieldOwner |
273 | rdfs:range npd:Owner . | 561 | rdfs:range npd:Owner . |
274 | 562 | ||
275 | npd:fixedFacilityPhase | 563 | npd:fixedFacilityPhase |
276 | - rdf:type owl:DatatypeProperty ; | 564 | + rdf:type owl:ObjectProperty ; |
277 | rdfs:comment "corresponds to Phase field in fixed facility tables"^^xsd:string ; | 565 | rdfs:comment "corresponds to Phase field in fixed facility tables"^^xsd:string ; |
278 | rdfs:domain npd:FixedFacility ; | 566 | rdfs:domain npd:FixedFacility ; |
279 | - rdfs:range xsd:string . | 567 | + rdfs:range npd:FixedFacilityPhase . |
280 | - | ||
281 | -npd:hasParentCompany | ||
282 | - rdf:type owl:ObjectProperty ; | ||
283 | - rdfs:domain npd:OperatingCompany ; | ||
284 | - rdfs:range npd:ParentCompany . | ||
285 | 568 | ||
286 | npd:id | 569 | npd:id |
287 | rdf:type owl:DatatypeProperty ; | 570 | rdf:type owl:DatatypeProperty ; |
... | @@ -294,10 +577,10 @@ npd:licenceShared | ... | @@ -294,10 +577,10 @@ npd:licenceShared |
294 | rdfs:range npd:Licence . | 577 | rdfs:range npd:Licence . |
295 | 578 | ||
296 | npd:licenseStatus | 579 | npd:licenseStatus |
297 | - rdf:type owl:DatatypeProperty ; | 580 | + rdf:type owl:ObjectProperty ; |
298 | rdfs:comment "corresponds to the Status field in the License table"^^xsd:string ; | 581 | rdfs:comment "corresponds to the Status field in the License table"^^xsd:string ; |
299 | rdfs:domain npd:Licence ; | 582 | rdfs:domain npd:Licence ; |
300 | - rdfs:range xsd:string . | 583 | + rdfs:range npd:LicenseStatus . |
301 | 584 | ||
302 | npd:licensingActivity | 585 | npd:licensingActivity |
303 | rdf:type owl:DatatypeProperty ; | 586 | rdf:type owl:DatatypeProperty ; |
... | @@ -311,6 +594,11 @@ npd:name | ... | @@ -311,6 +594,11 @@ npd:name |
311 | rdfs:range xsd:string ; | 594 | rdfs:range xsd:string ; |
312 | rdfs:subPropertyOf rdfs:label . | 595 | rdfs:subPropertyOf rdfs:label . |
313 | 596 | ||
597 | +npd:parentCompany | ||
598 | + rdf:type owl:ObjectProperty ; | ||
599 | + rdfs:domain npd:OperatingCompany ; | ||
600 | + rdfs:range npd:ParentCompany . | ||
601 | + | ||
314 | npd:partOfField | 602 | npd:partOfField |
315 | rdf:type owl:ObjectProperty ; | 603 | rdf:type owl:ObjectProperty ; |
316 | rdfs:domain npd:FieldPart ; | 604 | rdfs:domain npd:FieldPart ; |
... | @@ -356,10 +644,10 @@ npd:wellBoreCompletionDate | ... | @@ -356,10 +644,10 @@ npd:wellBoreCompletionDate |
356 | rdfs:range xsd:date . | 644 | rdfs:range xsd:date . |
357 | 645 | ||
358 | npd:wellBoreContent | 646 | npd:wellBoreContent |
359 | - rdf:type owl:DatatypeProperty ; | 647 | + rdf:type owl:ObjectProperty ; |
360 | rdfs:comment "Corresponds to Content field in WellBore tables"^^xsd:string ; | 648 | rdfs:comment "Corresponds to Content field in WellBore tables"^^xsd:string ; |
361 | rdfs:domain npd:WellBore ; | 649 | rdfs:domain npd:WellBore ; |
362 | - rdfs:range xsd:string . | 650 | + rdfs:range npd:WellBoreContent . |
363 | 651 | ||
364 | npd:wellBoreDrillPermit | 652 | npd:wellBoreDrillPermit |
365 | rdf:type owl:DatatypeProperty ; | 653 | rdf:type owl:DatatypeProperty ; |
... | @@ -368,10 +656,10 @@ npd:wellBoreDrillPermit | ... | @@ -368,10 +656,10 @@ npd:wellBoreDrillPermit |
368 | rdfs:range xsd:string . | 656 | rdfs:range xsd:string . |
369 | 657 | ||
370 | npd:wellBorePurpose | 658 | npd:wellBorePurpose |
371 | - rdf:type owl:DatatypeProperty ; | 659 | + rdf:type owl:ObjectProperty ; |
372 | rdfs:comment "Corresponds to Purpose field in WellBore tables"^^xsd:string ; | 660 | rdfs:comment "Corresponds to Purpose field in WellBore tables"^^xsd:string ; |
373 | rdfs:domain npd:WellBore ; | 661 | rdfs:domain npd:WellBore ; |
374 | - rdfs:range xsd:string . | 662 | + rdfs:range npd:WellBorePurpose . |
375 | 663 | ||
376 | npd:wellBoreType | 664 | npd:wellBoreType |
377 | rdf:type owl:DatatypeProperty ; | 665 | rdf:type owl:DatatypeProperty ; | ... | ... |
... | @@ -18,7 +18,6 @@ | ... | @@ -18,7 +18,6 @@ |
18 | # imports: file:///www.reportinghub.no/transform/npd/wbdev | 18 | # imports: file:///www.reportinghub.no/transform/npd/wbdev |
19 | # imports: http://www.reportinghub.no/transform/npd/tufoperator-2011-07-30 | 19 | # imports: http://www.reportinghub.no/transform/npd/tufoperator-2011-07-30 |
20 | # imports: file:///www.reportinghub.no/transform/npd/facilitymoveable | 20 | # imports: file:///www.reportinghub.no/transform/npd/facilitymoveable |
21 | -# imports: file:///www.reportinghub.no/transform/npd/wbexp | ||
22 | # imports: file:///www.reportinghub.no/transform/npd/license-2011-07-30 | 21 | # imports: file:///www.reportinghub.no/transform/npd/license-2011-07-30 |
23 | # imports: file:///www.reportinghub.no/transform/npd/licensee | 22 | # imports: file:///www.reportinghub.no/transform/npd/licensee |
24 | # imports: file:///www.reportinghub.no/transform/npd/facilityfixed | 23 | # imports: file:///www.reportinghub.no/transform/npd/facilityfixed |
... | @@ -58,37 +57,29 @@ | ... | @@ -58,37 +57,29 @@ |
58 | 57 | ||
59 | <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#Licence> | 58 | <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#Licence> |
60 | spinmap:rule | 59 | spinmap:rule |
61 | - [ rdf:type spinmap:Mapping-0-1 ; | 60 | + [ rdf:type spinmap:Mapping-1-1 ; |
62 | spinmap:context :License-License ; | 61 | spinmap:context :License-License ; |
63 | - spinmap:expression <http://www.reportinghub.no/schema/npd#Licence> ; | 62 | + spinmap:expression spin:_arg1 ; |
63 | + spinmap:sourcePredicate1 | ||
64 | + <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlLicensingActivityName> ; | ||
64 | spinmap:targetPredicate1 | 65 | spinmap:targetPredicate1 |
65 | - rdf:type | 66 | + <http://www.reportinghub.no/schema/npd#licensingActivity> |
66 | ] ; | 67 | ] ; |
67 | spinmap:rule | 68 | spinmap:rule |
68 | [ rdf:type spinmap:Mapping-1-1 ; | 69 | [ rdf:type spinmap:Mapping-1-1 ; |
69 | spinmap:context :License-License ; | 70 | spinmap:context :License-License ; |
70 | - spinmap:expression | 71 | + spinmap:expression spin:_arg1 ; |
71 | - [ rdf:type spif:parseDate ; | ||
72 | - arg:pattern "dd.MM.yyyy" ; | ||
73 | - sp:arg1 spin:_arg1 | ||
74 | - ] ; | ||
75 | spinmap:sourcePredicate1 | 72 | spinmap:sourcePredicate1 |
76 | - <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlDateGranted> ; | 73 | + <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlName> ; |
77 | spinmap:targetPredicate1 | 74 | spinmap:targetPredicate1 |
78 | - <http://www.reportinghub.no/schema/npd#startDate> | 75 | + <http://www.reportinghub.no/schema/npd#name> |
79 | ] ; | 76 | ] ; |
80 | spinmap:rule | 77 | spinmap:rule |
81 | - [ rdf:type spinmap:Mapping-1-1 ; | 78 | + [ rdf:type spinmap:Mapping-0-1 ; |
82 | spinmap:context :License-License ; | 79 | spinmap:context :License-License ; |
83 | - spinmap:expression | 80 | + spinmap:expression <http://www.reportinghub.no/schema/npd#Licence> ; |
84 | - [ rdf:type spif:parseDate ; | ||
85 | - arg:pattern "dd.MM.yyyy" ; | ||
86 | - sp:arg1 spin:_arg1 | ||
87 | - ] ; | ||
88 | - spinmap:sourcePredicate1 | ||
89 | - <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlDateValidTo> ; | ||
90 | spinmap:targetPredicate1 | 81 | spinmap:targetPredicate1 |
91 | - <http://www.reportinghub.no/schema/npd#endDate> | 82 | + rdf:type |
92 | ] ; | 83 | ] ; |
93 | spinmap:rule | 84 | spinmap:rule |
94 | [ rdf:type spinmap:Mapping-1-1 ; | 85 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -102,29 +93,42 @@ | ... | @@ -102,29 +93,42 @@ |
102 | spinmap:rule | 93 | spinmap:rule |
103 | [ rdf:type spinmap:Mapping-1-1 ; | 94 | [ rdf:type spinmap:Mapping-1-1 ; |
104 | spinmap:context :License-License ; | 95 | spinmap:context :License-License ; |
105 | - spinmap:expression spin:_arg1 ; | 96 | + spinmap:expression |
97 | + [ rdf:type spif:parseDate ; | ||
98 | + arg:pattern "dd.MM.yyyy" ; | ||
99 | + sp:arg1 spin:_arg1 | ||
100 | + ] ; | ||
106 | spinmap:sourcePredicate1 | 101 | spinmap:sourcePredicate1 |
107 | - <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlStatus> ; | 102 | + <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlDateValidTo> ; |
108 | spinmap:targetPredicate1 | 103 | spinmap:targetPredicate1 |
109 | - <http://www.reportinghub.no/schema/npd#licenseStatus> | 104 | + <http://www.reportinghub.no/schema/npd#endDate> |
110 | ] ; | 105 | ] ; |
111 | spinmap:rule | 106 | spinmap:rule |
112 | [ rdf:type spinmap:Mapping-1-1 ; | 107 | [ rdf:type spinmap:Mapping-1-1 ; |
113 | spinmap:context :License-License ; | 108 | spinmap:context :License-License ; |
114 | - spinmap:expression spin:_arg1 ; | 109 | + spinmap:expression |
110 | + [ rdf:type spif:parseDate ; | ||
111 | + arg:pattern "dd.MM.yyyy" ; | ||
112 | + sp:arg1 spin:_arg1 | ||
113 | + ] ; | ||
115 | spinmap:sourcePredicate1 | 114 | spinmap:sourcePredicate1 |
116 | - <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlName> ; | 115 | + <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlDateGranted> ; |
117 | spinmap:targetPredicate1 | 116 | spinmap:targetPredicate1 |
118 | - <http://www.reportinghub.no/schema/npd#name> | 117 | + <http://www.reportinghub.no/schema/npd#startDate> |
119 | ] ; | 118 | ] ; |
120 | spinmap:rule | 119 | spinmap:rule |
121 | [ rdf:type spinmap:Mapping-1-1 ; | 120 | [ rdf:type spinmap:Mapping-1-1 ; |
122 | spinmap:context :License-License ; | 121 | spinmap:context :License-License ; |
123 | - spinmap:expression spin:_arg1 ; | 122 | + spinmap:expression |
123 | + [ rdf:type spinmapl:resourceWithValue ; | ||
124 | + sp:arg1 spin:_arg1 ; | ||
125 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; | ||
126 | + spinmapl:type <http://www.reportinghub.no/schema/npd#LicenseStatus> | ||
127 | + ] ; | ||
124 | spinmap:sourcePredicate1 | 128 | spinmap:sourcePredicate1 |
125 | - <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlLicensingActivityName> ; | 129 | + <file:///www.reportinghub.no/examples/transform/npd/licence-2011-07-30.csv#prlStatus> ; |
126 | spinmap:targetPredicate1 | 130 | spinmap:targetPredicate1 |
127 | - <http://www.reportinghub.no/schema/npd#licensingActivity> | 131 | + <http://www.reportinghub.no/schema/npd#licenseStatus> |
128 | ] . | 132 | ] . |
129 | 133 | ||
130 | <file:///www.reportinghub.no/transform/npd/baa#BAA> | 134 | <file:///www.reportinghub.no/transform/npd/baa#BAA> |
... | @@ -133,22 +137,22 @@ | ... | @@ -133,22 +137,22 @@ |
133 | spinmap:context :BAA-BusinessArrangementArea ; | 137 | spinmap:context :BAA-BusinessArrangementArea ; |
134 | spinmap:expression spin:_arg1 ; | 138 | spinmap:expression spin:_arg1 ; |
135 | spinmap:sourcePredicate1 | 139 | spinmap:sourcePredicate1 |
136 | - <file:///www.reportinghub.no/transform/npd/baa#baaName> ; | 140 | + <file:///www.reportinghub.no/transform/npd/baa#baaNpdidBsnsArrArea> ; |
137 | spinmap:targetPredicate1 | 141 | spinmap:targetPredicate1 |
138 | - <http://www.reportinghub.no/schema/npd#name> | 142 | + <http://www.reportinghub.no/schema/npd#id> |
139 | ] ; | 143 | ] ; |
140 | spinmap:rule | 144 | spinmap:rule |
141 | [ rdf:type spinmap:Mapping-1-1 ; | 145 | [ rdf:type spinmap:Mapping-1-1 ; |
142 | spinmap:context :BAA-BusinessArrangementArea ; | 146 | spinmap:context :BAA-BusinessArrangementArea ; |
143 | spinmap:expression | 147 | spinmap:expression |
144 | - [ rdf:type spif:parseDate ; | 148 | + [ rdf:type spinmapl:resourceWithValue ; |
145 | - arg:pattern "dd.MM.yyyy" ; | 149 | + sp:arg1 spin:_arg1 ; |
146 | - sp:arg1 spin:_arg1 | 150 | + spinmapl:predicate :baaKind |
147 | ] ; | 151 | ] ; |
148 | spinmap:sourcePredicate1 | 152 | spinmap:sourcePredicate1 |
149 | - <file:///www.reportinghub.no/transform/npd/baa#baaDateValidTo> ; | 153 | + <file:///www.reportinghub.no/transform/npd/baa#baaKind> ; |
150 | spinmap:targetPredicate1 | 154 | spinmap:targetPredicate1 |
151 | - <http://www.reportinghub.no/schema/npd#endDate> | 155 | + rdf:type |
152 | ] ; | 156 | ] ; |
153 | spinmap:rule | 157 | spinmap:rule |
154 | [ rdf:type spinmap:Mapping-1-1 ; | 158 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -167,37 +171,32 @@ | ... | @@ -167,37 +171,32 @@ |
167 | [ rdf:type spinmap:Mapping-1-1 ; | 171 | [ rdf:type spinmap:Mapping-1-1 ; |
168 | spinmap:context :BAA-BusinessArrangementArea ; | 172 | spinmap:context :BAA-BusinessArrangementArea ; |
169 | spinmap:expression | 173 | spinmap:expression |
170 | - [ rdf:type spinmapl:resourceWithValue ; | 174 | + [ rdf:type spif:parseDate ; |
171 | - sp:arg1 spin:_arg1 ; | 175 | + arg:pattern "dd.MM.yyyy" ; |
172 | - spinmapl:predicate :baaKind | 176 | + sp:arg1 spin:_arg1 |
173 | ] ; | 177 | ] ; |
174 | spinmap:sourcePredicate1 | 178 | spinmap:sourcePredicate1 |
175 | - <file:///www.reportinghub.no/transform/npd/baa#baaKind> ; | 179 | + <file:///www.reportinghub.no/transform/npd/baa#baaDateValidTo> ; |
176 | spinmap:targetPredicate1 | 180 | spinmap:targetPredicate1 |
177 | - rdf:type | 181 | + <http://www.reportinghub.no/schema/npd#endDate> |
178 | ] ; | 182 | ] ; |
179 | spinmap:rule | 183 | spinmap:rule |
180 | [ rdf:type spinmap:Mapping-1-1 ; | 184 | [ rdf:type spinmap:Mapping-1-1 ; |
181 | spinmap:context :BAA-BusinessArrangementArea ; | 185 | spinmap:context :BAA-BusinessArrangementArea ; |
182 | spinmap:expression spin:_arg1 ; | 186 | spinmap:expression spin:_arg1 ; |
183 | spinmap:sourcePredicate1 | 187 | spinmap:sourcePredicate1 |
184 | - <file:///www.reportinghub.no/transform/npd/baa#baaNpdidBsnsArrArea> ; | 188 | + <file:///www.reportinghub.no/transform/npd/baa#baaName> ; |
185 | spinmap:targetPredicate1 | 189 | spinmap:targetPredicate1 |
186 | - <http://www.reportinghub.no/schema/npd#id> | 190 | + <http://www.reportinghub.no/schema/npd#name> |
187 | ] . | 191 | ] . |
188 | 192 | ||
189 | <file:///www.reportinghub.no/transform/npd/baalicensee#BAALicensee> | 193 | <file:///www.reportinghub.no/transform/npd/baalicensee#BAALicensee> |
190 | spinmap:rule | 194 | spinmap:rule |
191 | - [ rdf:type spinmap:Mapping-1-1 ; | 195 | + [ rdf:type spinmap:Mapping-0-1 ; |
192 | spinmap:context :BAALicensee-ShareOfBAA ; | 196 | spinmap:context :BAALicensee-ShareOfBAA ; |
193 | - spinmap:expression | 197 | + spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfBAA> ; |
194 | - [ rdf:type xsd:float ; | ||
195 | - sp:arg1 spin:_arg1 | ||
196 | - ] ; | ||
197 | - spinmap:sourcePredicate1 | ||
198 | - <file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeInterest> ; | ||
199 | spinmap:targetPredicate1 | 198 | spinmap:targetPredicate1 |
200 | - <http://www.reportinghub.no/schema/npd#percentageOfShare> | 199 | + rdf:type |
201 | ] ; | 200 | ] ; |
202 | spinmap:rule | 201 | spinmap:rule |
203 | [ rdf:type spinmap:Mapping-1-1 ; | 202 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -206,12 +205,12 @@ | ... | @@ -206,12 +205,12 @@ |
206 | [ rdf:type spinmapl:resourceWithValue ; | 205 | [ rdf:type spinmapl:resourceWithValue ; |
207 | sp:arg1 spin:_arg1 ; | 206 | sp:arg1 spin:_arg1 ; |
208 | spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | 207 | spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; |
209 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | 208 | + spinmapl:type <http://www.reportinghub.no/schema/npd#BusinessArrangementArea> |
210 | ] ; | 209 | ] ; |
211 | spinmap:sourcePredicate1 | 210 | spinmap:sourcePredicate1 |
212 | - <file:///www.reportinghub.no/transform/npd/baalicensee#cmpLongName> ; | 211 | + <file:///www.reportinghub.no/transform/npd/baalicensee#baaName> ; |
213 | spinmap:targetPredicate1 | 212 | spinmap:targetPredicate1 |
214 | - <http://www.reportinghub.no/schema/npd#shareHolder> | 213 | + <http://www.reportinghub.no/schema/npd#baaShared> |
215 | ] ; | 214 | ] ; |
216 | spinmap:rule | 215 | spinmap:rule |
217 | [ rdf:type spinmap:Mapping-1-1 ; | 216 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -222,9 +221,9 @@ | ... | @@ -222,9 +221,9 @@ |
222 | sp:arg1 spin:_arg1 | 221 | sp:arg1 spin:_arg1 |
223 | ] ; | 222 | ] ; |
224 | spinmap:sourcePredicate1 | 223 | spinmap:sourcePredicate1 |
225 | - <file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidTo> ; | 224 | + <file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidFrom> ; |
226 | spinmap:targetPredicate1 | 225 | spinmap:targetPredicate1 |
227 | - <http://www.reportinghub.no/schema/npd#endDate> | 226 | + <http://www.reportinghub.no/schema/npd#startDate> |
228 | ] ; | 227 | ] ; |
229 | spinmap:rule | 228 | spinmap:rule |
230 | [ rdf:type spinmap:Mapping-1-1 ; | 229 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -235,9 +234,9 @@ | ... | @@ -235,9 +234,9 @@ |
235 | sp:arg1 spin:_arg1 | 234 | sp:arg1 spin:_arg1 |
236 | ] ; | 235 | ] ; |
237 | spinmap:sourcePredicate1 | 236 | spinmap:sourcePredicate1 |
238 | - <file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidFrom> ; | 237 | + <file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeDateValidTo> ; |
239 | spinmap:targetPredicate1 | 238 | spinmap:targetPredicate1 |
240 | - <http://www.reportinghub.no/schema/npd#startDate> | 239 | + <http://www.reportinghub.no/schema/npd#endDate> |
241 | ] ; | 240 | ] ; |
242 | spinmap:rule | 241 | spinmap:rule |
243 | [ rdf:type spinmap:Mapping-1-1 ; | 242 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -246,37 +245,35 @@ | ... | @@ -246,37 +245,35 @@ |
246 | [ rdf:type spinmapl:resourceWithValue ; | 245 | [ rdf:type spinmapl:resourceWithValue ; |
247 | sp:arg1 spin:_arg1 ; | 246 | sp:arg1 spin:_arg1 ; |
248 | spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | 247 | spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; |
249 | - spinmapl:type <http://www.reportinghub.no/schema/npd#BusinessArrangementArea> | 248 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Company> |
250 | ] ; | 249 | ] ; |
251 | spinmap:sourcePredicate1 | 250 | spinmap:sourcePredicate1 |
252 | - <file:///www.reportinghub.no/transform/npd/baalicensee#baaName> ; | 251 | + <file:///www.reportinghub.no/transform/npd/baalicensee#cmpLongName> ; |
253 | spinmap:targetPredicate1 | 252 | spinmap:targetPredicate1 |
254 | - <http://www.reportinghub.no/schema/npd#baaShared> | 253 | + <http://www.reportinghub.no/schema/npd#shareHolder> |
255 | ] ; | 254 | ] ; |
256 | spinmap:rule | 255 | spinmap:rule |
257 | - [ rdf:type spinmap:Mapping-0-1 ; | 256 | + [ rdf:type spinmap:Mapping-1-1 ; |
258 | spinmap:context :BAALicensee-ShareOfBAA ; | 257 | spinmap:context :BAALicensee-ShareOfBAA ; |
259 | - spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfBAA> ; | 258 | + spinmap:expression |
259 | + [ rdf:type xsd:float ; | ||
260 | + sp:arg1 spin:_arg1 | ||
261 | + ] ; | ||
262 | + spinmap:sourcePredicate1 | ||
263 | + <file:///www.reportinghub.no/transform/npd/baalicensee#baaLicenseeInterest> ; | ||
260 | spinmap:targetPredicate1 | 264 | spinmap:targetPredicate1 |
261 | - rdf:type | 265 | + <http://www.reportinghub.no/schema/npd#percentageOfShare> |
262 | ] . | 266 | ] . |
263 | 267 | ||
264 | <file:///www.reportinghub.no/transform/npd/company#Company> | 268 | <file:///www.reportinghub.no/transform/npd/company#Company> |
265 | spinmap:rule | 269 | spinmap:rule |
266 | - [ rdf:type spinmap:Mapping-0-1 ; | ||
267 | - spinmap:context :Company-Company ; | ||
268 | - spinmap:expression <http://www.reportinghub.no/schema/npd#Company> ; | ||
269 | - spinmap:targetPredicate1 | ||
270 | - rdf:type | ||
271 | - ] ; | ||
272 | - spinmap:rule | ||
273 | [ rdf:type spinmap:Mapping-1-1 ; | 270 | [ rdf:type spinmap:Mapping-1-1 ; |
274 | spinmap:context :Company-Company ; | 271 | spinmap:context :Company-Company ; |
275 | spinmap:expression spin:_arg1 ; | 272 | spinmap:expression spin:_arg1 ; |
276 | spinmap:sourcePredicate1 | 273 | spinmap:sourcePredicate1 |
277 | - <file:///www.reportinghub.no/transform/npd/company#cmpLongName> ; | 274 | + <file:///www.reportinghub.no/transform/npd/company#cmpNpdidCompany> ; |
278 | spinmap:targetPredicate1 | 275 | spinmap:targetPredicate1 |
279 | - <http://www.reportinghub.no/schema/npd#name> | 276 | + <http://www.reportinghub.no/schema/npd#id> |
280 | ] ; | 277 | ] ; |
281 | spinmap:rule | 278 | spinmap:rule |
282 | [ rdf:type spinmap:Mapping-1-1 ; | 279 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -292,29 +289,39 @@ | ... | @@ -292,29 +289,39 @@ |
292 | spinmap:context :Company-Company ; | 289 | spinmap:context :Company-Company ; |
293 | spinmap:expression spin:_arg1 ; | 290 | spinmap:expression spin:_arg1 ; |
294 | spinmap:sourcePredicate1 | 291 | spinmap:sourcePredicate1 |
295 | - <file:///www.reportinghub.no/transform/npd/company#cmpNpdidCompany> ; | 292 | + <file:///www.reportinghub.no/transform/npd/company#cmpLongName> ; |
296 | spinmap:targetPredicate1 | 293 | spinmap:targetPredicate1 |
297 | - <http://www.reportinghub.no/schema/npd#id> | 294 | + <http://www.reportinghub.no/schema/npd#name> |
295 | + ] ; | ||
296 | + spinmap:rule | ||
297 | + [ rdf:type spinmap:Mapping-0-1 ; | ||
298 | + spinmap:context :Company-Company ; | ||
299 | + spinmap:expression <http://www.reportinghub.no/schema/npd#Company> ; | ||
300 | + spinmap:targetPredicate1 | ||
301 | + rdf:type | ||
298 | ] . | 302 | ] . |
299 | 303 | ||
300 | <file:///www.reportinghub.no/transform/npd/discovery#Discovery> | 304 | <file:///www.reportinghub.no/transform/npd/discovery#Discovery> |
301 | spinmap:rule | 305 | spinmap:rule |
302 | [ rdf:type spinmap:Mapping-1-1 ; | 306 | [ rdf:type spinmap:Mapping-1-1 ; |
303 | spinmap:context :Discovery-Discovery ; | 307 | spinmap:context :Discovery-Discovery ; |
304 | - spinmap:expression spin:_arg1 ; | 308 | + spinmap:expression |
309 | + [ rdf:type spinmapl:resourceWithValue ; | ||
310 | + sp:arg1 spin:_arg1 ; | ||
311 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
312 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
313 | + ] ; | ||
305 | spinmap:sourcePredicate1 | 314 | spinmap:sourcePredicate1 |
306 | - <file:///www.reportinghub.no/transform/npd/discovery#nmaName> ; | 315 | + <file:///www.reportinghub.no/transform/npd/discovery#cmpLongName2> ; |
307 | spinmap:targetPredicate1 | 316 | spinmap:targetPredicate1 |
308 | - <http://www.reportinghub.no/schema/npd#discoveryMainNcsArea> | 317 | + <http://www.reportinghub.no/schema/npd#discoveryOperator> |
309 | ] ; | 318 | ] ; |
310 | spinmap:rule | 319 | spinmap:rule |
311 | - [ rdf:type spinmap:Mapping-1-1 ; | 320 | + [ rdf:type spinmap:Mapping-0-1 ; |
312 | spinmap:context :Discovery-Discovery ; | 321 | spinmap:context :Discovery-Discovery ; |
313 | - spinmap:expression spin:_arg1 ; | 322 | + spinmap:expression <http://www.reportinghub.no/schema/npd#Discovery> ; |
314 | - spinmap:sourcePredicate1 | ||
315 | - <file:///www.reportinghub.no/transform/npd/discovery#dscCurrentActivityStatus> ; | ||
316 | spinmap:targetPredicate1 | 323 | spinmap:targetPredicate1 |
317 | - <http://www.reportinghub.no/schema/npd#discoveryCurrentActivityStatus> | 324 | + rdf:type |
318 | ] ; | 325 | ] ; |
319 | spinmap:rule | 326 | spinmap:rule |
320 | [ rdf:type spinmap:Mapping-1-1 ; | 327 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -322,20 +329,25 @@ | ... | @@ -322,20 +329,25 @@ |
322 | spinmap:expression | 329 | spinmap:expression |
323 | [ rdf:type spinmapl:resourceWithValue ; | 330 | [ rdf:type spinmapl:resourceWithValue ; |
324 | sp:arg1 spin:_arg1 ; | 331 | sp:arg1 spin:_arg1 ; |
325 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | 332 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; |
326 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Owner> | 333 | + spinmapl:type <http://www.reportinghub.no/schema/npd#MainNCSArea> |
327 | ] ; | 334 | ] ; |
328 | spinmap:sourcePredicate1 | 335 | spinmap:sourcePredicate1 |
329 | - <file:///www.reportinghub.no/transform/npd/discovery#dscOwnerName> ; | 336 | + <file:///www.reportinghub.no/transform/npd/discovery#nmaName> ; |
330 | spinmap:targetPredicate1 | 337 | spinmap:targetPredicate1 |
331 | - <http://www.reportinghub.no/schema/npd#discoveryOwner> | 338 | + <http://www.reportinghub.no/schema/npd#discoveryMainNcsArea> |
332 | ] ; | 339 | ] ; |
333 | spinmap:rule | 340 | spinmap:rule |
334 | - [ rdf:type spinmap:Mapping-0-1 ; | 341 | + [ rdf:type spinmap:Mapping-1-1 ; |
335 | spinmap:context :Discovery-Discovery ; | 342 | spinmap:context :Discovery-Discovery ; |
336 | - spinmap:expression <http://www.reportinghub.no/schema/npd#Discovery> ; | 343 | + spinmap:expression |
344 | + [ rdf:type rhspin:fieldById ; | ||
345 | + arg:id spin:_arg1 | ||
346 | + ] ; | ||
347 | + spinmap:sourcePredicate1 | ||
348 | + <file:///www.reportinghub.no/transform/npd/discovery#fldNpdidField> ; | ||
337 | spinmap:targetPredicate1 | 349 | spinmap:targetPredicate1 |
338 | - rdf:type | 350 | + <http://www.reportinghub.no/schema/npd#discoveryField> |
339 | ] ; | 351 | ] ; |
340 | spinmap:rule | 352 | spinmap:rule |
341 | [ rdf:type spinmap:Mapping-1-1 ; | 353 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -352,25 +364,25 @@ | ... | @@ -352,25 +364,25 @@ |
352 | spinmap:rule | 364 | spinmap:rule |
353 | [ rdf:type spinmap:Mapping-1-1 ; | 365 | [ rdf:type spinmap:Mapping-1-1 ; |
354 | spinmap:context :Discovery-Discovery ; | 366 | spinmap:context :Discovery-Discovery ; |
355 | - spinmap:expression | 367 | + spinmap:expression spin:_arg1 ; |
356 | - [ rdf:type spinmapl:resourceWithValue ; | ||
357 | - sp:arg1 spin:_arg1 ; | ||
358 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
359 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
360 | - ] ; | ||
361 | spinmap:sourcePredicate1 | 368 | spinmap:sourcePredicate1 |
362 | - <file:///www.reportinghub.no/transform/npd/discovery#cmpLongName2> ; | 369 | + <file:///www.reportinghub.no/transform/npd/discovery#dscNpdidDiscovery> ; |
363 | spinmap:targetPredicate1 | 370 | spinmap:targetPredicate1 |
364 | - <http://www.reportinghub.no/schema/npd#discoveryOperator> | 371 | + <http://www.reportinghub.no/schema/npd#id> |
365 | ] ; | 372 | ] ; |
366 | spinmap:rule | 373 | spinmap:rule |
367 | [ rdf:type spinmap:Mapping-1-1 ; | 374 | [ rdf:type spinmap:Mapping-1-1 ; |
368 | spinmap:context :Discovery-Discovery ; | 375 | spinmap:context :Discovery-Discovery ; |
369 | - spinmap:expression spin:_arg1 ; | 376 | + spinmap:expression |
377 | + [ rdf:type spinmapl:resourceWithValue ; | ||
378 | + sp:arg1 spin:_arg1 ; | ||
379 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; | ||
380 | + spinmapl:type <http://www.reportinghub.no/schema/npd#DiscoveryActivityStatus> | ||
381 | + ] ; | ||
370 | spinmap:sourcePredicate1 | 382 | spinmap:sourcePredicate1 |
371 | - <file:///www.reportinghub.no/transform/npd/discovery#dscName> ; | 383 | + <file:///www.reportinghub.no/transform/npd/discovery#dscCurrentActivityStatus> ; |
372 | spinmap:targetPredicate1 | 384 | spinmap:targetPredicate1 |
373 | - <http://www.reportinghub.no/schema/npd#name> | 385 | + <http://www.reportinghub.no/schema/npd#discoveryCurrentActivityStatus> |
374 | ] ; | 386 | ] ; |
375 | spinmap:rule | 387 | spinmap:rule |
376 | [ rdf:type spinmap:Mapping-1-1 ; | 388 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -387,7 +399,12 @@ | ... | @@ -387,7 +399,12 @@ |
387 | spinmap:rule | 399 | spinmap:rule |
388 | [ rdf:type spinmap:Mapping-1-1 ; | 400 | [ rdf:type spinmap:Mapping-1-1 ; |
389 | spinmap:context :Discovery-Discovery ; | 401 | spinmap:context :Discovery-Discovery ; |
390 | - spinmap:expression spin:_arg1 ; | 402 | + spinmap:expression |
403 | + [ rdf:type spinmapl:resourceWithValue ; | ||
404 | + sp:arg1 spin:_arg1 ; | ||
405 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; | ||
406 | + spinmapl:type <http://www.reportinghub.no/schema/npd#HCType> | ||
407 | + ] ; | ||
391 | spinmap:sourcePredicate1 | 408 | spinmap:sourcePredicate1 |
392 | <file:///www.reportinghub.no/transform/npd/discovery#dscHcType> ; | 409 | <file:///www.reportinghub.no/transform/npd/discovery#dscHcType> ; |
393 | spinmap:targetPredicate1 | 410 | spinmap:targetPredicate1 |
... | @@ -397,22 +414,24 @@ | ... | @@ -397,22 +414,24 @@ |
397 | [ rdf:type spinmap:Mapping-1-1 ; | 414 | [ rdf:type spinmap:Mapping-1-1 ; |
398 | spinmap:context :Discovery-Discovery ; | 415 | spinmap:context :Discovery-Discovery ; |
399 | spinmap:expression | 416 | spinmap:expression |
400 | - [ rdf:type rhspin:fieldById ; | 417 | + [ rdf:type spinmapl:resourceWithValue ; |
401 | - arg:id spin:_arg1 | 418 | + sp:arg1 spin:_arg1 ; |
419 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
420 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Owner> | ||
402 | ] ; | 421 | ] ; |
403 | spinmap:sourcePredicate1 | 422 | spinmap:sourcePredicate1 |
404 | - <file:///www.reportinghub.no/transform/npd/discovery#fldNpdidField> ; | 423 | + <file:///www.reportinghub.no/transform/npd/discovery#dscOwnerName> ; |
405 | spinmap:targetPredicate1 | 424 | spinmap:targetPredicate1 |
406 | - <http://www.reportinghub.no/schema/npd#discoveryField> | 425 | + <http://www.reportinghub.no/schema/npd#discoveryOwner> |
407 | ] ; | 426 | ] ; |
408 | spinmap:rule | 427 | spinmap:rule |
409 | [ rdf:type spinmap:Mapping-1-1 ; | 428 | [ rdf:type spinmap:Mapping-1-1 ; |
410 | spinmap:context :Discovery-Discovery ; | 429 | spinmap:context :Discovery-Discovery ; |
411 | spinmap:expression spin:_arg1 ; | 430 | spinmap:expression spin:_arg1 ; |
412 | spinmap:sourcePredicate1 | 431 | spinmap:sourcePredicate1 |
413 | - <file:///www.reportinghub.no/transform/npd/discovery#dscNpdidDiscovery> ; | 432 | + <file:///www.reportinghub.no/transform/npd/discovery#dscName> ; |
414 | spinmap:targetPredicate1 | 433 | spinmap:targetPredicate1 |
415 | - <http://www.reportinghub.no/schema/npd#id> | 434 | + <http://www.reportinghub.no/schema/npd#name> |
416 | ] . | 435 | ] . |
417 | 436 | ||
418 | <file:///www.reportinghub.no/transform/npd/facilityfixed#FacilityFixed> | 437 | <file:///www.reportinghub.no/transform/npd/facilityfixed#FacilityFixed> |
... | @@ -429,29 +448,32 @@ | ... | @@ -429,29 +448,32 @@ |
429 | [ rdf:type spinmap:Mapping-1-1 ; | 448 | [ rdf:type spinmap:Mapping-1-1 ; |
430 | spinmap:context :FacilityFixed-FixedFacility ; | 449 | spinmap:context :FacilityFixed-FixedFacility ; |
431 | spinmap:expression | 450 | spinmap:expression |
432 | - [ rdf:type spinmapl:resourceWithValue ; | 451 | + [ rdf:type spif:parseDate ; |
433 | - sp:arg1 spin:_arg1 ; | 452 | + arg:pattern "dd.MM.yyyy" ; |
434 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ; | 453 | + sp:arg1 spin:_arg1 |
435 | - spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityParent> | ||
436 | ] ; | 454 | ] ; |
437 | spinmap:sourcePredicate1 | 455 | spinmap:sourcePredicate1 |
438 | - <file:///www.reportinghub.no/transform/npd/facilityfixed#fclBelongsToS> ; | 456 | + <file:///www.reportinghub.no/transform/npd/facilityfixed#fclStartupDate> ; |
439 | spinmap:targetPredicate1 | 457 | spinmap:targetPredicate1 |
440 | - <http://www.reportinghub.no/schema/npd#belongsTo> | 458 | + <http://www.reportinghub.no/schema/npd#startDate> |
441 | ] ; | 459 | ] ; |
442 | spinmap:rule | 460 | spinmap:rule |
443 | [ rdf:type spinmap:Mapping-1-1 ; | 461 | [ rdf:type spinmap:Mapping-1-1 ; |
444 | spinmap:context :FacilityFixed-FixedFacility ; | 462 | spinmap:context :FacilityFixed-FixedFacility ; |
445 | - spinmap:expression | 463 | + spinmap:expression spin:_arg1 ; |
446 | - [ rdf:type spinmapl:resourceWithValue ; | ||
447 | - sp:arg1 spin:_arg1 ; | ||
448 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
449 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
450 | - ] ; | ||
451 | spinmap:sourcePredicate1 | 464 | spinmap:sourcePredicate1 |
452 | - <file:///www.reportinghub.no/transform/npd/facilityfixed#fclCurrentOperatorName> ; | 465 | + <file:///www.reportinghub.no/transform/npd/facilityfixed#fclName> ; |
453 | spinmap:targetPredicate1 | 466 | spinmap:targetPredicate1 |
454 | - <http://www.reportinghub.no/schema/npd#currentOperator> | 467 | + <http://www.reportinghub.no/schema/npd#name> |
468 | + ] ; | ||
469 | + spinmap:rule | ||
470 | + [ rdf:type spinmap:Mapping-1-1 ; | ||
471 | + spinmap:context :FacilityFixed-FixedFacility ; | ||
472 | + spinmap:expression spin:_arg1 ; | ||
473 | + spinmap:sourcePredicate1 | ||
474 | + <file:///www.reportinghub.no/transform/npd/facilityfixed#fclNpdidFacility> ; | ||
475 | + spinmap:targetPredicate1 | ||
476 | + <http://www.reportinghub.no/schema/npd#id> | ||
455 | ] ; | 477 | ] ; |
456 | spinmap:rule | 478 | spinmap:rule |
457 | [ rdf:type spinmap:Mapping-1-1 ; | 479 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -473,38 +495,40 @@ | ... | @@ -473,38 +495,40 @@ |
473 | spinmap:rule | 495 | spinmap:rule |
474 | [ rdf:type spinmap:Mapping-1-1 ; | 496 | [ rdf:type spinmap:Mapping-1-1 ; |
475 | spinmap:context :FacilityFixed-FixedFacility ; | 497 | spinmap:context :FacilityFixed-FixedFacility ; |
476 | - spinmap:expression spin:_arg1 ; | 498 | + spinmap:expression |
477 | - spinmap:sourcePredicate1 | 499 | + [ rdf:type spinmapl:resourceWithValue ; |
478 | - <file:///www.reportinghub.no/transform/npd/facilityfixed#fclNpdidFacility> ; | 500 | + sp:arg1 spin:_arg1 ; |
479 | - spinmap:targetPredicate1 | 501 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; |
480 | - <http://www.reportinghub.no/schema/npd#id> | 502 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Company> |
481 | - ] ; | 503 | + ] ; |
482 | - spinmap:rule | ||
483 | - [ rdf:type spinmap:Mapping-1-1 ; | ||
484 | - spinmap:context :FacilityFixed-FixedFacility ; | ||
485 | - spinmap:expression spin:_arg1 ; | ||
486 | spinmap:sourcePredicate1 | 504 | spinmap:sourcePredicate1 |
487 | - <file:///www.reportinghub.no/transform/npd/facilityfixed#fclName> ; | 505 | + <file:///www.reportinghub.no/transform/npd/facilityfixed#fclCurrentOperatorName> ; |
488 | spinmap:targetPredicate1 | 506 | spinmap:targetPredicate1 |
489 | - <http://www.reportinghub.no/schema/npd#name> | 507 | + <http://www.reportinghub.no/schema/npd#currentOperator> |
490 | ] ; | 508 | ] ; |
491 | spinmap:rule | 509 | spinmap:rule |
492 | [ rdf:type spinmap:Mapping-1-1 ; | 510 | [ rdf:type spinmap:Mapping-1-1 ; |
493 | spinmap:context :FacilityFixed-FixedFacility ; | 511 | spinmap:context :FacilityFixed-FixedFacility ; |
494 | spinmap:expression | 512 | spinmap:expression |
495 | - [ rdf:type spif:parseDate ; | 513 | + [ rdf:type spinmapl:resourceWithValue ; |
496 | - arg:pattern "dd.MM.yyyy" ; | 514 | + sp:arg1 spin:_arg1 ; |
497 | - sp:arg1 spin:_arg1 | 515 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ; |
516 | + spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityParent> | ||
498 | ] ; | 517 | ] ; |
499 | spinmap:sourcePredicate1 | 518 | spinmap:sourcePredicate1 |
500 | - <file:///www.reportinghub.no/transform/npd/facilityfixed#fclStartupDate> ; | 519 | + <file:///www.reportinghub.no/transform/npd/facilityfixed#fclBelongsToS> ; |
501 | spinmap:targetPredicate1 | 520 | spinmap:targetPredicate1 |
502 | - <http://www.reportinghub.no/schema/npd#startDate> | 521 | + <http://www.reportinghub.no/schema/npd#belongsTo> |
503 | ] ; | 522 | ] ; |
504 | spinmap:rule | 523 | spinmap:rule |
505 | [ rdf:type spinmap:Mapping-1-1 ; | 524 | [ rdf:type spinmap:Mapping-1-1 ; |
506 | spinmap:context :FacilityFixed-FixedFacility ; | 525 | spinmap:context :FacilityFixed-FixedFacility ; |
507 | - spinmap:expression spin:_arg1 ; | 526 | + spinmap:expression |
527 | + [ rdf:type spinmapl:resourceWithValue ; | ||
528 | + sp:arg1 spin:_arg1 ; | ||
529 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; | ||
530 | + spinmapl:type <http://www.reportinghub.no/schema/npd#FixedFacilityPhase> | ||
531 | + ] ; | ||
508 | spinmap:sourcePredicate1 | 532 | spinmap:sourcePredicate1 |
509 | <file:///www.reportinghub.no/transform/npd/facilityfixed#fclPhase> ; | 533 | <file:///www.reportinghub.no/transform/npd/facilityfixed#fclPhase> ; |
510 | spinmap:targetPredicate1 | 534 | spinmap:targetPredicate1 |
... | @@ -513,27 +537,20 @@ | ... | @@ -513,27 +537,20 @@ |
513 | 537 | ||
514 | <file:///www.reportinghub.no/transform/npd/facilitymoveable#FacilityMoveable> | 538 | <file:///www.reportinghub.no/transform/npd/facilitymoveable#FacilityMoveable> |
515 | spinmap:rule | 539 | spinmap:rule |
516 | - [ rdf:type spinmap:Mapping-1-1 ; | 540 | + [ rdf:type spinmap:Mapping-0-1 ; |
517 | spinmap:context :FacilityMoveable-MoveableFacility ; | 541 | spinmap:context :FacilityMoveable-MoveableFacility ; |
518 | - spinmap:expression | 542 | + spinmap:expression <http://www.reportinghub.no/schema/npd#MoveableFacility> ; |
519 | - [ rdf:type spinmapl:resourceWithValue ; | ||
520 | - sp:arg1 spin:_arg1 ; | ||
521 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
522 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
523 | - ] ; | ||
524 | - spinmap:sourcePredicate1 | ||
525 | - <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclCurrentRespCompanyName> ; | ||
526 | spinmap:targetPredicate1 | 543 | spinmap:targetPredicate1 |
527 | - <http://www.reportinghub.no/schema/npd#currentlyResponsibleCompany> | 544 | + rdf:type |
528 | ] ; | 545 | ] ; |
529 | spinmap:rule | 546 | spinmap:rule |
530 | [ rdf:type spinmap:Mapping-1-1 ; | 547 | [ rdf:type spinmap:Mapping-1-1 ; |
531 | spinmap:context :FacilityMoveable-MoveableFacility ; | 548 | spinmap:context :FacilityMoveable-MoveableFacility ; |
532 | spinmap:expression spin:_arg1 ; | 549 | spinmap:expression spin:_arg1 ; |
533 | spinmap:sourcePredicate1 | 550 | spinmap:sourcePredicate1 |
534 | - <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclName> ; | 551 | + <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclNpdidFacility> ; |
535 | spinmap:targetPredicate1 | 552 | spinmap:targetPredicate1 |
536 | - <http://www.reportinghub.no/schema/npd#name> | 553 | + <http://www.reportinghub.no/schema/npd#id> |
537 | ] ; | 554 | ] ; |
538 | spinmap:rule | 555 | spinmap:rule |
539 | [ rdf:type spinmap:Mapping-1-1 ; | 556 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -549,53 +566,53 @@ | ... | @@ -549,53 +566,53 @@ |
549 | spinmap:context :FacilityMoveable-MoveableFacility ; | 566 | spinmap:context :FacilityMoveable-MoveableFacility ; |
550 | spinmap:expression spin:_arg1 ; | 567 | spinmap:expression spin:_arg1 ; |
551 | spinmap:sourcePredicate1 | 568 | spinmap:sourcePredicate1 |
552 | - <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclNpdidFacility> ; | 569 | + <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclName> ; |
553 | spinmap:targetPredicate1 | 570 | spinmap:targetPredicate1 |
554 | - <http://www.reportinghub.no/schema/npd#id> | 571 | + <http://www.reportinghub.no/schema/npd#name> |
555 | ] ; | 572 | ] ; |
556 | spinmap:rule | 573 | spinmap:rule |
557 | - [ rdf:type spinmap:Mapping-0-1 ; | 574 | + [ rdf:type spinmap:Mapping-1-1 ; |
558 | spinmap:context :FacilityMoveable-MoveableFacility ; | 575 | spinmap:context :FacilityMoveable-MoveableFacility ; |
559 | - spinmap:expression <http://www.reportinghub.no/schema/npd#MoveableFacility> ; | 576 | + spinmap:expression |
577 | + [ rdf:type spinmapl:resourceWithValue ; | ||
578 | + sp:arg1 spin:_arg1 ; | ||
579 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
580 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
581 | + ] ; | ||
582 | + spinmap:sourcePredicate1 | ||
583 | + <file:///www.reportinghub.no/transform/npd/facilitymoveable#fclCurrentRespCompanyName> ; | ||
560 | spinmap:targetPredicate1 | 584 | spinmap:targetPredicate1 |
561 | - rdf:type | 585 | + <http://www.reportinghub.no/schema/npd#currentlyResponsibleCompany> |
562 | ] . | 586 | ] . |
563 | 587 | ||
564 | <file:///www.reportinghub.no/transform/npd/field#Field> | 588 | <file:///www.reportinghub.no/transform/npd/field#Field> |
565 | spinmap:rule | 589 | spinmap:rule |
566 | - [ rdf:type spinmap:Mapping-1-1 ; | 590 | + [ rdf:type spinmap:Mapping-0-1 ; |
567 | spinmap:context :Field-Field ; | 591 | spinmap:context :Field-Field ; |
568 | - spinmap:expression | 592 | + spinmap:expression <http://www.reportinghub.no/schema/npd#Field> ; |
569 | - [ rdf:type spinmapl:resourceWithValue ; | ||
570 | - sp:arg1 spin:_arg1 ; | ||
571 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ; | ||
572 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Owner> | ||
573 | - ] ; | ||
574 | - spinmap:sourcePredicate1 | ||
575 | - <file:///www.reportinghub.no/transform/npd/field#fldNpdidOwner> ; | ||
576 | spinmap:targetPredicate1 | 593 | spinmap:targetPredicate1 |
577 | - <http://www.reportinghub.no/schema/npd#fieldOwner> | 594 | + rdf:type |
578 | ] ; | 595 | ] ; |
579 | spinmap:rule | 596 | spinmap:rule |
580 | [ rdf:type spinmap:Mapping-1-1 ; | 597 | [ rdf:type spinmap:Mapping-1-1 ; |
581 | spinmap:context :Field-Field ; | 598 | spinmap:context :Field-Field ; |
582 | - spinmap:expression spin:_arg1 ; | 599 | + spinmap:expression |
600 | + [ rdf:type rhspin:companyById ; | ||
601 | + arg:id spin:_arg1 | ||
602 | + ] ; | ||
583 | spinmap:sourcePredicate1 | 603 | spinmap:sourcePredicate1 |
584 | - <file:///www.reportinghub.no/transform/npd/field#fldCurrentActivitySatus> ; | 604 | + <file:///www.reportinghub.no/transform/npd/field#cmpNpdidCompany> ; |
585 | spinmap:targetPredicate1 | 605 | spinmap:targetPredicate1 |
586 | - <http://www.reportinghub.no/schema/npd#currentActivityStatus> | 606 | + <http://www.reportinghub.no/schema/npd#fieldOperator> |
587 | ] ; | 607 | ] ; |
588 | spinmap:rule | 608 | spinmap:rule |
589 | [ rdf:type spinmap:Mapping-1-1 ; | 609 | [ rdf:type spinmap:Mapping-1-1 ; |
590 | - spinmap:context :Field-Field ; | 610 | + spinmap:context :Field-Field ; |
591 | - spinmap:expression | 611 | + spinmap:expression spin:_arg1 ; |
592 | - [ rdf:type rhspin:wellBoreByName ; | ||
593 | - arg:wellBoreName spin:_arg1 | ||
594 | - ] ; | ||
595 | spinmap:sourcePredicate1 | 612 | spinmap:sourcePredicate1 |
596 | - <file:///www.reportinghub.no/transform/npd/field#wlbName> ; | 613 | + <file:///www.reportinghub.no/transform/npd/field#fldNpdidField> ; |
597 | spinmap:targetPredicate1 | 614 | spinmap:targetPredicate1 |
598 | - <http://www.reportinghub.no/schema/npd#fieldDiscoveryWellBore> | 615 | + <http://www.reportinghub.no/schema/npd#id> |
599 | ] ; | 616 | ] ; |
600 | spinmap:rule | 617 | spinmap:rule |
601 | [ rdf:type spinmap:Mapping-1-1 ; | 618 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -609,64 +626,68 @@ | ... | @@ -609,64 +626,68 @@ |
609 | spinmap:rule | 626 | spinmap:rule |
610 | [ rdf:type spinmap:Mapping-1-1 ; | 627 | [ rdf:type spinmap:Mapping-1-1 ; |
611 | spinmap:context :Field-Field ; | 628 | spinmap:context :Field-Field ; |
612 | - spinmap:expression spin:_arg1 ; | 629 | + spinmap:expression |
630 | + [ rdf:type rhspin:wellBoreByName ; | ||
631 | + arg:wellBoreName spin:_arg1 | ||
632 | + ] ; | ||
613 | spinmap:sourcePredicate1 | 633 | spinmap:sourcePredicate1 |
614 | - <file:///www.reportinghub.no/transform/npd/field#fldNpdidField> ; | 634 | + <file:///www.reportinghub.no/transform/npd/field#wlbName> ; |
615 | spinmap:targetPredicate1 | 635 | spinmap:targetPredicate1 |
616 | - <http://www.reportinghub.no/schema/npd#id> | 636 | + <http://www.reportinghub.no/schema/npd#fieldDiscoveryWellBore> |
617 | ] ; | 637 | ] ; |
618 | spinmap:rule | 638 | spinmap:rule |
619 | [ rdf:type spinmap:Mapping-1-1 ; | 639 | [ rdf:type spinmap:Mapping-1-1 ; |
620 | spinmap:context :Field-Field ; | 640 | spinmap:context :Field-Field ; |
621 | spinmap:expression | 641 | spinmap:expression |
622 | - [ rdf:type rhspin:companyById ; | 642 | + [ rdf:type spinmapl:resourceWithValue ; |
623 | - arg:id spin:_arg1 | 643 | + sp:arg1 spin:_arg1 ; |
644 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#id> ; | ||
645 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Owner> | ||
624 | ] ; | 646 | ] ; |
625 | spinmap:sourcePredicate1 | 647 | spinmap:sourcePredicate1 |
626 | - <file:///www.reportinghub.no/transform/npd/field#cmpNpdidCompany> ; | 648 | + <file:///www.reportinghub.no/transform/npd/field#fldNpdidOwner> ; |
627 | spinmap:targetPredicate1 | 649 | spinmap:targetPredicate1 |
628 | - <http://www.reportinghub.no/schema/npd#fieldOperator> | 650 | + <http://www.reportinghub.no/schema/npd#fieldOwner> |
629 | ] ; | 651 | ] ; |
630 | spinmap:rule | 652 | spinmap:rule |
631 | - [ rdf:type spinmap:Mapping-0-1 ; | 653 | + [ rdf:type spinmap:Mapping-1-1 ; |
632 | spinmap:context :Field-Field ; | 654 | spinmap:context :Field-Field ; |
633 | - spinmap:expression <http://www.reportinghub.no/schema/npd#Field> ; | 655 | + spinmap:expression |
656 | + [ rdf:type spinmapl:resourceWithValue ; | ||
657 | + sp:arg1 spin:_arg1 ; | ||
658 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; | ||
659 | + spinmapl:type <http://www.reportinghub.no/schema/npd#FieldActivityStatus> | ||
660 | + ] ; | ||
661 | + spinmap:sourcePredicate1 | ||
662 | + <file:///www.reportinghub.no/transform/npd/field#fldCurrentActivitySatus> ; | ||
634 | spinmap:targetPredicate1 | 663 | spinmap:targetPredicate1 |
635 | - rdf:type | 664 | + <http://www.reportinghub.no/schema/npd#currentActivityStatus> |
636 | ] . | 665 | ] . |
637 | 666 | ||
638 | <file:///www.reportinghub.no/transform/npd/licensee#Licensee> | 667 | <file:///www.reportinghub.no/transform/npd/licensee#Licensee> |
639 | spinmap:rule | 668 | spinmap:rule |
640 | - [ rdf:type spinmap:Mapping-0-1 ; | ||
641 | - spinmap:context :Licensee-ShareOfLicence ; | ||
642 | - spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfLicence> ; | ||
643 | - spinmap:targetPredicate1 | ||
644 | - rdf:type | ||
645 | - ] ; | ||
646 | - spinmap:rule | ||
647 | [ rdf:type spinmap:Mapping-1-1 ; | 669 | [ rdf:type spinmap:Mapping-1-1 ; |
648 | spinmap:context :Licensee-ShareOfLicence ; | 670 | spinmap:context :Licensee-ShareOfLicence ; |
649 | spinmap:expression | 671 | spinmap:expression |
650 | - [ rdf:type spif:parseDate ; | 672 | + [ rdf:type rhspin:licenceById ; |
651 | - arg:pattern "dd.MM.yyyy" ; | 673 | + arg:id spin:_arg1 |
652 | - sp:arg1 spin:_arg1 | ||
653 | ] ; | 674 | ] ; |
654 | spinmap:sourcePredicate1 | 675 | spinmap:sourcePredicate1 |
655 | - <file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeDateValidFrom> ; | 676 | + <file:///www.reportinghub.no/transform/npd/licensee#prlNpdidLicence> ; |
656 | spinmap:targetPredicate1 | 677 | spinmap:targetPredicate1 |
657 | - <http://www.reportinghub.no/schema/npd#startDate> | 678 | + <http://www.reportinghub.no/schema/npd#licenceShared> |
658 | ] ; | 679 | ] ; |
659 | spinmap:rule | 680 | spinmap:rule |
660 | [ rdf:type spinmap:Mapping-1-1 ; | 681 | [ rdf:type spinmap:Mapping-1-1 ; |
661 | spinmap:context :Licensee-ShareOfLicence ; | 682 | spinmap:context :Licensee-ShareOfLicence ; |
662 | spinmap:expression | 683 | spinmap:expression |
663 | - [ rdf:type rhspin:companyById ; | 684 | + [ rdf:type xsd:float ; |
664 | - arg:id spin:_arg1 | 685 | + sp:arg1 spin:_arg1 |
665 | ] ; | 686 | ] ; |
666 | spinmap:sourcePredicate1 | 687 | spinmap:sourcePredicate1 |
667 | - <file:///www.reportinghub.no/transform/npd/licensee#cmpNpdidCompany> ; | 688 | + <file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeInterest> ; |
668 | spinmap:targetPredicate1 | 689 | spinmap:targetPredicate1 |
669 | - <http://www.reportinghub.no/schema/npd#shareHolder> | 690 | + <http://www.reportinghub.no/schema/npd#percentageOfShare> |
670 | ] ; | 691 | ] ; |
671 | spinmap:rule | 692 | spinmap:rule |
672 | [ rdf:type spinmap:Mapping-1-1 ; | 693 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -685,36 +706,42 @@ | ... | @@ -685,36 +706,42 @@ |
685 | [ rdf:type spinmap:Mapping-1-1 ; | 706 | [ rdf:type spinmap:Mapping-1-1 ; |
686 | spinmap:context :Licensee-ShareOfLicence ; | 707 | spinmap:context :Licensee-ShareOfLicence ; |
687 | spinmap:expression | 708 | spinmap:expression |
688 | - [ rdf:type xsd:float ; | 709 | + [ rdf:type rhspin:companyById ; |
689 | - sp:arg1 spin:_arg1 | 710 | + arg:id spin:_arg1 |
690 | ] ; | 711 | ] ; |
691 | spinmap:sourcePredicate1 | 712 | spinmap:sourcePredicate1 |
692 | - <file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeInterest> ; | 713 | + <file:///www.reportinghub.no/transform/npd/licensee#cmpNpdidCompany> ; |
693 | spinmap:targetPredicate1 | 714 | spinmap:targetPredicate1 |
694 | - <http://www.reportinghub.no/schema/npd#percentageOfShare> | 715 | + <http://www.reportinghub.no/schema/npd#shareHolder> |
695 | ] ; | 716 | ] ; |
696 | spinmap:rule | 717 | spinmap:rule |
697 | [ rdf:type spinmap:Mapping-1-1 ; | 718 | [ rdf:type spinmap:Mapping-1-1 ; |
698 | spinmap:context :Licensee-ShareOfLicence ; | 719 | spinmap:context :Licensee-ShareOfLicence ; |
699 | spinmap:expression | 720 | spinmap:expression |
700 | - [ rdf:type rhspin:licenceById ; | 721 | + [ rdf:type spif:parseDate ; |
701 | - arg:id spin:_arg1 | 722 | + arg:pattern "dd.MM.yyyy" ; |
723 | + sp:arg1 spin:_arg1 | ||
702 | ] ; | 724 | ] ; |
703 | spinmap:sourcePredicate1 | 725 | spinmap:sourcePredicate1 |
704 | - <file:///www.reportinghub.no/transform/npd/licensee#prlNpdidLicence> ; | 726 | + <file:///www.reportinghub.no/transform/npd/licensee#prlLicenseeDateValidFrom> ; |
705 | spinmap:targetPredicate1 | 727 | spinmap:targetPredicate1 |
706 | - <http://www.reportinghub.no/schema/npd#licenceShared> | 728 | + <http://www.reportinghub.no/schema/npd#startDate> |
729 | + ] ; | ||
730 | + spinmap:rule | ||
731 | + [ rdf:type spinmap:Mapping-0-1 ; | ||
732 | + spinmap:context :Licensee-ShareOfLicence ; | ||
733 | + spinmap:expression <http://www.reportinghub.no/schema/npd#ShareOfLicence> ; | ||
734 | + spinmap:targetPredicate1 | ||
735 | + rdf:type | ||
707 | ] . | 736 | ] . |
708 | 737 | ||
709 | <file:///www.reportinghub.no/transform/npd/tufoperator#TUFOperator> | 738 | <file:///www.reportinghub.no/transform/npd/tufoperator#TUFOperator> |
710 | spinmap:rule | 739 | spinmap:rule |
711 | - [ rdf:type spinmap:Mapping-1-1 ; | 740 | + [ rdf:type spinmap:Mapping-0-1 ; |
712 | spinmap:context :TUFOperator-TUF ; | 741 | spinmap:context :TUFOperator-TUF ; |
713 | - spinmap:expression spin:_arg1 ; | 742 | + spinmap:expression <http://www.reportinghub.no/schema/npd#TUF> ; |
714 | - spinmap:sourcePredicate1 | ||
715 | - <file:///www.reportinghub.no/transform/npd/tufoperator#tufName> ; | ||
716 | spinmap:targetPredicate1 | 743 | spinmap:targetPredicate1 |
717 | - <http://www.reportinghub.no/schema/npd#name> | 744 | + rdf:type |
718 | ] ; | 745 | ] ; |
719 | spinmap:rule | 746 | spinmap:rule |
720 | [ rdf:type spinmap:Mapping-1-1 ; | 747 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -726,11 +753,13 @@ | ... | @@ -726,11 +753,13 @@ |
726 | <http://www.reportinghub.no/schema/npd#id> | 753 | <http://www.reportinghub.no/schema/npd#id> |
727 | ] ; | 754 | ] ; |
728 | spinmap:rule | 755 | spinmap:rule |
729 | - [ rdf:type spinmap:Mapping-0-1 ; | 756 | + [ rdf:type spinmap:Mapping-1-1 ; |
730 | spinmap:context :TUFOperator-TUF ; | 757 | spinmap:context :TUFOperator-TUF ; |
731 | - spinmap:expression <http://www.reportinghub.no/schema/npd#TUF> ; | 758 | + spinmap:expression spin:_arg1 ; |
759 | + spinmap:sourcePredicate1 | ||
760 | + <file:///www.reportinghub.no/transform/npd/tufoperator#tufName> ; | ||
732 | spinmap:targetPredicate1 | 761 | spinmap:targetPredicate1 |
733 | - rdf:type | 762 | + <http://www.reportinghub.no/schema/npd#name> |
734 | ] . | 763 | ] . |
735 | 764 | ||
736 | <file:///www.reportinghub.no/transform/npd/wbdev#WBDev> | 765 | <file:///www.reportinghub.no/transform/npd/wbdev#WBDev> |
... | @@ -739,52 +768,55 @@ | ... | @@ -739,52 +768,55 @@ |
739 | spinmap:context :WBDev-WellBore ; | 768 | spinmap:context :WBDev-WellBore ; |
740 | spinmap:expression spin:_arg1 ; | 769 | spinmap:expression spin:_arg1 ; |
741 | spinmap:sourcePredicate1 | 770 | spinmap:sourcePredicate1 |
742 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbContent> ; | 771 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillPermit> ; |
743 | spinmap:targetPredicate1 | 772 | spinmap:targetPredicate1 |
744 | - <http://www.reportinghub.no/schema/npd#wellBoreContent> | 773 | + <http://www.reportinghub.no/schema/npd#wellBoreDrillPermit> |
745 | ] ; | 774 | ] ; |
746 | spinmap:rule | 775 | spinmap:rule |
747 | [ rdf:type spinmap:Mapping-1-1 ; | 776 | [ rdf:type spinmap:Mapping-1-1 ; |
748 | spinmap:context :WBDev-WellBore ; | 777 | spinmap:context :WBDev-WellBore ; |
749 | spinmap:expression | 778 | spinmap:expression |
750 | - [ rdf:type spif:parseDate ; | 779 | + [ rdf:type rhspin:facilityById ; |
751 | - arg:pattern "dd.MM.yyyy"^^xsd:string ; | 780 | + arg:id spin:_arg1 |
752 | - sp:arg1 spin:_arg1 | ||
753 | ] ; | 781 | ] ; |
754 | spinmap:sourcePredicate1 | 782 | spinmap:sourcePredicate1 |
755 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbEntryDate> ; | 783 | + <file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityProducing> ; |
756 | spinmap:targetPredicate1 | 784 | spinmap:targetPredicate1 |
757 | - <http://www.reportinghub.no/schema/npd#startDate> | 785 | + <http://www.reportinghub.no/schema/npd#productionFacility> |
758 | ] ; | 786 | ] ; |
759 | spinmap:rule | 787 | spinmap:rule |
760 | [ rdf:type spinmap:Mapping-1-1 ; | 788 | [ rdf:type spinmap:Mapping-1-1 ; |
761 | spinmap:context :WBDev-WellBore ; | 789 | spinmap:context :WBDev-WellBore ; |
762 | - spinmap:expression spin:_arg1 ; | 790 | + spinmap:expression |
791 | + [ rdf:type spif:parseDate ; | ||
792 | + arg:pattern "dd.MM.yyyy"^^xsd:string ; | ||
793 | + sp:arg1 spin:_arg1 | ||
794 | + ] ; | ||
763 | spinmap:sourcePredicate1 | 795 | spinmap:sourcePredicate1 |
764 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellboreName> ; | 796 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbEntryDate> ; |
765 | spinmap:targetPredicate1 | 797 | spinmap:targetPredicate1 |
766 | - <http://www.reportinghub.no/schema/npd#name> | 798 | + <http://www.reportinghub.no/schema/npd#startDate> |
767 | ] ; | 799 | ] ; |
768 | spinmap:rule | 800 | spinmap:rule |
769 | [ rdf:type spinmap:Mapping-1-1 ; | 801 | [ rdf:type spinmap:Mapping-1-1 ; |
770 | - spinmap:context :WBDev-WellBore ; | 802 | + spinmap:context :WBDev-Well ; |
771 | spinmap:expression spin:_arg1 ; | 803 | spinmap:expression spin:_arg1 ; |
772 | spinmap:sourcePredicate1 | 804 | spinmap:sourcePredicate1 |
773 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellType> ; | 805 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbWell> ; |
774 | spinmap:targetPredicate1 | 806 | spinmap:targetPredicate1 |
775 | - <http://www.reportinghub.no/schema/npd#wellBoreType> | 807 | + <http://www.reportinghub.no/schema/npd#name> |
776 | ] ; | 808 | ] ; |
777 | spinmap:rule | 809 | spinmap:rule |
778 | [ rdf:type spinmap:Mapping-1-1 ; | 810 | [ rdf:type spinmap:Mapping-1-1 ; |
779 | spinmap:context :WBDev-WellBore ; | 811 | spinmap:context :WBDev-WellBore ; |
780 | spinmap:expression | 812 | spinmap:expression |
781 | - [ rdf:type rhspin:facilityById ; | 813 | + [ rdf:type rhspin:licenceById ; |
782 | arg:id spin:_arg1 | 814 | arg:id spin:_arg1 |
783 | ] ; | 815 | ] ; |
784 | spinmap:sourcePredicate1 | 816 | spinmap:sourcePredicate1 |
785 | - <file:///www.reportinghub.no/transform/npd/wbdev#fclNpdidFacilityProducing> ; | 817 | + <file:///www.reportinghub.no/transform/npd/wbdev#prlNpdidProductionLicence> ; |
786 | spinmap:targetPredicate1 | 818 | spinmap:targetPredicate1 |
787 | - <http://www.reportinghub.no/schema/npd#productionFacility> | 819 | + <http://www.reportinghub.no/schema/npd#drilledInProductionLicence> |
788 | ] ; | 820 | ] ; |
789 | spinmap:rule | 821 | spinmap:rule |
790 | [ rdf:type spinmap:Mapping-1-1 ; | 822 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -811,44 +843,64 @@ | ... | @@ -811,44 +843,64 @@ |
811 | <http://www.reportinghub.no/schema/npd#drillingFacility> | 843 | <http://www.reportinghub.no/schema/npd#drillingFacility> |
812 | ] ; | 844 | ] ; |
813 | spinmap:rule | 845 | spinmap:rule |
846 | + [ rdf:type spinmap:Mapping-0-1 ; | ||
847 | + spinmap:context :WBDev-WellBore ; | ||
848 | + spinmap:expression <http://www.reportinghub.no/schema/npd#WellBore> ; | ||
849 | + spinmap:targetPredicate1 | ||
850 | + rdf:type | ||
851 | + ] ; | ||
852 | + spinmap:rule | ||
814 | [ rdf:type spinmap:Mapping-1-1 ; | 853 | [ rdf:type spinmap:Mapping-1-1 ; |
815 | spinmap:context :WBDev-WellBore ; | 854 | spinmap:context :WBDev-WellBore ; |
816 | spinmap:expression | 855 | spinmap:expression |
817 | - [ rdf:type rhspin:licenceById ; | 856 | + [ rdf:type spinmapl:resourceWithValue ; |
818 | - arg:id spin:_arg1 | 857 | + sp:arg1 spin:_arg1 ; |
858 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; | ||
859 | + spinmapl:type <http://www.reportinghub.no/schema/npd#WellBoreContent> | ||
819 | ] ; | 860 | ] ; |
820 | spinmap:sourcePredicate1 | 861 | spinmap:sourcePredicate1 |
821 | - <file:///www.reportinghub.no/transform/npd/wbdev#prlNpdidProductionLicence> ; | 862 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbContent> ; |
822 | spinmap:targetPredicate1 | 863 | spinmap:targetPredicate1 |
823 | - <http://www.reportinghub.no/schema/npd#drilledInProductionLicence> | 864 | + <http://www.reportinghub.no/schema/npd#wellBoreContent> |
824 | ] ; | 865 | ] ; |
825 | spinmap:rule | 866 | spinmap:rule |
826 | [ rdf:type spinmap:Mapping-1-1 ; | 867 | [ rdf:type spinmap:Mapping-1-1 ; |
827 | - spinmap:context :WBDev-Well ; | 868 | + spinmap:context :WBDev-WellBore ; |
828 | - spinmap:expression | 869 | + spinmap:expression spin:_arg1 ; |
829 | - [ rdf:type rhspin:fieldById ; | ||
830 | - arg:id spin:_arg1 | ||
831 | - ] ; | ||
832 | spinmap:sourcePredicate1 | 870 | spinmap:sourcePredicate1 |
833 | - <file:///www.reportinghub.no/transform/npd/wbdev#fldNpdidField> ; | 871 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbNpdidWellbore> ; |
834 | spinmap:targetPredicate1 | 872 | spinmap:targetPredicate1 |
835 | - <http://www.reportinghub.no/schema/npd#wellPartOfField> | 873 | + <http://www.reportinghub.no/schema/npd#id> |
836 | ] ; | 874 | ] ; |
837 | spinmap:rule | 875 | spinmap:rule |
838 | - [ rdf:type spinmap:Mapping-0-1 ; | 876 | + [ rdf:type spinmap:Mapping-1-1 ; |
839 | spinmap:context :WBDev-WellBore ; | 877 | spinmap:context :WBDev-WellBore ; |
840 | - spinmap:expression <http://www.reportinghub.no/schema/npd#WellBore> ; | 878 | + spinmap:expression |
879 | + [ rdf:type spinmapl:resourceWithValue ; | ||
880 | + sp:arg1 spin:_arg1 ; | ||
881 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
882 | + spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
883 | + ] ; | ||
884 | + spinmap:sourcePredicate1 | ||
885 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillingOperator> ; | ||
841 | spinmap:targetPredicate1 | 886 | spinmap:targetPredicate1 |
842 | - rdf:type | 887 | + <http://www.reportinghub.no/schema/npd#drillingOperator> |
843 | ] ; | 888 | ] ; |
844 | spinmap:rule | 889 | spinmap:rule |
845 | [ rdf:type spinmap:Mapping-1-1 ; | 890 | [ rdf:type spinmap:Mapping-1-1 ; |
846 | spinmap:context :WBDev-WellBore ; | 891 | spinmap:context :WBDev-WellBore ; |
847 | spinmap:expression spin:_arg1 ; | 892 | spinmap:expression spin:_arg1 ; |
848 | spinmap:sourcePredicate1 | 893 | spinmap:sourcePredicate1 |
849 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillPermit> ; | 894 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellboreName> ; |
850 | spinmap:targetPredicate1 | 895 | spinmap:targetPredicate1 |
851 | - <http://www.reportinghub.no/schema/npd#wellBoreDrillPermit> | 896 | + <http://www.reportinghub.no/schema/npd#name> |
897 | + ] ; | ||
898 | + spinmap:rule | ||
899 | + [ rdf:type spinmap:Mapping-0-1 ; | ||
900 | + spinmap:context :WBDev-Well ; | ||
901 | + spinmap:expression <http://www.reportinghub.no/schema/npd#Well> ; | ||
902 | + spinmap:targetPredicate1 | ||
903 | + rdf:type | ||
852 | ] ; | 904 | ] ; |
853 | spinmap:rule | 905 | spinmap:rule |
854 | [ rdf:type spinmap:Mapping-1-1 ; | 906 | [ rdf:type spinmap:Mapping-1-1 ; |
... | @@ -864,52 +916,39 @@ | ... | @@ -864,52 +916,39 @@ |
864 | <http://www.reportinghub.no/schema/npd#wellBoreCompletionDate> | 916 | <http://www.reportinghub.no/schema/npd#wellBoreCompletionDate> |
865 | ] ; | 917 | ] ; |
866 | spinmap:rule | 918 | spinmap:rule |
867 | - [ rdf:type spinmap:Mapping-0-1 ; | ||
868 | - spinmap:context :WBDev-Well ; | ||
869 | - spinmap:expression <http://www.reportinghub.no/schema/npd#Well> ; | ||
870 | - spinmap:targetPredicate1 | ||
871 | - rdf:type | ||
872 | - ] ; | ||
873 | - spinmap:rule | ||
874 | [ rdf:type spinmap:Mapping-1-1 ; | 919 | [ rdf:type spinmap:Mapping-1-1 ; |
875 | spinmap:context :WBDev-WellBore ; | 920 | spinmap:context :WBDev-WellBore ; |
876 | spinmap:expression spin:_arg1 ; | 921 | spinmap:expression spin:_arg1 ; |
877 | spinmap:sourcePredicate1 | 922 | spinmap:sourcePredicate1 |
878 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbPurpose> ; | 923 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbWellType> ; |
879 | spinmap:targetPredicate1 | 924 | spinmap:targetPredicate1 |
880 | - <http://www.reportinghub.no/schema/npd#wellBorePurpose> | 925 | + <http://www.reportinghub.no/schema/npd#wellBoreType> |
881 | ] ; | 926 | ] ; |
882 | spinmap:rule | 927 | spinmap:rule |
883 | [ rdf:type spinmap:Mapping-1-1 ; | 928 | [ rdf:type spinmap:Mapping-1-1 ; |
884 | - spinmap:context :WBDev-WellBore ; | 929 | + spinmap:context :WBDev-Well ; |
885 | spinmap:expression | 930 | spinmap:expression |
886 | - [ rdf:type spinmapl:resourceWithValue ; | 931 | + [ rdf:type rhspin:fieldById ; |
887 | - sp:arg1 spin:_arg1 ; | 932 | + arg:id spin:_arg1 |
888 | - spinmapl:predicate <http://www.reportinghub.no/schema/npd#name> ; | ||
889 | - spinmapl:type <http://www.reportinghub.no/schema/npd#Company> | ||
890 | ] ; | 933 | ] ; |
891 | spinmap:sourcePredicate1 | 934 | spinmap:sourcePredicate1 |
892 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbDrillingOperator> ; | 935 | + <file:///www.reportinghub.no/transform/npd/wbdev#fldNpdidField> ; |
893 | spinmap:targetPredicate1 | 936 | spinmap:targetPredicate1 |
894 | - <http://www.reportinghub.no/schema/npd#drillingOperator> | 937 | + <http://www.reportinghub.no/schema/npd#wellPartOfField> |
895 | ] ; | 938 | ] ; |
896 | spinmap:rule | 939 | spinmap:rule |
897 | [ rdf:type spinmap:Mapping-1-1 ; | 940 | [ rdf:type spinmap:Mapping-1-1 ; |
898 | spinmap:context :WBDev-WellBore ; | 941 | spinmap:context :WBDev-WellBore ; |
899 | - spinmap:expression spin:_arg1 ; | 942 | + spinmap:expression |
900 | - spinmap:sourcePredicate1 | 943 | + [ rdf:type spinmapl:resourceWithValue ; |
901 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbNpdidWellbore> ; | 944 | + sp:arg1 spin:_arg1 ; |
902 | - spinmap:targetPredicate1 | 945 | + spinmapl:predicate <http://www.reportinghub.no/schema/npd#code> ; |
903 | - <http://www.reportinghub.no/schema/npd#id> | 946 | + spinmapl:type <http://www.reportinghub.no/schema/npd#WellBorePurpose> |
904 | - ] ; | 947 | + ] ; |
905 | - spinmap:rule | ||
906 | - [ rdf:type spinmap:Mapping-1-1 ; | ||
907 | - spinmap:context :WBDev-Well ; | ||
908 | - spinmap:expression spin:_arg1 ; | ||
909 | spinmap:sourcePredicate1 | 948 | spinmap:sourcePredicate1 |
910 | - <file:///www.reportinghub.no/transform/npd/wbdev#wlbWell> ; | 949 | + <file:///www.reportinghub.no/transform/npd/wbdev#wlbPurpose> ; |
911 | spinmap:targetPredicate1 | 950 | spinmap:targetPredicate1 |
912 | - <http://www.reportinghub.no/schema/npd#name> | 951 | + <http://www.reportinghub.no/schema/npd#wellBorePurpose> |
913 | ] . | 952 | ] . |
914 | 953 | ||
915 | arg:well | 954 | arg:well |
... | @@ -936,7 +975,7 @@ arg:wellName | ... | @@ -936,7 +975,7 @@ arg:wellName |
936 | <http://www.reportinghub.no/transform/spreadsheets2npd> | 975 | <http://www.reportinghub.no/transform/spreadsheets2npd> |
937 | rdf:type owl:Ontology ; | 976 | rdf:type owl:Ontology ; |
938 | rdfs:comment "Takes spreadsheets imported from the NPD fact pages and maps them into the NPD ontology."^^xsd:string ; | 977 | rdfs:comment "Takes spreadsheets imported from the NPD fact pages and maps them into the NPD ontology."^^xsd:string ; |
939 | - owl:imports <file:///www.reportinghub.no/transform/npd/licensee> , <file:///www.reportinghub.no/transform/npd/tufoperator> , <file:///www.reportinghub.no/transform/npd/facilitymoveable-2011-07-30> , <http://www.reportinghub.no/transform/npd/tufoperator-2011-07-30> , <file:///www.reportinghub.no/transform/npd/licensee-2011-07-30> , <file:///www.reportinghub.no/transform/npd/wbexp> , <http://www.reportinghub.no/transform/npd/field-2011-07-30> , <file:///www.reportinghub.no/transform/npd/discovery> , <http://www.reportinghub.no/1.1/schema/npd> , <file:///www.reportinghub.no/transform/npd/field> , <file:///www.reportinghub.no/transform/npd/discovery-2011-07-30> , <http://topbraid.org/spin/spinmapl> , <file:///www.reportinghub.no/transform/npd/baalicensee> , <file:///www.reportinghub.no/transform/npd/facilityfixed-2011-07-30> , <file:///www.reportinghub.no/transform/npd/licence> , <file:///www.reportinghub.no/transform/npd/facilityfixed> , <http://www.reportinghub.no/spin/rh> , <file:///www.reportinghub.no/transform/npd/baa> , <http://www.reportinghub.no/examples/transform/npd/company-2011-07-30> , <file:///www.reportinghub.no/transform/npd/facilitymoveable> , <file:///www.reportinghub.no/transform/npd/baalicensee-2011-07-30> , <file:///www.reportinghub.no/transform/npd/license-2011-07-30> , <file:///www.reportinghub.no/transform/npd/wbdev> , <file:///www.reportinghub.no/transform/npd/wbdev-2011-07-30> , <file:///www.reportinghub.no/transform/npd/company> , <http://spinrdf.org/spin> , <file:///www.reportinghub.no/transform/npd/baa-2011-07-30> ; | 978 | + owl:imports <file:///www.reportinghub.no/transform/npd/licensee> , <file:///www.reportinghub.no/transform/npd/tufoperator> , <file:///www.reportinghub.no/transform/npd/facilitymoveable-2011-07-30> , <http://www.reportinghub.no/transform/npd/tufoperator-2011-07-30> , <file:///www.reportinghub.no/transform/npd/licensee-2011-07-30> , <http://www.reportinghub.no/transform/npd/field-2011-07-30> , <file:///www.reportinghub.no/transform/npd/discovery> , <http://www.reportinghub.no/1.1/schema/npd> , <file:///www.reportinghub.no/transform/npd/field> , <file:///www.reportinghub.no/transform/npd/discovery-2011-07-30> , <file:///www.reportinghub.no/transform/npd/facilityfixed-2011-07-30> , <file:///www.reportinghub.no/transform/npd/baalicensee> , <http://topbraid.org/spin/spinmapl> , <file:///www.reportinghub.no/transform/npd/licence> , <file:///www.reportinghub.no/transform/npd/facilityfixed> , <http://www.reportinghub.no/spin/rh> , <http://www.reportinghub.no/examples/transform/npd/company-2011-07-30> , <file:///www.reportinghub.no/transform/npd/baa> , <file:///www.reportinghub.no/transform/npd/facilitymoveable> , <file:///www.reportinghub.no/transform/npd/baalicensee-2011-07-30> , <file:///www.reportinghub.no/transform/npd/license-2011-07-30> , <file:///www.reportinghub.no/transform/npd/wbdev> , <file:///www.reportinghub.no/transform/npd/company> , <file:///www.reportinghub.no/transform/npd/wbdev-2011-07-30> , <http://spinrdf.org/spin> , <file:///www.reportinghub.no/transform/npd/baa-2011-07-30> ; |
940 | owl:versionInfo "0.1.0"^^xsd:string . | 979 | owl:versionInfo "0.1.0"^^xsd:string . |
941 | 980 | ||
942 | :BAA-BusinessArrangementArea | 981 | :BAA-BusinessArrangementArea |
... | @@ -1285,29 +1324,29 @@ arg:wellName | ... | @@ -1285,29 +1324,29 @@ arg:wellName |
1285 | ] ; | 1324 | ] ; |
1286 | spin:returnType rdfs:Resource . | 1325 | spin:returnType rdfs:Resource . |
1287 | 1326 | ||
1288 | -_:b12 | 1327 | +_:b1 sp:varName "companyId"^^xsd:string . |
1289 | - sp:varName "source"^^xsd:string . | ||
1290 | - | ||
1291 | -_:b11 | ||
1292 | - sp:varName "startDate"^^xsd:string . | ||
1293 | 1328 | ||
1294 | -_:b10 | 1329 | +_:b2 sp:varName "baaId"^^xsd:string . |
1295 | - sp:varName "licenceId"^^xsd:string . | ||
1296 | 1330 | ||
1297 | -_:b9 sp:varName "companyId"^^xsd:string . | 1331 | +_:b3 sp:varName "startDate"^^xsd:string . |
1298 | 1332 | ||
1299 | -_:b8 sp:varName "baa"^^xsd:string . | 1333 | +_:b4 sp:varName "source"^^xsd:string . |
1300 | 1334 | ||
1301 | -_:b7 sp:varName "baaName"^^xsd:string . | 1335 | +_:b5 sp:varName "companyName"^^xsd:string . |
1302 | 1336 | ||
1303 | _:b6 sp:varName "company"^^xsd:string . | 1337 | _:b6 sp:varName "company"^^xsd:string . |
1304 | 1338 | ||
1305 | -_:b5 sp:varName "companyName"^^xsd:string . | 1339 | +_:b7 sp:varName "baaName"^^xsd:string . |
1306 | 1340 | ||
1307 | -_:b4 sp:varName "source"^^xsd:string . | 1341 | +_:b8 sp:varName "baa"^^xsd:string . |
1308 | 1342 | ||
1309 | -_:b3 sp:varName "startDate"^^xsd:string . | 1343 | +_:b9 sp:varName "companyId"^^xsd:string . |
1310 | 1344 | ||
1311 | -_:b2 sp:varName "baaId"^^xsd:string . | 1345 | +_:b10 |
1346 | + sp:varName "licenceId"^^xsd:string . | ||
1312 | 1347 | ||
1313 | -_:b1 sp:varName "companyId"^^xsd:string . | 1348 | +_:b11 |
1349 | + sp:varName "startDate"^^xsd:string . | ||
1350 | + | ||
1351 | +_:b12 | ||
1352 | + sp:varName "source"^^xsd:string . | ... | ... |
-
Please register or login to post a comment