David Leal

Fluid level test bug fixed

...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
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/facility> , <http://www.reportinghub.no/ep/schema/1.0/core> ; 13 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> ;
14 owl:versionInfo "0.1.0"^^xsd:string . 14 owl:versionInfo "0.1.0"^^xsd:string .
15 15
16 ep-org:CateringCrew 16 ep-org:CateringCrew
17 - rdf:type owl:Class , ep-org:CrewType ; 17 + rdf:type ep-org:CrewType , owl:Class ;
18 rdfs:label "catering crew"^^xsd:string ; 18 rdfs:label "catering crew"^^xsd:string ;
19 rdfs:subClassOf ep-org:Crew . 19 rdfs:subClassOf ep-org:Crew .
20 20
...@@ -29,7 +29,7 @@ ep-org:Company ...@@ -29,7 +29,7 @@ ep-org:Company
29 rdfs:subClassOf ep-org:Organization-WholeLife . 29 rdfs:subClassOf ep-org:Organization-WholeLife .
30 30
31 ep-org:ContractorCrew 31 ep-org:ContractorCrew
32 - rdf:type owl:Class , ep-org:CrewType ; 32 + rdf:type ep-org:CrewType , owl:Class ;
33 rdfs:label "contractor crew"^^xsd:string ; 33 rdfs:label "contractor crew"^^xsd:string ;
34 rdfs:subClassOf ep-org:Crew . 34 rdfs:subClassOf ep-org:Crew .
35 35
...@@ -44,39 +44,39 @@ ep-org:CrewType ...@@ -44,39 +44,39 @@ ep-org:CrewType
44 rdfs:subClassOf owl:Class . 44 rdfs:subClassOf owl:Class .
45 45
46 ep-org:DayVisitorCrew 46 ep-org:DayVisitorCrew
47 - rdf:type owl:Class , ep-org:CrewType ; 47 + rdf:type ep-org:CrewType , owl:Class ;
48 rdfs:label "day visitor crew"^^xsd:string ; 48 rdfs:label "day visitor crew"^^xsd:string ;
49 rdfs:subClassOf ep-org:Crew . 49 rdfs:subClassOf ep-org:Crew .
50 50
51 ep-org:DrillingContractCrew 51 ep-org:DrillingContractCrew
52 - rdf:type owl:Class , ep-org:CrewType ; 52 + rdf:type ep-org:CrewType , owl:Class ;
53 rdfs:label "drilling contract crew"^^xsd:string ; 53 rdfs:label "drilling contract crew"^^xsd:string ;
54 rdfs:subClassOf ep-org:Crew . 54 rdfs:subClassOf ep-org:Crew .
55 55
56 ep-org:NonOperatorOvernightVisitorCrew 56 ep-org:NonOperatorOvernightVisitorCrew
57 - rdf:type owl:Class , ep-org:CrewType ; 57 + rdf:type ep-org:CrewType , owl:Class ;
58 rdfs:label "non-operator overnight visitor crew"^^xsd:string ; 58 rdfs:label "non-operator overnight visitor crew"^^xsd:string ;
59 rdfs:subClassOf ep-org:Crew . 59 rdfs:subClassOf ep-org:Crew .
60 60
61 ep-org:OperatorNormalCrew 61 ep-org:OperatorNormalCrew
62 - rdf:type owl:Class , ep-org:CrewType ; 62 + rdf:type ep-org:CrewType , owl:Class ;
63 rdfs:label "operator normal crew"^^xsd:string ; 63 rdfs:label "operator normal crew"^^xsd:string ;
64 rdfs:subClassOf ep-org:Crew . 64 rdfs:subClassOf ep-org:Crew .
65 65
66 ep-org:OperatorOvernightVisitorCrew 66 ep-org:OperatorOvernightVisitorCrew
67 - rdf:type owl:Class , ep-org:CrewType ; 67 + rdf:type ep-org:CrewType , owl:Class ;
68 rdfs:label "operator overnight visitor crew"^^xsd:string ; 68 rdfs:label "operator overnight visitor crew"^^xsd:string ;
69 rdfs:subClassOf ep-org:Crew . 69 rdfs:subClassOf ep-org:Crew .
70 70
71 ep-org:Organization 71 ep-org:Organization
72 rdf:type owl:Class ; 72 rdf:type owl:Class ;
73 rdfs:label "organization"^^xsd:string ; 73 rdfs:label "organization"^^xsd:string ;
74 - rdfs:subClassOf ep-org:PersonOrOrganization , <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . 74 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> , ep-org:PersonOrOrganization .
75 75
76 ep-org:Organization-WholeLife 76 ep-org:Organization-WholeLife
77 rdf:type owl:Class ; 77 rdf:type owl:Class ;
78 rdfs:label "organization - whole life"^^xsd:string ; 78 rdfs:label "organization - whole life"^^xsd:string ;
79 - rdfs:subClassOf ep-org:Organization . 79 + rdfs:subClassOf ep-org:PersonOrOrganization-WholeLife , ep-org:Organization .
80 80
81 ep-org:Person 81 ep-org:Person
82 rdf:type owl:Class ; 82 rdf:type owl:Class ;
...@@ -86,6 +86,10 @@ ep-org:PersonOrOrganization ...@@ -86,6 +86,10 @@ ep-org:PersonOrOrganization
86 rdf:type owl:Class ; 86 rdf:type owl:Class ;
87 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> . 87 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalObject> .
88 88
89 +ep-org:PersonOrOrganization-WholeLife
90 + rdf:type owl:Class ;
91 + rdfs:subClassOf ep-org:PersonOrOrganization .
92 +
89 ep-org:PersonRole 93 ep-org:PersonRole
90 rdf:type owl:Class ; 94 rdf:type owl:Class ;
91 rdfs:label "person role"^^xsd:string ; 95 rdfs:label "person role"^^xsd:string ;
...@@ -97,14 +101,14 @@ ep-org:PersonRoleType ...@@ -97,14 +101,14 @@ ep-org:PersonRoleType
97 rdfs:subClassOf owl:Class . 101 rdfs:subClassOf owl:Class .
98 102
99 ep-org:TotalCrew 103 ep-org:TotalCrew
100 - rdf:type owl:Class , ep-org:CrewType ; 104 + rdf:type ep-org:CrewType , owl:Class ;
101 rdfs:label "total crew"^^xsd:string ; 105 rdfs:label "total crew"^^xsd:string ;
102 rdfs:subClassOf ep-org:Crew . 106 rdfs:subClassOf ep-org:Crew .
103 107
104 ep-org:WholeLifePerson 108 ep-org:WholeLifePerson
105 rdf:type owl:Class ; 109 rdf:type owl:Class ;
106 rdfs:label "whole life person"^^xsd:string ; 110 rdfs:label "whole life person"^^xsd:string ;
107 - rdfs:subClassOf ep-org:Person . 111 + rdfs:subClassOf ep-org:PersonOrOrganization-WholeLife , ep-org:Person .
108 112
109 ep-org:hasCrew 113 ep-org:hasCrew
110 rdf:type owl:ObjectProperty ; 114 rdf:type owl:ObjectProperty ;
...@@ -113,7 +117,7 @@ ep-org:hasCrew ...@@ -113,7 +117,7 @@ ep-org:hasCrew
113 rdfs:range ep-org:Crew . 117 rdfs:range ep-org:Crew .
114 118
115 ep-org:numberInCrew 119 ep-org:numberInCrew
116 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; 120 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
117 rdfs:domain ep-org:Crew ; 121 rdfs:domain ep-org:Crew ;
118 rdfs:label "number in crew"^^xsd:string . 122 rdfs:label "number in crew"^^xsd:string .
119 123
......
This diff could not be displayed because it is too large.