-
Notifications
You must be signed in to change notification settings - Fork 0
/
awo.owl
172 lines (172 loc) · 6.92 KB
/
awo.owl
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF
[
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
]>
<rdf:RDF xmlns="http://example.org/awo#"
xml:base="http://example.org/awo#"
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:schema="http://schema.org/docs/schemaorg.owls"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" >
<owl:Ontology rdf:about="">
<owl:versionInfo xml:lang="en">v.00 creation through first mucking about. not stable</owl:versionInfo>
<rdfs:comment xml:lang="en">An ontology for the Ancient World.</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////
//
// AWO Object Properties
//
///////////////////////////////////////////////////////////////////////////
-->
<owl:TransitiveProperty rdf:about="#is">
<rdfs:domain="&owl;Thing"/>
<rdfs:range="&owl;Thing"/>
</owl:TransitiveProperty>
<owl:ObjectProperty rdf:about="#is_not">
<!-- not used yet but here as a placeholder for an idea -->
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////
//
// OWL Classes
//
///////////////////////////////////////////////////////////////////////////
-->
<owl:Class rdf:about="#Office_Holder">
<rdfs:label xml:lang="en">Office Holder</rdfs:label>
</owl:Class>
<owl:Class rdf:about="#Roman_Office_Holder">
<rdfs:label xml:lang="en">Roman Office Holder</rdfs:label>
<rdfs:subClassOf rdf:resource="#Office_Holder" />
</owl:Class>
<owl:Class rdf:about="#Roman_Imperial_Office_Holder">
<rdfs:label xml:lang="en">Roman Imperial Office Holder</rdfs:label>
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="#is" />
<owl:hasValue rdf:resource="#Roman_Emperor" />
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="#Roman_Office_Holder" />
</owl:Class>
<owl:Class rdf:about="#Roman_Republican_Office_Holder">
<rdfs:label xml:lang="en">Roman Imperial Office Holder</rdfs:label>
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="#is" />
<owl:hasValue rdf:resource="#Roman_Dictator" />
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="#Roman_Office_Holder" />
</owl:Class>
<owl:Class rdf:about="#Roman_Religious_Office_Holder">
<rdfs:label xml:lang="en">Roman Religious Office Holder</rdfs:label>
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="#is" />
<owl:hasValue rdf:resource="#Pontifex_Maximus" />
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="#Roman_Office_Holder" />
</owl:Class>
<owl:Class rdf:about="#Office">
<rdfs:label>Any office</rdfs:label>
<rdfs:comment>Any position that is defined/sponsored by a political or other entity.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="#Roman_Office">
<rdfs:subClassOf rdf:resource="#Office" />
</owl:Class>
<owl:Class rdf:about="#Roman_Imperial_Office">
<rdfs:subClassOf rdf:resource="#Roman_Office" />
</owl:Class>
<owl:Class rdf:about="#Roman_Republican_Office">
<rdfs:subClassOf rdf:resource="#Roman_Office" />
</owl:Class>
<owl:Class rdf:about="#MaterialClassificationScheme">
<rdfs:subClassOf rdf:resource="&skos;Concept" />
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////
//
// OWL Individuals
//
///////////////////////////////////////////////////////////////////////////
-->
<!--
///////////////////////////////////////////////////////////////////////////
//
// Schema.org Person
//
///////////////////////////////////////////////////////////////////////////
-->
<owl:Thing rdf:about="#Augustus">
<rdfs:label>Augustus</rdfs:label>
<rdf:type rdf:resource="http://schema.org/Person" />
<schema:birthDate>-0063-09-23</schema:birthDate>
<is rdf:resource="#Roman_Emperor" />
<is rdf:resource="#Pontifex_Maximus" />
<is rdf:resource="#Tribune" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/Augustus" />
<owl:sameAs rdf:resource="http://viaf.org/viaf/18013086" />
</owl:Thing>
<owl:Thing rdf:about="#Lucius_Cornelius_Sulla">
<rdfs:label>Lucius Cornelius Sulla</rdfs:label>
<rdf:type rdf:resource="http://schema.org/Person" />
<is rdf:resource="#Roman_Dictator" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/Lucius_Cornelius_Sulla" />
<owl:sameAs rdf:resource="http://viaf.org/viaf/84037378" />
</owl:Thing>
<owl:Thing rdf:about="#Ptolemy">
<rdfs:label>Ptolemy</rdfs:label>
<rdf:type rdf:resource="http://schema.org/Person" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/Ptolemy" />
<owl:sameAs rdf:resource="http://viaf.org/viaf/54152998" />
<is rdf:resource="#Astronmer"/>
</owl:Thing>
<!--
///////////////////////////////////////////////////////////////////////////
//
// awo Anciently Attested Offices and Offices Defined by Modern Scholarship
// also other "roles" defined in Wikipedia
//
///////////////////////////////////////////////////////////////////////////
-->
<owl:Thing rdf:about="#Astronomer">
<rdfs:label xml:lang="en">Astronomer</rdfs:label>
<owl:sameAs rdf:resource="http://dbpedia.org/page/Astronomer" />
</owl:Thing>
<owl:Thing rdf:about="#Pontifex_Maximus">
<rdfs:label xml:lang="latin">Pontifex Maximus</rdfs:label>
<rdf:type rdf:resource="Roman_Religious_Office" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/Pontifex_Maximus" />
</owl:Thing>
<owl:Thing rdf:about="#Roman_Dictator">
<rdfs:label xml:lang="en">Roman Dictator</rdfs:label>
<rdf:type rdf:resource="#Roman_Republican_Office" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/Roman_Dictator" />
</owl:Thing>
<owl:Thing rdf:about="#Roman_Emperor">
<rdfs:label xml:lang="en">Roman Emperor</rdfs:label>
<rdf:type rdf:resource="#Roman_Imperial_Office" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/Roman_Emperor" />
</owl:Thing>
<!--
///////////////////////////////////////////////////////////////////////////
//
// awo Modern Material Classification Schemes
//
///////////////////////////////////////////////////////////////////////////
-->
<owl:Thing rdf:about="#African_red_slip">
<rdfs:label xml:lang="en">African Red Slip</rdfs:label>
<rdf:type rdf:resource="#MaterialClassificationScheme" />
<owl:sameAs rdf:resource="http://dbpedia.org/page/African_red_slip" />
</owl:Thing>
</rdf:RDF>