location.rdf
2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0"?>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:locat="http://www.example.org/ontologies/location#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<rdfs:Class rdf:about="http://www.example.org/ontologies/location#Continent">
<rdfs:comment/>
</rdfs:Class>
<rdfs:Class rdf:about="http://www.example.org/ontologies/location#Country">
<rdfs:comment/>
</rdfs:Class>
<rdfs:Class rdf:about="http://www.example.org/ontologies/location#City">
<rdfs:comment/>
</rdfs:Class>
<rdfs:Class rdf:about="http://www.example.org/ontologies/location#State">
<rdfs:comment/>
</rdfs:Class>
<rdfs:Class rdf:about="http://www.example.org/ontologies/location#Province">
<rdfs:comment/>
</rdfs:Class>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#belongs_to_State">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:domain rdf:resource="http://www.example.org/ontologies/location#City"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#State"/>
</rdf:Property>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#belongs_to_Country">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:domain rdf:resource="http://www.example.org/ontologies/location#City"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#Country"/>
</rdf:Property>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#located_in_Continent">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#Continent"/>
</rdf:Property>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#located_in_Country">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#Country"/>
</rdf:Property>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#located_in_City">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#City"/>
</rdf:Property>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#located_in_State">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#State"/>
</rdf:Property>
<rdf:Property rdf:about="http://www.example.org/ontologies/location#located_in_Province">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-schema#Property"/>
<rdfs:range rdf:resource="http://www.example.org/ontologies/location#Province"/>
</rdf:Property>
</rdf:RDF>