Holger Knublauch

NPD test data working, minor tweak to an error message

......@@ -5,6 +5,7 @@
@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#> .
......@@ -15,55 +16,70 @@
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:BA_ERH_TEST
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 .
npd-test:EPIM
npdi:Company-5555555555
rdf:type npd:OperatingCompany ;
npd:companyShortName
"EPIM"^^xsd:string ;
npd:id "5555555555"^^xsd:string ;
npd:name "EPIM"^^xsd:string .
npd-test:ERH-TEST-WELL-01
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 npd-test:ERH_TEST_FIELD_01 .
npd:wellPartOfField npdi:Field-1111111111 .
npd-test:ERH-TEST-WELL-02
npdi:Well-ERH-TEST-WELL-02
rdf:type ep-well:Well ;
npd:name "ERH-TEST-WELL-02"^^xsd:string ;
npd:wellPartOfField npd-test:ERH_TEST_FIELD_02 .
npd:wellPartOfField npdi:Field-1222222222 .
npd-test:ERH-TEST-WELLBORE-01
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 npd-test:ERH-TEST-WELL-01 ;
npd:partOfWell npdi:Well-ERH-TEST-WELL-01 ;
npd:wellBoreType "DEVELOPMENT"^^xsd:string .
npd-test:ERH-TEST-WELLBORE-02
npdi:WellBore-4222222222
rdf:type ep-well:WellBore ;
npd:id "4222222222"^^xsd:string ;
npd:name "ERH-TEST-WELLBORE-02"^^xsd:string ;
npd:partOfWell npd-test:ERH-TEST-WELL-02 ;
npd:partOfWell npdi:Well-ERH-TEST-WELL-02 ;
npd:wellBoreType "DEVELOPMENT"^^xsd:string .
npd-test:ERH_TEST_FIELD_01
rdf:type ep-fac:Field ;
npd:fieldOwner npd-test:BA_ERH_TEST ;
npd:id "1111111111"^^xsd:string ;
npd:name "ERH_TEST_FIELD_01"^^xsd:string .
npd-test:ERH_TEST_FIELD_02
rdf:type ep-fac:Field ;
npd:fieldOwner npd-test:PL_ERH_TEST ;
npd:id "1222222222"^^xsd:string ;
npd:name "ERH_TEST_FIELD_02"^^xsd:string .
npd-test:PL_ERH_TEST
rdf:type npd:Licence ;
npd:id "3333333333"^^xsd:string ;
npd:name "PL_ERH_TEST"^^xsd:string .
......