npd-test.ttl
3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# baseURI: http://www.reportinghub.no/np/data/npd-test
# imports: http://www.reportinghub.no/np/schema/1.0/npd
@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> .
@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> .
@prefix npd: <http://www.reportinghub.no/np/schema/npd#> .
@prefix npd-test: <http://www.reportinghub.no/np/data/npd-test#> .
@prefix npdi: <http://www.reportinghub.no/np/data/npd/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/np/data/npd-test>
rdf:type owl:Ontology ;
rdfs:comment "These triples will be added to the NPD Fact Pages automatically. They contain additional test companies, well bores etc that allows the developers and admins to upload and download dummy data."^^xsd:string ;
owl:imports <http://www.reportinghub.no/np/schema/1.0/npd> .
npd-test:ShareOfBAA_1
rdf:type npd:ShareOfBAA ;
npd:baaShared npdi:BAA-2222222222 ;
npd:shareHolder npdi:Company-5555555555 .
npd-test:ShareOfLicence_1
rdf:type npd:ShareOfLicence ;
npd:licenceShared npdi:Licence-3333333333 ;
npd:shareHolder npdi:Company-5555555555 .
npdi:BAA-2222222222
rdf:type npd:BusinessArrangementArea ;
npd:baaOperator npdi:Company-5555555555 ;
npd:id "2222222222"^^xsd:string ;
npd:name "BA_ERH_TEST"^^xsd:string .
npdi:Company-5555555555
rdf:type npd:OperatingCompany ;
npd:companyShortName
"EPIM"^^xsd:string ;
npd:id "5555555555"^^xsd:string ;
npd:name "EPIM"^^xsd:string .
npdi:Field-1111111111
rdf:type ep-fac:Field ;
npd:fieldOwner npdi:BAA-2222222222 ;
npd:id "1111111111"^^xsd:string ;
npd:name "ERH_TEST_FIELD_01"^^xsd:string .
npdi:Field-1222222222
rdf:type ep-fac:Field ;
npd:fieldOwner npdi:Licence-3333333333 ;
npd:id "1222222222"^^xsd:string ;
npd:name "ERH_TEST_FIELD_02"^^xsd:string .
npdi:Licence-3333333333
rdf:type npd:Licence ;
npd:id "3333333333"^^xsd:string ;
npd:licenceOperator npdi:Company-5555555555 ;
npd:licenceStatus npd:LS_Active ;
npd:name "PL_ERH_TEST"^^xsd:string .
npdi:Well-ERH-TEST-WELL-01
rdf:type ep-well:Well ;
npd:name "ERH-TEST-WELL-01"^^xsd:string ;
npd:wellPartOfField npdi:Field-1111111111 .
npdi:Well-ERH-TEST-WELL-02
rdf:type ep-well:Well ;
npd:name "ERH-TEST-WELL-02"^^xsd:string ;
npd:wellPartOfField npdi:Field-1222222222 .
npdi:WellBore-4111111111
rdf:type ep-well:WellBore ;
npd:drilledInProductionLicence
npdi:Licence-3333333333 ;
npd:id "4111111111"^^xsd:string ;
npd:name "ERH-TEST-WELLBORE-01"^^xsd:string ;
npd:partOfWell npdi:Well-ERH-TEST-WELL-01 ;
npd:wellBoreType "DEVELOPMENT"^^xsd:string .
npdi:WellBore-4222222222
rdf:type ep-well:WellBore ;
npd:id "4222222222"^^xsd:string ;
npd:name "ERH-TEST-WELLBORE-02"^^xsd:string ;
npd:partOfWell npdi:Well-ERH-TEST-WELL-02 ;
npd:wellBoreType "DEVELOPMENT"^^xsd:string .