David Leal

added rdfs:labels for the class DailyDrillingReport and its subclasses

1 -# Saved by TopBraid on Tue Sep 27 13:03:12 BST 2011 1 +# Saved by TopBraid on Wed Sep 28 16:02:41 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/report 2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/report
3 -# imports: http://www.reportinghub.no/ep/schema/1.0/core
4 # imports: http://www.reportinghub.no/ep/schema/1.0/well 3 # imports: http://www.reportinghub.no/ep/schema/1.0/well
4 +# imports: http://www.reportinghub.no/ep/schema/1.0/core
5 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment 5 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment
6 # imports: http://www.reportinghub.no/ep/schema/1.0/activity 6 # imports: http://www.reportinghub.no/ep/schema/1.0/activity
7 7
...@@ -14,11 +14,12 @@ ...@@ -14,11 +14,12 @@
14 14
15 <http://www.reportinghub.no/ep/schema/1.0/report> 15 <http://www.reportinghub.no/ep/schema/1.0/report>
16 rdf:type owl:Ontology ; 16 rdf:type owl:Ontology ;
17 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/activity> ; 17 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/well> ;
18 owl:versionInfo "0.1.0"^^xsd:string . 18 owl:versionInfo "0.1.0"^^xsd:string .
19 19
20 ep-report:DailyDrillingReport 20 ep-report:DailyDrillingReport
21 rdf:type owl:Class ; 21 rdf:type owl:Class ;
22 + rdfs:label "daily drilling report"^^xsd:string ;
22 rdfs:subClassOf ep-report:Report . 23 rdfs:subClassOf ep-report:Report .
23 24
24 ep-report:DailyDrillingReportFinalisationType 25 ep-report:DailyDrillingReportFinalisationType
...@@ -26,7 +27,8 @@ ep-report:DailyDrillingReportFinalisationType ...@@ -26,7 +27,8 @@ ep-report:DailyDrillingReportFinalisationType
26 rdfs:subClassOf owl:Class . 27 rdfs:subClassOf owl:Class .
27 28
28 ep-report:FinalDailyDrillingReport 29 ep-report:FinalDailyDrillingReport
29 - rdf:type owl:Class , ep-report:DailyDrillingReportFinalisationType ; 30 + rdf:type ep-report:DailyDrillingReportFinalisationType , owl:Class ;
31 + rdfs:label "final daily drilling report"^^xsd:string ;
30 rdfs:subClassOf ep-report:DailyDrillingReport . 32 rdfs:subClassOf ep-report:DailyDrillingReport .
31 33
32 ep-report:NonProductivetimeReport 34 ep-report:NonProductivetimeReport
...@@ -34,8 +36,13 @@ ep-report:NonProductivetimeReport ...@@ -34,8 +36,13 @@ ep-report:NonProductivetimeReport
34 rdfs:subClassOf ep-report:Report ; 36 rdfs:subClassOf ep-report:Report ;
35 rdfs:subClassOf 37 rdfs:subClassOf
36 [ rdf:type owl:Restriction ; 38 [ rdf:type owl:Restriction ;
39 + owl:allValuesFrom xsd:dateTime ;
40 + owl:onProperty ep-report:createdAt
41 + ] ;
42 + rdfs:subClassOf
43 + [ rdf:type owl:Restriction ;
37 owl:cardinality "1"^^xsd:nonNegativeInteger ; 44 owl:cardinality "1"^^xsd:nonNegativeInteger ;
38 - owl:onProperty ep-report:reportOn 45 + owl:onProperty ep-report:createdAt
39 ] ; 46 ] ;
40 rdfs:subClassOf 47 rdfs:subClassOf
41 [ rdf:type owl:Restriction ; 48 [ rdf:type owl:Restriction ;
...@@ -45,24 +52,22 @@ ep-report:NonProductivetimeReport ...@@ -45,24 +52,22 @@ ep-report:NonProductivetimeReport
45 rdfs:subClassOf 52 rdfs:subClassOf
46 [ rdf:type owl:Restriction ; 53 [ rdf:type owl:Restriction ;
47 owl:cardinality "1"^^xsd:nonNegativeInteger ; 54 owl:cardinality "1"^^xsd:nonNegativeInteger ;
48 - owl:onProperty ep-report:createdAt 55 + owl:onProperty ep-report:reportOn
49 - ] ;
50 - rdfs:subClassOf
51 - [ rdf:type owl:Restriction ;
52 - owl:allValuesFrom xsd:dateTime ;
53 - owl:onProperty ep-report:createdAt
54 ] . 56 ] .
55 57
56 ep-report:NormalDailyDrillingReport 58 ep-report:NormalDailyDrillingReport
57 - rdf:type owl:Class , ep-report:DailyDrillingReportFinalisationType ; 59 + rdf:type ep-report:DailyDrillingReportFinalisationType , owl:Class ;
60 + rdfs:label "normal daily drilling report"^^xsd:string ;
58 rdfs:subClassOf ep-report:DailyDrillingReport . 61 rdfs:subClassOf ep-report:DailyDrillingReport .
59 62
60 ep-report:PreliminaryDailyDrillingReport 63 ep-report:PreliminaryDailyDrillingReport
61 - rdf:type owl:Class , ep-report:DailyDrillingReportFinalisationType ; 64 + rdf:type ep-report:DailyDrillingReportFinalisationType , owl:Class ;
65 + rdfs:label "preliminary daily drilling report"^^xsd:string ;
62 rdfs:subClassOf ep-report:DailyDrillingReport . 66 rdfs:subClassOf ep-report:DailyDrillingReport .
63 67
64 ep-report:Report 68 ep-report:Report
65 rdf:type owl:Class ; 69 rdf:type owl:Class ;
70 + rdfs:label "report"^^xsd:string ;
66 rdfs:subClassOf owl:Thing . 71 rdfs:subClassOf owl:Thing .
67 72
68 ep-report:WeeklyDrillingReport 73 ep-report:WeeklyDrillingReport
...@@ -70,32 +75,32 @@ ep-report:WeeklyDrillingReport ...@@ -70,32 +75,32 @@ ep-report:WeeklyDrillingReport
70 rdfs:subClassOf ep-report:Report ; 75 rdfs:subClassOf ep-report:Report ;
71 rdfs:subClassOf 76 rdfs:subClassOf
72 [ rdf:type owl:Restriction ; 77 [ rdf:type owl:Restriction ;
73 - owl:cardinality "1"^^xsd:nonNegativeInteger ; 78 + owl:allValuesFrom ep-report:DailyDrillingReport ;
74 - owl:onProperty ep-report:createdAt 79 + owl:onProperty ep-report:reportOn
75 ] ; 80 ] ;
76 rdfs:subClassOf 81 rdfs:subClassOf
77 [ rdf:type owl:Restriction ; 82 [ rdf:type owl:Restriction ;
78 - owl:allValuesFrom xsd:dateTime ; 83 + owl:cardinality "7"^^xsd:nonNegativeInteger ;
79 - owl:onProperty ep-report:createdAt 84 + owl:onProperty ep-report:reportOn
80 ] ; 85 ] ;
81 rdfs:subClassOf 86 rdfs:subClassOf
82 [ rdf:type owl:Restriction ; 87 [ rdf:type owl:Restriction ;
83 - owl:cardinality "7"^^xsd:nonNegativeInteger ; 88 + owl:allValuesFrom xsd:dateTime ;
84 - owl:onProperty ep-report:reportOn 89 + owl:onProperty ep-report:createdAt
85 ] ; 90 ] ;
86 rdfs:subClassOf 91 rdfs:subClassOf
87 [ rdf:type owl:Restriction ; 92 [ rdf:type owl:Restriction ;
88 - owl:allValuesFrom ep-report:DailyDrillingReport ; 93 + owl:cardinality "1"^^xsd:nonNegativeInteger ;
89 - owl:onProperty ep-report:reportOn 94 + owl:onProperty ep-report:createdAt
90 ] . 95 ] .
91 96
92 ep-report:createdAt 97 ep-report:createdAt
93 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 98 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
94 rdfs:domain ep-report:Report ; 99 rdfs:domain ep-report:Report ;
95 rdfs:label "created at"^^xsd:string . 100 rdfs:label "created at"^^xsd:string .
96 101
97 ep-report:dailyDrillingReportNumber 102 ep-report:dailyDrillingReportNumber
98 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 103 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
99 rdfs:domain ep-report:DailyDrillingReport ; 104 rdfs:domain ep-report:DailyDrillingReport ;
100 rdfs:label "daily drilling report number"^^xsd:string . 105 rdfs:label "daily drilling report number"^^xsd:string .
101 106
...@@ -106,12 +111,12 @@ ep-report:datumObjectForDailyDrillingReport ...@@ -106,12 +111,12 @@ ep-report:datumObjectForDailyDrillingReport
106 rdfs:range ep-core:PhysicalObject . 111 rdfs:range ep-core:PhysicalObject .
107 112
108 ep-report:hasContent 113 ep-report:hasContent
109 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 114 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
110 rdfs:domain ep-report:Report ; 115 rdfs:domain ep-report:Report ;
111 rdfs:label "has content"^^xsd:string . 116 rdfs:label "has content"^^xsd:string .
112 117
113 ep-report:nameAsDatumObject 118 ep-report:nameAsDatumObject
114 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 119 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
115 rdfs:domain ep-core:PhysicalObject ; 120 rdfs:domain ep-core:PhysicalObject ;
116 rdfs:label "name as datum object"^^xsd:string . 121 rdfs:label "name as datum object"^^xsd:string .
117 122
......