MonkeyChap

Added count properties for facilities

1 -# Saved by TopBraid on Sat Oct 08 14:18:19 BST 2011 1 +# Saved by TopBraid on Tue Oct 11 10:16:15 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-facility 2 # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-facility
3 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 3 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
4 4
...@@ -12,3 +12,48 @@ ...@@ -12,3 +12,48 @@
12 rdf:type owl:Ontology ; 12 rdf:type owl:Ontology ;
13 owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> ; 13 owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> ;
14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
15 +
16 +ep-prodfac:numberOfBedsAvailable
17 + rdf:type owl:DatatypeProperty ;
18 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
19 + rdfs:range xsd:integer .
20 +
21 +ep-prodfac:numberOfCateringCrew
22 + rdf:type owl:DatatypeProperty ;
23 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
24 + rdfs:range xsd:integer .
25 +
26 +ep-prodfac:numberOfContractorCrew
27 + rdf:type owl:DatatypeProperty ;
28 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
29 + rdfs:range xsd:integer .
30 +
31 +ep-prodfac:numberOfDayVisitors
32 + rdf:type owl:DatatypeProperty ;
33 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
34 + rdfs:range xsd:integer .
35 +
36 +ep-prodfac:numberOfDrillingContractCrew
37 + rdf:type owl:DatatypeProperty ;
38 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
39 + rdfs:range xsd:integer .
40 +
41 +ep-prodfac:numberOfOtherCrew
42 + rdf:type owl:DatatypeProperty ;
43 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
44 + rdfs:range xsd:integer .
45 +
46 +ep-prodfac:numberOfOwnCrew
47 + rdf:type owl:DatatypeProperty ;
48 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
49 + rdfs:range xsd:integer .
50 +
51 +ep-prodfac:numberOfOwnOtherCrew
52 + rdf:type owl:DatatypeProperty ;
53 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
54 + rdfs:range xsd:integer .
55 +
56 +ep-prodfac:numberOfPersonnelOnBoard
57 + rdf:type owl:DatatypeProperty ;
58 + rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
59 + rdfs:range xsd:integer .
......