Showing
13 changed files
with
185 additions
and
227 deletions
1 | -# Saved by TopBraid on Sun Sep 11 08:18:34 BST 2011 | ||
2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/organization | 1 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/organization |
3 | # imports: http://www.reportinghub.no/ep/schema/1.0/core | 2 | # imports: http://www.reportinghub.no/ep/schema/1.0/core |
3 | +# imports: http://www.reportinghub.no/ep/schema/1.0/facility | ||
4 | 4 | ||
5 | @prefix ep-org: <http://www.reportinghub.no/ep/schema/organization#> . | 5 | @prefix ep-org: <http://www.reportinghub.no/ep/schema/organization#> . |
6 | @prefix owl: <http://www.w3.org/2002/07/owl#> . | 6 | @prefix owl: <http://www.w3.org/2002/07/owl#> . |
... | @@ -10,20 +10,115 @@ | ... | @@ -10,20 +10,115 @@ |
10 | 10 | ||
11 | <http://www.reportinghub.no/ep/schema/1.0/organization> | 11 | <http://www.reportinghub.no/ep/schema/1.0/organization> |
12 | rdf:type owl:Ontology ; | 12 | rdf:type owl:Ontology ; |
13 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; | 13 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/core> ; |
14 | owl:versionInfo "0.1.0"^^xsd:string . | 14 | owl:versionInfo "0.1.0"^^xsd:string . |
15 | 15 | ||
16 | +ep-org:CateringCrew | ||
17 | + rdf:type owl:Class , ep-org:CrewType ; | ||
18 | + rdfs:label "catering crew"^^xsd:string ; | ||
19 | + rdfs:subClassOf ep-org:Crew . | ||
20 | + | ||
21 | +ep-org:CommercialEntity | ||
22 | + rdf:type owl:Class ; | ||
23 | + rdfs:label "commercial entity"^^xsd:string ; | ||
24 | + rdfs:subClassOf ep-org:PersonOrOrganization . | ||
25 | + | ||
16 | ep-org:Company | 26 | ep-org:Company |
17 | rdf:type owl:Class ; | 27 | rdf:type owl:Class ; |
18 | rdfs:label "Company"^^xsd:string ; | 28 | rdfs:label "Company"^^xsd:string ; |
19 | rdfs:subClassOf ep-org:Organization-WholeLife . | 29 | rdfs:subClassOf ep-org:Organization-WholeLife . |
20 | 30 | ||
31 | +ep-org:ContractorCrew | ||
32 | + rdf:type owl:Class , ep-org:CrewType ; | ||
33 | + rdfs:label "contractor crew"^^xsd:string ; | ||
34 | + rdfs:subClassOf ep-org:Crew . | ||
35 | + | ||
36 | +ep-org:Crew | ||
37 | + rdf:type owl:Class ; | ||
38 | + rdfs:label "crew"^^xsd:string ; | ||
39 | + rdfs:subClassOf ep-org:Organization . | ||
40 | + | ||
41 | +ep-org:CrewType | ||
42 | + rdf:type rdfs:Class ; | ||
43 | + rdfs:label "crew type"^^xsd:string ; | ||
44 | + rdfs:subClassOf owl:Class . | ||
45 | + | ||
46 | +ep-org:DayVisitorCrew | ||
47 | + rdf:type owl:Class , ep-org:CrewType ; | ||
48 | + rdfs:label "day visitor crew"^^xsd:string ; | ||
49 | + rdfs:subClassOf ep-org:Crew . | ||
50 | + | ||
51 | +ep-org:DrillingContractCrew | ||
52 | + rdf:type owl:Class , ep-org:CrewType ; | ||
53 | + rdfs:label "drilling contract crew"^^xsd:string ; | ||
54 | + rdfs:subClassOf ep-org:Crew . | ||
55 | + | ||
56 | +ep-org:NonOperatorOvernightVisitorCrew | ||
57 | + rdf:type owl:Class , ep-org:CrewType ; | ||
58 | + rdfs:label "non-operator overnight visitor crew"^^xsd:string ; | ||
59 | + rdfs:subClassOf ep-org:Crew . | ||
60 | + | ||
61 | +ep-org:OperatorNormalCrew | ||
62 | + rdf:type owl:Class , ep-org:CrewType ; | ||
63 | + rdfs:label "operator normal crew"^^xsd:string ; | ||
64 | + rdfs:subClassOf ep-org:Crew . | ||
65 | + | ||
66 | +ep-org:OperatorOvernightVisitorCrew | ||
67 | + rdf:type owl:Class , ep-org:CrewType ; | ||
68 | + rdfs:label "operator overnight visitor crew"^^xsd:string ; | ||
69 | + rdfs:subClassOf ep-org:Crew . | ||
70 | + | ||
21 | ep-org:Organization | 71 | ep-org:Organization |
22 | rdf:type owl:Class ; | 72 | rdf:type owl:Class ; |
23 | rdfs:label "organization"^^xsd:string ; | 73 | rdfs:label "organization"^^xsd:string ; |
24 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . | 74 | + rdfs:subClassOf ep-org:PersonOrOrganization , <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . |
25 | 75 | ||
26 | ep-org:Organization-WholeLife | 76 | ep-org:Organization-WholeLife |
27 | rdf:type owl:Class ; | 77 | rdf:type owl:Class ; |
28 | rdfs:label "organization - whole life"^^xsd:string ; | 78 | rdfs:label "organization - whole life"^^xsd:string ; |
29 | rdfs:subClassOf ep-org:Organization . | 79 | rdfs:subClassOf ep-org:Organization . |
80 | + | ||
81 | +ep-org:Person | ||
82 | + rdf:type owl:Class ; | ||
83 | + rdfs:subClassOf ep-org:PersonOrOrganization . | ||
84 | + | ||
85 | +ep-org:PersonOrOrganization | ||
86 | + rdf:type owl:Class ; | ||
87 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . | ||
88 | + | ||
89 | +ep-org:PersonRole | ||
90 | + rdf:type owl:Class ; | ||
91 | + rdfs:label "person role"^^xsd:string ; | ||
92 | + rdfs:subClassOf ep-org:Person . | ||
93 | + | ||
94 | +ep-org:PersonRoleType | ||
95 | + rdf:type rdfs:Class ; | ||
96 | + rdfs:label "person role type"^^xsd:string ; | ||
97 | + rdfs:subClassOf owl:Class . | ||
98 | + | ||
99 | +ep-org:TotalCrew | ||
100 | + rdf:type owl:Class , ep-org:CrewType ; | ||
101 | + rdfs:label "total crew"^^xsd:string ; | ||
102 | + rdfs:subClassOf ep-org:Crew . | ||
103 | + | ||
104 | +ep-org:WholeLifePerson | ||
105 | + rdf:type owl:Class ; | ||
106 | + rdfs:label "whole life person"^^xsd:string ; | ||
107 | + rdfs:subClassOf ep-org:Person . | ||
108 | + | ||
109 | +ep-org:hasCrew | ||
110 | + rdf:type owl:ObjectProperty ; | ||
111 | + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; | ||
112 | + rdfs:label "has crew"^^xsd:string ; | ||
113 | + rdfs:range ep-org:Crew . | ||
114 | + | ||
115 | +ep-org:numberInCrew | ||
116 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | ||
117 | + rdfs:domain ep-org:Crew ; | ||
118 | + rdfs:label "number in crew"^^xsd:string . | ||
119 | + | ||
120 | +ep-org:owner | ||
121 | + rdf:type owl:ObjectProperty ; | ||
122 | + rdfs:domain owl:Thing ; | ||
123 | + rdfs:label "owner"^^xsd:string ; | ||
124 | + rdfs:range ep-org:PersonOrOrganization . | ... | ... |
This diff is collapsed. Click to expand it.
1 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-equipment | 1 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-equipment |
2 | # imports: http://www.reportinghub.no/ep/schema/1.0/equipment | 2 | # imports: http://www.reportinghub.no/ep/schema/1.0/equipment |
3 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-facility | 3 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-facility |
4 | -# imports: http://www.reportinghub.no/ep/schema/1.0/production-organization | ||
5 | 4 | ||
6 | @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . | 5 | @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . |
7 | @prefix ep-prodeqt: <http://www.reportinghub.no/ep/schema/production-equipment#> . | 6 | @prefix ep-prodeqt: <http://www.reportinghub.no/ep/schema/production-equipment#> . |
... | @@ -13,7 +12,7 @@ | ... | @@ -13,7 +12,7 @@ |
13 | 12 | ||
14 | <http://www.reportinghub.no/ep/schema/1.0/production-equipment> | 13 | <http://www.reportinghub.no/ep/schema/1.0/production-equipment> |
15 | rdf:type owl:Ontology ; | 14 | rdf:type owl:Ontology ; |
16 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/production-organization> ; | 15 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> ; |
17 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 16 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
18 | 17 | ||
19 | <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> | 18 | <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> |
... | @@ -40,56 +39,23 @@ ep-prodeqt:DownHoleControlValve | ... | @@ -40,56 +39,23 @@ ep-prodeqt:DownHoleControlValve |
40 | rdfs:label "down hole control valve"^^xsd:string ; | 39 | rdfs:label "down hole control valve"^^xsd:string ; |
41 | rdfs:subClassOf ep-prodeqt:Valve . | 40 | rdfs:subClassOf ep-prodeqt:Valve . |
42 | 41 | ||
43 | -ep-prodeqt:FlowMeter | 42 | +ep-prodeqt:FlowLine |
44 | - rdf:type owl:Class ; | ||
45 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | ||
46 | - | ||
47 | -ep-prodeqt:GasLiftChoke | ||
48 | - rdf:type owl:Class ; | ||
49 | - rdfs:label "gas lift choke"^^xsd:string ; | ||
50 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | ||
51 | - | ||
52 | -ep-prodeqt:PressureMeter | ||
53 | - rdf:type owl:Class ; | ||
54 | - rdfs:label "pressure meter"^^xsd:string ; | ||
55 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | ||
56 | - | ||
57 | -ep-prodeqt:RegulatingValve | ||
58 | rdf:type owl:Class ; | 43 | rdf:type owl:Class ; |
59 | - rdfs:label "regulating valve"^^xsd:string ; | 44 | + rdfs:subClassOf ep-prodeqt:TemporalPartOfAFlowLine . |
60 | - rdfs:subClassOf ep-prodeqt:Valve . | ||
61 | 45 | ||
62 | -ep-prodeqt:SleeveValve | 46 | +ep-prodeqt:FlowLine-Production |
63 | rdf:type owl:Class ; | 47 | rdf:type owl:Class ; |
64 | - rdfs:label "sleeve valve"^^xsd:string ; | 48 | + rdfs:subClassOf ep-prodeqt:FlowLine . |
65 | - rdfs:subClassOf ep-prodeqt:Valve . | ||
66 | 49 | ||
67 | -ep-prodeqt:TemperatureMeter | 50 | +ep-prodeqt:FlowMeter |
68 | rdf:type owl:Class ; | 51 | rdf:type owl:Class ; |
69 | - rdfs:label "temperature meter"^^xsd:string ; | ||
70 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | 52 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . |
71 | 53 | ||
72 | -ep-prodeqt:Valve | 54 | +ep-prodeqt:GasLiftChoke |
73 | rdf:type owl:Class ; | 55 | rdf:type owl:Class ; |
74 | - rdfs:label "valve"^^xsd:string ; | 56 | + rdfs:label "gas lift choke"^^xsd:string ; |
75 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | 57 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . |
76 | 58 | ||
77 | -ep-prodeqt:hasCaptain | ||
78 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | ||
79 | - rdfs:label "has captain"^^xsd:string ; | ||
80 | - rdfs:range <http://www.reportinghub.no/ep/schema/production-organization#Person> . | ||
81 | - | ||
82 | -ep-prodeqt:hasValvePosition | ||
83 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | ||
84 | - rdfs:domain ep-prodeqt:Valve ; | ||
85 | - rdfs:label "has valve position"^^xsd:string ; | ||
86 | - rdfs:range ep-core:Ratio . | ||
87 | - | ||
88 | -ep-prodfac:Pipeline | ||
89 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | ||
90 | - rdfs:label "pipeline"^^xsd:string ; | ||
91 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | ||
92 | - | ||
93 | ep-prodeqt:Manifold | 59 | ep-prodeqt:Manifold |
94 | rdf:type owl:Class ; | 60 | rdf:type owl:Class ; |
95 | rdfs:subClassOf ep-prodeqt:TemporalPartOfAManifold . | 61 | rdfs:subClassOf ep-prodeqt:TemporalPartOfAManifold . |
... | @@ -102,14 +68,34 @@ ep-prodeqt:Manifold-Production | ... | @@ -102,14 +68,34 @@ ep-prodeqt:Manifold-Production |
102 | rdf:type owl:Class ; | 68 | rdf:type owl:Class ; |
103 | rdfs:subClassOf ep-prodeqt:Manifold . | 69 | rdfs:subClassOf ep-prodeqt:Manifold . |
104 | 70 | ||
71 | +ep-prodeqt:PressureMeter | ||
72 | + rdf:type owl:Class ; | ||
73 | + rdfs:label "pressure meter"^^xsd:string ; | ||
74 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | ||
75 | + | ||
76 | +ep-prodeqt:RegulatingValve | ||
77 | + rdf:type owl:Class ; | ||
78 | + rdfs:label "regulating valve"^^xsd:string ; | ||
79 | + rdfs:subClassOf ep-prodeqt:Valve . | ||
80 | + | ||
105 | ep-prodeqt:Separator | 81 | ep-prodeqt:Separator |
106 | rdf:type owl:Class ; | 82 | rdf:type owl:Class ; |
107 | rdfs:subClassOf ep-prodeqt:TemporalPartOfASeparator . | 83 | rdfs:subClassOf ep-prodeqt:TemporalPartOfASeparator . |
108 | 84 | ||
85 | +ep-prodeqt:SleeveValve | ||
86 | + rdf:type owl:Class ; | ||
87 | + rdfs:label "sleeve valve"^^xsd:string ; | ||
88 | + rdfs:subClassOf ep-prodeqt:Valve . | ||
89 | + | ||
109 | ep-prodeqt:Tank | 90 | ep-prodeqt:Tank |
110 | rdf:type owl:Class ; | 91 | rdf:type owl:Class ; |
111 | rdfs:subClassOf ep-prodeqt:TemporalPartOfATank . | 92 | rdfs:subClassOf ep-prodeqt:TemporalPartOfATank . |
112 | 93 | ||
94 | +ep-prodeqt:TemperatureMeter | ||
95 | + rdf:type owl:Class ; | ||
96 | + rdfs:label "temperature meter"^^xsd:string ; | ||
97 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | ||
98 | + | ||
113 | ep-prodeqt:TemporalPartOfAFlowLine | 99 | ep-prodeqt:TemporalPartOfAFlowLine |
114 | rdf:type owl:Class ; | 100 | rdf:type owl:Class ; |
115 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | 101 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . |
... | @@ -125,33 +111,24 @@ ep-prodeqt:TemporalPartOfASeparator | ... | @@ -125,33 +111,24 @@ ep-prodeqt:TemporalPartOfASeparator |
125 | ep-prodeqt:TemporalPartOfATank | 111 | ep-prodeqt:TemporalPartOfATank |
126 | rdf:type owl:Class ; | 112 | rdf:type owl:Class ; |
127 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | 113 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . |
128 | - | ||
129 | -ep-prodeqt:Manifold | ||
130 | - rdf:type owl:Class ; | ||
131 | - rdfs:subClassOf ep-prodeqt:TemporalPartOfAManifold . | ||
132 | - | ||
133 | -ep-prodeqt:Manifold-Injection | ||
134 | - rdf:type owl:Class ; | ||
135 | - rdfs:subClassOf ep-prodeqt:Manifold . | ||
136 | - | ||
137 | -ep-prodeqt:Manifold-Production | ||
138 | - rdf:type owl:Class ; | ||
139 | - rdfs:subClassOf ep-prodeqt:Manifold . | ||
140 | - | ||
141 | -ep-prodeqt:Separator | ||
142 | - rdf:type owl:Class ; | ||
143 | - rdfs:subClassOf ep-prodeqt:TemporalPartOfASeparator . | ||
144 | 114 | ||
145 | -ep-prodeqt:Tank | 115 | +ep-prodeqt:Valve |
146 | - rdf:type owl:Class ; | ||
147 | - rdfs:subClassOf ep-prodeqt:TemporalPartOfATank . | ||
148 | - | ||
149 | -ep-prodeqt:FlowLine | ||
150 | rdf:type owl:Class ; | 116 | rdf:type owl:Class ; |
151 | - rdfs:subClassOf ep-prodeqt:TemporalPartOfAFlowLine . | 117 | + rdfs:label "valve"^^xsd:string ; |
118 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . | ||
152 | 119 | ||
153 | -ep-prodeqt:FlowLine-Production | 120 | +ep-prodeqt:hasCaptain |
154 | - rdf:type owl:Class ; | 121 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
155 | - rdfs:subClassOf ep-prodeqt:FlowLine . | 122 | + rdfs:label "has captain"^^xsd:string ; |
123 | + rdfs:range <http://www.reportinghub.no/ep/schema/organization#Person> . | ||
156 | 124 | ||
125 | +ep-prodeqt:hasValvePosition | ||
126 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | ||
127 | + rdfs:domain ep-prodeqt:Valve ; | ||
128 | + rdfs:label "has valve position"^^xsd:string ; | ||
129 | + rdfs:range ep-core:Ratio . | ||
157 | 130 | ||
131 | +ep-prodfac:Pipeline | ||
132 | + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | ||
133 | + rdfs:label "pipeline"^^xsd:string ; | ||
134 | + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | 12 | ||
13 | <http://www.reportinghub.no/ep/schema/1.0/production-facility> | 13 | <http://www.reportinghub.no/ep/schema/1.0/production-facility> |
14 | rdf:type owl:Ontology ; | 14 | rdf:type owl:Ontology ; |
15 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-well> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/facility> ; | 15 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/production-well> ; |
16 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 16 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
17 | 17 | ||
18 | <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> | 18 | <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> |
... | @@ -60,7 +60,7 @@ | ... | @@ -60,7 +60,7 @@ |
60 | rdf:type ep-prodfac:ProductionFacilityType . | 60 | rdf:type ep-prodfac:ProductionFacilityType . |
61 | 61 | ||
62 | <http://www.reportinghub.no/ep/schema/facility#facilityOperator> | 62 | <http://www.reportinghub.no/ep/schema/facility#facilityOperator> |
63 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 63 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
64 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; | 64 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; |
65 | rdfs:label "facility operator"^^xsd:string ; | 65 | rdfs:label "facility operator"^^xsd:string ; |
66 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . | 66 | rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . |
... | @@ -74,6 +74,9 @@ | ... | @@ -74,6 +74,9 @@ |
74 | <http://www.reportinghub.no/ep/schema/geography#Terminal> | 74 | <http://www.reportinghub.no/ep/schema/geography#Terminal> |
75 | rdf:type ep-prodfac:ProductionFacilityType . | 75 | rdf:type ep-prodfac:ProductionFacilityType . |
76 | 76 | ||
77 | +<http://www.reportinghub.no/ep/schema/organization#CommercialEntity> | ||
78 | + rdf:type ep-prodfac:ProductionFacilityType . | ||
79 | + | ||
77 | <http://www.reportinghub.no/ep/schema/organization#Company> | 80 | <http://www.reportinghub.no/ep/schema/organization#Company> |
78 | rdf:type ep-prodfac:ProductionFacilityType . | 81 | rdf:type ep-prodfac:ProductionFacilityType . |
79 | 82 | ||
... | @@ -101,22 +104,22 @@ ep-prodfac:Boat | ... | @@ -101,22 +104,22 @@ ep-prodfac:Boat |
101 | rdfs:subClassOf ep-prodfac:ShipOrBoat . | 104 | rdfs:subClassOf ep-prodfac:ShipOrBoat . |
102 | 105 | ||
103 | ep-prodfac:Field-area | 106 | ep-prodfac:Field-area |
104 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 107 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
105 | rdfs:label "field - area"^^xsd:string ; | 108 | rdfs:label "field - area"^^xsd:string ; |
106 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> . | 109 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> . |
107 | 110 | ||
108 | ep-prodfac:Field-group | 111 | ep-prodfac:Field-group |
109 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 112 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
110 | rdfs:label "field - group"^^xsd:string ; | 113 | rdfs:label "field - group"^^xsd:string ; |
111 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> . | 114 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> . |
112 | 115 | ||
113 | ep-prodfac:Field-part | 116 | ep-prodfac:Field-part |
114 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 117 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
115 | rdfs:label "field - part"^^xsd:string ; | 118 | rdfs:label "field - part"^^xsd:string ; |
116 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> . | 119 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> . |
117 | 120 | ||
118 | ep-prodfac:Installation | 121 | ep-prodfac:Installation |
119 | - rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; | 122 | + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; |
120 | rdfs:label "installation"^^xsd:string ; | 123 | rdfs:label "installation"^^xsd:string ; |
121 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 124 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
122 | 125 | ||
... | @@ -126,17 +129,17 @@ ep-prodfac:OilTanker | ... | @@ -126,17 +129,17 @@ ep-prodfac:OilTanker |
126 | rdfs:subClassOf ep-prodfac:Ship . | 129 | rdfs:subClassOf ep-prodfac:Ship . |
127 | 130 | ||
128 | ep-prodfac:Plant | 131 | ep-prodfac:Plant |
129 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 132 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
130 | rdfs:label "plant"^^xsd:string ; | 133 | rdfs:label "plant"^^xsd:string ; |
131 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 134 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
132 | 135 | ||
133 | ep-prodfac:Plant-processing | 136 | ep-prodfac:Plant-processing |
134 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 137 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
135 | rdfs:label "plant - processing"^^xsd:string ; | 138 | rdfs:label "plant - processing"^^xsd:string ; |
136 | rdfs:subClassOf ep-prodfac:Plant . | 139 | rdfs:subClassOf ep-prodfac:Plant . |
137 | 140 | ||
138 | ep-prodfac:ProcessingFacility | 141 | ep-prodfac:ProcessingFacility |
139 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 142 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
140 | rdfs:label "processing facility"^^xsd:string ; | 143 | rdfs:label "processing facility"^^xsd:string ; |
141 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 144 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
142 | 145 | ||
... | @@ -155,7 +158,7 @@ ep-prodfac:ShipOrBoat | ... | @@ -155,7 +158,7 @@ ep-prodfac:ShipOrBoat |
155 | rdfs:subClassOf ep-prodfac:TemporalPartOfAShipOrBoat . | 158 | rdfs:subClassOf ep-prodfac:TemporalPartOfAShipOrBoat . |
156 | 159 | ||
157 | ep-prodfac:StorageFacility | 160 | ep-prodfac:StorageFacility |
158 | - rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; | 161 | + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; |
159 | rdfs:label "storage facility"^^xsd:string ; | 162 | rdfs:label "storage facility"^^xsd:string ; |
160 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 163 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
161 | 164 | ||
... | @@ -169,7 +172,7 @@ ep-prodfac:TemporalPartOfAShipOrBoat | ... | @@ -169,7 +172,7 @@ ep-prodfac:TemporalPartOfAShipOrBoat |
169 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 172 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
170 | 173 | ||
171 | ep-prodfac:TrunkLine | 174 | ep-prodfac:TrunkLine |
172 | - rdf:type ep-prodfac:ProductionFacilityType , owl:Class ; | 175 | + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; |
173 | rdfs:label "trunk line"^^xsd:string ; | 176 | rdfs:label "trunk line"^^xsd:string ; |
174 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . | 177 | rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . |
175 | 178 | ||
... | @@ -214,14 +217,11 @@ ep-prodfac:numberOfPersonnelOnBoard | ... | @@ -214,14 +217,11 @@ ep-prodfac:numberOfPersonnelOnBoard |
214 | rdfs:range xsd:integer . | 217 | rdfs:range xsd:integer . |
215 | 218 | ||
216 | ep-prodfac:operatingTime | 219 | ep-prodfac:operatingTime |
217 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 220 | + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; |
218 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; | 221 | rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; |
219 | rdfs:label "operating time"^^xsd:string ; | 222 | rdfs:label "operating time"^^xsd:string ; |
220 | rdfs:range ep-core:TimeDuration . | 223 | rdfs:range ep-core:TimeDuration . |
221 | 224 | ||
222 | -<http://www.reportinghub.no/ep/schema/production-organization#CommercialEntity> | ||
223 | - rdf:type ep-prodfac:ProductionFacilityType . | ||
224 | - | ||
225 | <http://www.reportinghub.no/ep/schema/production-well#RockFormation> | 225 | <http://www.reportinghub.no/ep/schema/production-well#RockFormation> |
226 | rdf:type ep-prodfac:ProductionFacilityType . | 226 | rdf:type ep-prodfac:ProductionFacilityType . |
227 | 227 | ... | ... |
1 | -# baseURI: http://www.reportinghub.no/ep/schema/1.0/production-organization | ||
2 | -# imports: http://www.reportinghub.no/ep/schema/1.0/facility | ||
3 | -# imports: http://www.reportinghub.no/ep/schema/1.0/organization | ||
4 | - | ||
5 | -@prefix ep-prodorg: <http://www.reportinghub.no/ep/schema/production-organization#> . | ||
6 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
7 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
8 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
9 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
10 | - | ||
11 | -<http://www.reportinghub.no/ep/schema/1.0/production-organization> | ||
12 | - rdf:type owl:Ontology ; | ||
13 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/organization> ; | ||
14 | - owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
15 | - | ||
16 | -<http://www.reportinghub.no/ep/schema/organization#Organization> | ||
17 | - rdfs:subClassOf ep-prodorg:PersonOrOrganization . | ||
18 | - | ||
19 | -ep-prodorg:CateringCrew | ||
20 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
21 | - rdfs:label "catering crew"^^xsd:string ; | ||
22 | - rdfs:subClassOf ep-prodorg:Crew . | ||
23 | - | ||
24 | -ep-prodorg:CommercialEntity | ||
25 | - rdf:type owl:Class ; | ||
26 | - rdfs:label "commercial entity"^^xsd:string ; | ||
27 | - rdfs:subClassOf ep-prodorg:PersonOrOrganization . | ||
28 | - | ||
29 | -ep-prodorg:ContractorCrew | ||
30 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
31 | - rdfs:label "contractor crew"^^xsd:string ; | ||
32 | - rdfs:subClassOf ep-prodorg:Crew . | ||
33 | - | ||
34 | -ep-prodorg:Crew | ||
35 | - rdf:type owl:Class ; | ||
36 | - rdfs:label "crew"^^xsd:string ; | ||
37 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/organization#Organization> . | ||
38 | - | ||
39 | -ep-prodorg:CrewType | ||
40 | - rdf:type rdfs:Class ; | ||
41 | - rdfs:label "crew type"^^xsd:string ; | ||
42 | - rdfs:subClassOf owl:Class . | ||
43 | - | ||
44 | -ep-prodorg:DayVisitorCrew | ||
45 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
46 | - rdfs:label "day visitor crew"^^xsd:string ; | ||
47 | - rdfs:subClassOf ep-prodorg:Crew . | ||
48 | - | ||
49 | -ep-prodorg:DrillingContractCrew | ||
50 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
51 | - rdfs:label "drilling contract crew"^^xsd:string ; | ||
52 | - rdfs:subClassOf ep-prodorg:Crew . | ||
53 | - | ||
54 | -ep-prodorg:NonOperatorOvernightVisitorCrew | ||
55 | - rdf:type ep-prodorg:CrewType , owl:Class ; | ||
56 | - rdfs:label "non-operator overnight visitor crew"^^xsd:string ; | ||
57 | - rdfs:subClassOf ep-prodorg:Crew . | ||
58 | - | ||
59 | -ep-prodorg:OperatorNormalCrew | ||
60 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
61 | - rdfs:label "operator normal crew"^^xsd:string ; | ||
62 | - rdfs:subClassOf ep-prodorg:Crew . | ||
63 | - | ||
64 | -ep-prodorg:OperatorOvernightVisitorCrew | ||
65 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
66 | - rdfs:label "operator overnight visitor crew"^^xsd:string ; | ||
67 | - rdfs:subClassOf ep-prodorg:Crew . | ||
68 | - | ||
69 | -ep-prodorg:Person | ||
70 | - rdf:type owl:Class ; | ||
71 | - rdfs:subClassOf ep-prodorg:PersonOrOrganization . | ||
72 | - | ||
73 | -ep-prodorg:PersonOrOrganization | ||
74 | - rdf:type owl:Class ; | ||
75 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . | ||
76 | - | ||
77 | -ep-prodorg:PersonRole | ||
78 | - rdf:type owl:Class ; | ||
79 | - rdfs:label "person role"^^xsd:string ; | ||
80 | - rdfs:subClassOf ep-prodorg:Person . | ||
81 | - | ||
82 | -ep-prodorg:PersonRoleType | ||
83 | - rdf:type rdfs:Class ; | ||
84 | - rdfs:label "person role type"^^xsd:string ; | ||
85 | - rdfs:subClassOf owl:Class . | ||
86 | - | ||
87 | -ep-prodorg:TotalCrew | ||
88 | - rdf:type owl:Class , ep-prodorg:CrewType ; | ||
89 | - rdfs:label "total crew"^^xsd:string ; | ||
90 | - rdfs:subClassOf ep-prodorg:Crew . | ||
91 | - | ||
92 | -ep-prodorg:WholeLifePerson | ||
93 | - rdf:type owl:Class ; | ||
94 | - rdfs:label "whole life person"^^xsd:string ; | ||
95 | - rdfs:subClassOf ep-prodorg:Person . | ||
96 | - | ||
97 | -ep-prodorg:hasCrew | ||
98 | - rdf:type owl:ObjectProperty ; | ||
99 | - rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; | ||
100 | - rdfs:label "has crew"^^xsd:string ; | ||
101 | - rdfs:range ep-prodorg:Crew . | ||
102 | - | ||
103 | -ep-prodorg:numberInCrew | ||
104 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; | ||
105 | - rdfs:domain ep-prodorg:Crew ; | ||
106 | - rdfs:label "number in crew"^^xsd:string . | ||
107 | - | ||
108 | -ep-prodorg:owner | ||
109 | - rdf:type owl:ObjectProperty ; | ||
110 | - rdfs:domain owl:Thing ; | ||
111 | - rdfs:label "owner"^^xsd:string ; | ||
112 | - rdfs:range ep-prodorg:PersonOrOrganization . |
1 | -# Saved by TopBraid on Tue Oct 25 15:16:16 BST 2011 | ||
2 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/production | 1 | # baseURI: http://www.reportinghub.no/ep/schema/1.0/production |
3 | -# imports: http://www.reportinghub.no/ep/schema/1.0/production-equipment | ||
4 | -# imports: http://www.reportinghub.no/ep/schema/1.0/production-organization | ||
5 | -# imports: http://www.reportinghub.no/ep/schema/1.0/production-facility | ||
6 | -# imports: http://www.reportinghub.no/ep/schema/1.0/geography | ||
7 | -# imports: http://www.reportinghub.no/ep/schema/1.0/production-well | ||
8 | -# imports: http://www.reportinghub.no/np/schema/1.0/npd | ||
9 | # imports: http://www.reportinghub.no/ep/schema/1.0/flow | 2 | # imports: http://www.reportinghub.no/ep/schema/1.0/flow |
3 | +# imports: http://www.reportinghub.no/ep/schema/1.0/geography | ||
10 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-activity | 4 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-activity |
11 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-core | 5 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-core |
6 | +# imports: http://www.reportinghub.no/ep/schema/1.0/production-equipment | ||
7 | +# imports: http://www.reportinghub.no/ep/schema/1.0/production-facility | ||
12 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-report | 8 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-report |
9 | +# imports: http://www.reportinghub.no/ep/schema/1.0/production-well | ||
10 | +# imports: http://www.reportinghub.no/np/schema/1.0/npd | ||
13 | 11 | ||
14 | @prefix ep-prod: <http://www.reportinghub.no/ep/schema/production#> . | 12 | @prefix ep-prod: <http://www.reportinghub.no/ep/schema/production#> . |
15 | @prefix owl: <http://www.w3.org/2002/07/owl#> . | 13 | @prefix owl: <http://www.w3.org/2002/07/owl#> . |
... | @@ -19,5 +17,5 @@ | ... | @@ -19,5 +17,5 @@ |
19 | 17 | ||
20 | <http://www.reportinghub.no/ep/schema/1.0/production> | 18 | <http://www.reportinghub.no/ep/schema/1.0/production> |
21 | rdf:type owl:Ontology ; | 19 | rdf:type owl:Ontology ; |
22 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-core> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-organization> , <http://www.reportinghub.no/ep/schema/1.0/production-report> , <http://www.reportinghub.no/ep/schema/1.0/production-facility> , <http://www.reportinghub.no/np/schema/1.0/npd> , <http://www.reportinghub.no/ep/schema/1.0/production-well> , <http://www.reportinghub.no/ep/schema/1.0/geography> , <http://www.reportinghub.no/ep/schema/1.0/flow> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> ; | 20 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-core> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-report> , <http://www.reportinghub.no/ep/schema/1.0/production-facility> , <http://www.reportinghub.no/np/schema/1.0/npd> , <http://www.reportinghub.no/ep/schema/1.0/production-well> , <http://www.reportinghub.no/ep/schema/1.0/geography> , <http://www.reportinghub.no/ep/schema/1.0/flow> , <http://www.reportinghub.no/ep/schema/1.0/production-equipment> ; |
23 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 21 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ... | ... |
... | @@ -263,50 +263,50 @@ ep-mpr-spin-lib:selectCrewType | ... | @@ -263,50 +263,50 @@ ep-mpr-spin-lib:selectCrewType |
263 | sp:arg1 spin:_arg1 ; | 263 | sp:arg1 spin:_arg1 ; |
264 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_cateringcrew> | 264 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_cateringcrew> |
265 | ] ; | 265 | ] ; |
266 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#CateringCrew> ; | 266 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#CateringCrew> ; |
267 | sp:arg3 [ rdf:type sp:if ; | 267 | sp:arg3 [ rdf:type sp:if ; |
268 | sp:arg1 [ rdf:type sp:eq ; | 268 | sp:arg1 [ rdf:type sp:eq ; |
269 | sp:arg1 spin:_arg1 ; | 269 | sp:arg1 spin:_arg1 ; |
270 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_contractorcrew> | 270 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_contractorcrew> |
271 | ] ; | 271 | ] ; |
272 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#ContractorCrew> ; | 272 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#ContractorCrew> ; |
273 | sp:arg3 [ rdf:type sp:if ; | 273 | sp:arg3 [ rdf:type sp:if ; |
274 | sp:arg1 [ rdf:type sp:eq ; | 274 | sp:arg1 [ rdf:type sp:eq ; |
275 | sp:arg1 spin:_arg1 ; | 275 | sp:arg1 spin:_arg1 ; |
276 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_dayvisitors> | 276 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_dayvisitors> |
277 | ] ; | 277 | ] ; |
278 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#DayVisitorCrew> ; | 278 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#DayVisitorCrew> ; |
279 | sp:arg3 [ rdf:type sp:if ; | 279 | sp:arg3 [ rdf:type sp:if ; |
280 | sp:arg1 [ rdf:type sp:eq ; | 280 | sp:arg1 [ rdf:type sp:eq ; |
281 | sp:arg1 spin:_arg1 ; | 281 | sp:arg1 spin:_arg1 ; |
282 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_drillingcontractcrew> | 282 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_drillingcontractcrew> |
283 | ] ; | 283 | ] ; |
284 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#DrillingContractCrew> ; | 284 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#DrillingContractCrew> ; |
285 | sp:arg3 [ rdf:type sp:if ; | 285 | sp:arg3 [ rdf:type sp:if ; |
286 | sp:arg1 [ rdf:type sp:eq ; | 286 | sp:arg1 [ rdf:type sp:eq ; |
287 | sp:arg1 spin:_arg1 ; | 287 | sp:arg1 spin:_arg1 ; |
288 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_owncrew> | 288 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_owncrew> |
289 | ] ; | 289 | ] ; |
290 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#OperatorNormalCrew> ; | 290 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#OperatorNormalCrew> ; |
291 | sp:arg3 [ rdf:type sp:if ; | 291 | sp:arg3 [ rdf:type sp:if ; |
292 | sp:arg1 [ rdf:type sp:eq ; | 292 | sp:arg1 [ rdf:type sp:eq ; |
293 | sp:arg1 spin:_arg1 ; | 293 | sp:arg1 spin:_arg1 ; |
294 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_ownothercrew> | 294 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_ownothercrew> |
295 | ] ; | 295 | ] ; |
296 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#OperatorOvernightVisitorCrew> ; | 296 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#OperatorOvernightVisitorCrew> ; |
297 | sp:arg3 [ rdf:type sp:if ; | 297 | sp:arg3 [ rdf:type sp:if ; |
298 | sp:arg1 [ rdf:type sp:eq ; | 298 | sp:arg1 [ rdf:type sp:eq ; |
299 | sp:arg1 spin:_arg1 ; | 299 | sp:arg1 spin:_arg1 ; |
300 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_othercrew> | 300 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_othercrew> |
301 | ] ; | 301 | ] ; |
302 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#NonOperatorOvernightVisitorCrew> ; | 302 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#NonOperatorOvernightVisitorCrew> ; |
303 | sp:arg3 [ rdf:type sp:if ; | 303 | sp:arg3 [ rdf:type sp:if ; |
304 | sp:arg1 [ rdf:type sp:eq ; | 304 | sp:arg1 [ rdf:type sp:eq ; |
305 | sp:arg1 spin:_arg1 ; | 305 | sp:arg1 spin:_arg1 ; |
306 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_personnelonboard> | 306 | sp:arg2 <http://www.epim.no/schemas/mprml/1#CT_personnelonboard> |
307 | ] ; | 307 | ] ; |
308 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#TotalCrew> ; | 308 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#TotalCrew> ; |
309 | - sp:arg3 <http://www.reportinghub.no/ep/schema/production-organization#Crew> | 309 | + sp:arg3 <http://www.reportinghub.no/ep/schema/organization#Crew> |
310 | ] | 310 | ] |
311 | ] | 311 | ] |
312 | ] | 312 | ] |
... | @@ -4166,7 +4166,7 @@ ep-mpr-spin-lib:selectProductionFacilityType | ... | @@ -4166,7 +4166,7 @@ ep-mpr-spin-lib:selectProductionFacilityType |
4166 | sp:arg1 spin:_arg1 ; | 4166 | sp:arg1 spin:_arg1 ; |
4167 | sp:arg2 <http://www.epim.no/schemas/mprml/1#RF_commercialentity> | 4167 | sp:arg2 <http://www.epim.no/schemas/mprml/1#RF_commercialentity> |
4168 | ] ; | 4168 | ] ; |
4169 | - sp:arg2 <http://www.reportinghub.no/ep/schema/production-organization#CommercialEntity> ; | 4169 | + sp:arg2 <http://www.reportinghub.no/ep/schema/organization#CommercialEntity> ; |
4170 | sp:arg3 [ rdf:type sp:if ; | 4170 | sp:arg3 [ rdf:type sp:if ; |
4171 | sp:arg1 [ rdf:type sp:eq ; | 4171 | sp:arg1 [ rdf:type sp:eq ; |
4172 | sp:arg1 spin:_arg1 ; | 4172 | sp:arg1 spin:_arg1 ; | ... | ... |
1 | # baseURI: http://www.reportinghub.no/ep/transform/1.0/dpr/productionOperations | 1 | # baseURI: http://www.reportinghub.no/ep/transform/1.0/dpr/productionOperations |
2 | # imports: http://spinrdf.org/spin | 2 | # imports: http://spinrdf.org/spin |
3 | # imports: http://www.reportinghub.no/ep/dpr/spin/1.1/lib | 3 | # imports: http://www.reportinghub.no/ep/dpr/spin/1.1/lib |
4 | +# imports: http://www.reportinghub.no/ep/schema/1.0/organization | ||
4 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-activity | 5 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-activity |
5 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-core | 6 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-core |
6 | -# imports: http://www.reportinghub.no/ep/schema/1.0/production-organization | ||
7 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-report | 7 | # imports: http://www.reportinghub.no/ep/schema/1.0/production-report |
8 | # imports: http://www.witsml.org/schemas/131/addendum/combo | 8 | # imports: http://www.witsml.org/schemas/131/addendum/combo |
9 | 9 | ||
... | @@ -38,7 +38,7 @@ | ... | @@ -38,7 +38,7 @@ |
38 | 38 | ||
39 | <http://www.reportinghub.no/ep/transform/1.0/dpr/productionOperations> | 39 | <http://www.reportinghub.no/ep/transform/1.0/dpr/productionOperations> |
40 | rdf:type owl:Ontology ; | 40 | rdf:type owl:Ontology ; |
41 | - owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-organization> , <http://www.reportinghub.no/ep/schema/1.0/production-report> , <http://www.witsml.org/schemas/131/addendum/combo> , <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/production-core> ; | 41 | + owl:imports <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-report> , <http://www.witsml.org/schemas/131/addendum/combo> , <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/production-core> ; |
42 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 42 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
43 | 43 | ||
44 | <http://www.witsml.org/schemas/131/addendum/combo#A_Global-WITSMLComposite> | 44 | <http://www.witsml.org/schemas/131/addendum/combo#A_Global-WITSMLComposite> |
... | @@ -497,7 +497,7 @@ | ... | @@ -497,7 +497,7 @@ |
497 | ] [ sp:object _:b11 ; | 497 | ] [ sp:object _:b11 ; |
498 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | 498 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; |
499 | sp:subject _:b10 | 499 | sp:subject _:b10 |
500 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#Person> ; | 500 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#Person> ; |
501 | sp:predicate rdf:type ; | 501 | sp:predicate rdf:type ; |
502 | sp:subject _:b11 | 502 | sp:subject _:b11 |
503 | ] [ sp:object | 503 | ] [ sp:object | ... | ... |
... | @@ -96,13 +96,13 @@ | ... | @@ -96,13 +96,13 @@ |
96 | sp:subject | 96 | sp:subject |
97 | [ sp:varName "commentingActivity"^^xsd:string | 97 | [ sp:varName "commentingActivity"^^xsd:string |
98 | ] | 98 | ] |
99 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#Person> ; | 99 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#Person> ; |
100 | sp:predicate rdf:type ; | 100 | sp:predicate rdf:type ; |
101 | sp:subject _:b3 | 101 | sp:subject _:b3 |
102 | ] [ sp:object _:b4 ; | 102 | ] [ sp:object _:b4 ; |
103 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | 103 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; |
104 | sp:subject _:b3 | 104 | sp:subject _:b3 |
105 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#PersonRole> ; | 105 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#PersonRole> ; |
106 | sp:predicate rdf:type ; | 106 | sp:predicate rdf:type ; |
107 | sp:subject _:b4 | 107 | sp:subject _:b4 |
108 | ] [ sp:object | 108 | ] [ sp:object |
... | @@ -110,12 +110,12 @@ | ... | @@ -110,12 +110,12 @@ |
110 | ] ; | 110 | ] ; |
111 | sp:predicate rdf:type ; | 111 | sp:predicate rdf:type ; |
112 | sp:subject _:b4 | 112 | sp:subject _:b4 |
113 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#PersonRoleType> ; | 113 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#PersonRoleType> ; |
114 | sp:predicate rdf:type ; | 114 | sp:predicate rdf:type ; |
115 | sp:subject | 115 | sp:subject |
116 | [ sp:varName "personRoleType"^^xsd:string | 116 | [ sp:varName "personRoleType"^^xsd:string |
117 | ] | 117 | ] |
118 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#PersonRole> ; | 118 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#PersonRole> ; |
119 | sp:predicate rdfs:subClassOf ; | 119 | sp:predicate rdfs:subClassOf ; |
120 | sp:subject | 120 | sp:subject |
121 | [ sp:varName "personRoleType"^^xsd:string | 121 | [ sp:varName "personRoleType"^^xsd:string |
... | @@ -166,7 +166,7 @@ | ... | @@ -166,7 +166,7 @@ |
166 | sp:subject | 166 | sp:subject |
167 | [ sp:varName "commentingActivity"^^xsd:string | 167 | [ sp:varName "commentingActivity"^^xsd:string |
168 | ] | 168 | ] |
169 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#Person> ; | 169 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#Person> ; |
170 | sp:predicate rdf:type ; | 170 | sp:predicate rdf:type ; |
171 | sp:subject _:b5 | 171 | sp:subject _:b5 |
172 | ] [ sp:object | 172 | ] [ sp:object |
... | @@ -174,7 +174,7 @@ | ... | @@ -174,7 +174,7 @@ |
174 | ] ; | 174 | ] ; |
175 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | 175 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; |
176 | sp:subject _:b5 | 176 | sp:subject _:b5 |
177 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#WholeLifePerson> ; | 177 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#WholeLifePerson> ; |
178 | sp:predicate rdf:type ; | 178 | sp:predicate rdf:type ; |
179 | sp:subject | 179 | sp:subject |
180 | [ sp:varName "person"^^xsd:string | 180 | [ sp:varName "person"^^xsd:string |
... | @@ -216,7 +216,7 @@ | ... | @@ -216,7 +216,7 @@ |
216 | sp:subject | 216 | sp:subject |
217 | [ sp:varName "commentator"^^xsd:string | 217 | [ sp:varName "commentator"^^xsd:string |
218 | ] | 218 | ] |
219 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#PersonRole> ; | 219 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#PersonRole> ; |
220 | sp:predicate rdf:type ; | 220 | sp:predicate rdf:type ; |
221 | sp:subject _:b6 | 221 | sp:subject _:b6 |
222 | ] [ sp:object | 222 | ] [ sp:object |
... | @@ -224,12 +224,12 @@ | ... | @@ -224,12 +224,12 @@ |
224 | ] ; | 224 | ] ; |
225 | sp:predicate rdf:type ; | 225 | sp:predicate rdf:type ; |
226 | sp:subject _:b6 | 226 | sp:subject _:b6 |
227 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#PersonRoleType> ; | 227 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#PersonRoleType> ; |
228 | sp:predicate rdf:type ; | 228 | sp:predicate rdf:type ; |
229 | sp:subject | 229 | sp:subject |
230 | [ sp:varName "personRoleType"^^xsd:string | 230 | [ sp:varName "personRoleType"^^xsd:string |
231 | ] | 231 | ] |
232 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-organization#PersonRole> ; | 232 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/organization#PersonRole> ; |
233 | sp:predicate rdfs:subClassOf ; | 233 | sp:predicate rdfs:subClassOf ; |
234 | sp:subject | 234 | sp:subject |
235 | [ sp:varName "personRoleType"^^xsd:string | 235 | [ sp:varName "personRoleType"^^xsd:string | ... | ... |
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
-
Please register or login to post a comment