MonkeyChap

Added ships and boats

1 -# Saved by TopBraid on Tue Oct 11 19:15:55 BST 2011 1 +# Saved by TopBraid on Wed Oct 12 19:46:30 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/organization 3 # imports: http://www.reportinghub.no/ep/schema/1.0/organization
4 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 4 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
...@@ -12,15 +12,31 @@ ...@@ -12,15 +12,31 @@
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/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> ;
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/facility#facilityOperator> 18 <http://www.reportinghub.no/ep/schema/facility#facilityOperator>
19 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 19 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
20 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; 20 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
21 rdfs:label "facility operator"^^xsd:string ; 21 rdfs:label "facility operator"^^xsd:string ;
22 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . 22 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
23 23
24 +ep-prodfac:Boat
25 + rdf:type owl:Class ;
26 + rdfs:subClassOf ep-prodfac:ShipOrBoat .
27 +
28 +ep-prodfac:Ship
29 + rdf:type owl:Class ;
30 + rdfs:subClassOf ep-prodfac:ShipOrBoat .
31 +
32 +ep-prodfac:ShipOrBoat
33 + rdf:type owl:Class ;
34 + rdfs:subClassOf ep-prodfac:TemporalPartOfAShipOrBoat .
35 +
36 +ep-prodfac:TemporalPartOfAShipOrBoat
37 + rdf:type owl:Class ;
38 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
39 +
24 ep-prodfac:numberOfBedsAvailable 40 ep-prodfac:numberOfBedsAvailable
25 rdf:type owl:DatatypeProperty ; 41 rdf:type owl:DatatypeProperty ;
26 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; 42 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
......