-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelation.ttl
More file actions
219 lines (181 loc) · 8.51 KB
/
relation.ttl
File metadata and controls
219 lines (181 loc) · 8.51 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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
@prefix plato: <https://w3id.org/plato#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix whgx: <https://whgazetteer.org/example/> .
# The "whgx:" prefix is used throughout these examples for illustrative
# URIs that represent WHG entities (Things, Attestations, Sources, etc.).
# In a production system these would be real, resolvable WHG identifiers.
# External URIs that already exist are used directly.
# =============================================================================
# Thing-to-Thing relation with meta-attestation
#
# Scenario: A scholar attests that Karakorum was the capital of the Mongol
# Empire during a particular period, based on Rashid al-Din's Compendium
# of Chronicles. A second scholar creates a meta-attestation noting that
# this is disputed — some sources suggest the capital function moved to
# Shangdu (Xanadu) earlier than conventionally dated.
#
# This demonstrates:
# 1. Thing-to-Thing relations via RelationType authorities
# 2. Meta-attestations modelling scholarly disagreement
# =============================================================================
# -----------------------------------------------------------------------------
# Things
# -----------------------------------------------------------------------------
whgx:thing/karakorum
a plato:Thing ;
plato:thing_identifier "whg:karakorum" ;
plato:namespace "whg" ;
plato:ccodes "MN" .
whgx:thing/mongol-empire
a plato:Thing ;
plato:thing_identifier "whg:mongol-empire" ;
plato:namespace "whg" .
# -----------------------------------------------------------------------------
# RelationType: capital_of
# -----------------------------------------------------------------------------
whgx:reltype/capital-of
a plato:RelationType ;
plato:authority_title "capital of" ;
plato:relation_label "capital_of" ;
plato:inverse_label "has_capital" ;
plato:relation_domain "settlement" ;
plato:relation_range "polity" .
# -----------------------------------------------------------------------------
# Names (for context — each would have its own attestations elsewhere,
# but included here to make the example readable)
# -----------------------------------------------------------------------------
whgx:name/karakorum-mn
a plato:Name ;
plato:toponym "Каракорум" ;
plato:language "mn" ;
plato:script "Cyrl" ;
plato:romanized "Karakorum" ;
plato:name_type "toponym" .
whgx:name/mongol-empire-en
a plato:Name ;
plato:toponym "Mongol Empire" ;
plato:language "en" ;
plato:script "Latn" ;
plato:name_type "toponym" .
# -----------------------------------------------------------------------------
# Timespan
# -----------------------------------------------------------------------------
whgx:timespan/karakorum-capital
a plato:Timespan ;
plato:start_earliest "1230" ;
plato:start_latest "1240" ;
plato:end_earliest "1256" ;
plato:end_latest "1263" ;
plato:start_precision "decade" ;
plato:end_precision "decade" ;
plato:timespan_label "Karakorum as Mongol capital (uncertain dates)" .
# -----------------------------------------------------------------------------
# Sources
# -----------------------------------------------------------------------------
whgx:source/rashid-al-din
a plato:Source ;
plato:authority_title "Jami' al-tawarikh (Compendium of Chronicles)" ;
plato:bibliographic_string "Rashid al-Din, Jami' al-tawarikh, c. 1307. Ed. and trans. W.M. Thackston, 1998." ;
plato:partOf whgx:dataset/mongol-sources .
whgx:source/allsen-2001
a plato:Source ;
plato:authority_title "Culture and Conquest in Mongol Eurasia" ;
plato:bibliographic_string "Allsen, T.T. (2001). Culture and Conquest in Mongol Eurasia. Cambridge University Press." ;
plato:partOf whgx:dataset/mongol-secondary .
whgx:dataset/mongol-sources
a plato:Dataset ;
plato:authority_title "Primary Sources for the Mongol Empire" .
whgx:dataset/mongol-secondary
a plato:Dataset ;
plato:authority_title "Secondary Literature on the Mongol Empire" .
# -----------------------------------------------------------------------------
# Contributors
# -----------------------------------------------------------------------------
whgx:org/central-asian-studies
a plato:Organization ;
rdfs:label "Central Asian Studies Program" .
whgx:org/tcnj
a plato:Organization ;
rdfs:label "College of New Jersey" .
whgx:contributor/scholar-a
a plato:Contributor ;
plato:contributor_name "David Morgan" ;
plato:contributor_orcid "https://orcid.org/0000-0001-2345-6789" ;
plato:contributor_affiliation whgx:org/central-asian-studies ;
plato:contributor_role "principal_investigator" .
whgx:contributor/scholar-b
a plato:Contributor ;
plato:contributor_name "Thomas Allsen" ;
plato:contributor_orcid "https://orcid.org/0000-0002-3456-7890" ;
plato:contributor_affiliation whgx:org/tcnj ;
plato:contributor_role "external_contributor" .
# -----------------------------------------------------------------------------
# Attestation: Karakorum was capital of the Mongol Empire, 1235–1260
#
# This attestation uses both plato:attests_about (the subject Thing) and
# plato:relates_to (the target Thing), with plato:has_relation_type
# specifying the nature of the relationship.
# -----------------------------------------------------------------------------
whgx:attestation/karakorum-capital
a plato:Attestation ;
plato:attests_about whgx:thing/karakorum ;
plato:relates_to whgx:thing/mongol-empire ;
plato:has_relation_type whgx:reltype/capital-of ;
plato:attests_timespan whgx:timespan/karakorum-capital ;
plato:sourced_by whgx:source/rashid-al-din ;
plato:contributed_by whgx:contributor/scholar-a ;
plato:certainty 0.85 ;
plato:certainty_note "Well attested in Rashid al-Din, though exact dates of capital status are debated." ;
plato:created "2026-02-15T14:00:00Z"^^xsd:dateTime .
# -----------------------------------------------------------------------------
# Meta-attestation: Scholar B disputes the end date
#
# This is an Attestation whose plato:meta_attestation_about points to the
# original attestation. It does not replace or delete the original —
# both coexist, representing the state of scholarly debate.
# -----------------------------------------------------------------------------
whgx:attestation/karakorum-dispute
a plato:Attestation ;
plato:meta_attestation_about whgx:attestation/karakorum-capital ;
plato:has_meta_type whgx:meta-type/refines ;
plato:sourced_by whgx:source/allsen-2001 ;
plato:contributed_by whgx:contributor/scholar-b ;
plato:certainty 0.7 ;
plato:notes """
Allsen argues that the capital function began shifting to Shangdu
as early as 1256, before Kublai Khan's formal establishment there
in 1263. The end date of 1260 for Karakorum's capital status may
therefore be too late — the transition was gradual rather than a
discrete event.
""" ;
plato:created "2026-02-15T16:00:00Z"^^xsd:dateTime .
# Meta-attestation type as SKOS concept
whgx:meta-type/refines
a skos:Concept ;
skos:prefLabel "refines"@en ;
skos:definition "Provides more precise information than the target attestation"@en .
# =============================================================================
# Observations
#
# 1. The relation "capital_of" is not hard-coded in the ontology. It is a
# RelationType authority that can be created by any project. The ontology
# provides the mechanism (plato:relates_to + plato:has_relation_type);
# the vocabulary grows organically.
#
# 2. The meta-attestation does not delete or replace the original. Both
# attestations are visible. A query for "what was the capital of the
# Mongol Empire?" returns both, with their respective certainty values,
# sources, and notes. The system preserves scholarly disagreement rather
# than forcing a single answer.
#
# 3. Scholar B's meta-attestation has type "refines" rather than
# "contradicts" — the dispute is about dating, not about whether
# Karakorum was ever a capital. The meta-type vocabulary allows
# this nuance.
#
# 4. If Scholar B wanted to propose an alternative end date, they could
# create a separate attestation for the same relation with a different
# Timespan (e.g. 1235–1256), rather than modifying Scholar A's
# attestation. Both would coexist.
# =============================================================================