Relationships
Data license: MIT · Data source: jebboone/deitydb
- subject_entity_id
- {'description': 'The entity initiating or holding the relationship'}
- relationship_type
- {'description': 'Typed relationship from the controlled vocabulary (see relationship_types table)'}
- object_entity_id
- {'description': 'The entity receiving or targeted by the relationship'}
- confidence
- {'description': 'high / medium / low / speculative'}
- rationale
- {'description': 'Scholarly justification for the relationship, with source citations'}
- source_id
- {'description': 'Primary source justifying this relationship'}
- period_id
- {'description': 'Historical period in which this relationship is attested (null = all periods)'}
6 rows where object_entity_id = "ENT_HTT_TARHUNNA"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id, review_status, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1474 | Teshub ENT_HTT_TESHUB | identified_with | Tarhunna ENT_HTT_TARHUNNA | high | The Hurrian storm god Teshub and the Hittite storm god Tarhunna are closely identified throughout the syncretized Hittite-Hurrian religious tradition. At the Yazilikaya open-air sanctuary (c. 1250 BCE), the two traditions' storm deities appear together, effectively as the same divine power under different names. Hittite treaty texts and prayers use the names interchangeably or in paired formulae. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | reviewed | Hittite Empire Period PER_HTT_EMPIRE |
| 1538 | Inaras ENT_HTT_INARAS | guides | Tarhunna ENT_HTT_TARHUNNA | high | In the first version of the Illuyanka myth (CTH 321 §§1-8), Inaras devises and executes the strategy that allows Tarhunna (the storm god) to defeat Illuyanka: she prepares the feast that lures the serpent into vulnerability and recruits the mortal Hupasiya to bind him. Tarhunna's victory over Illuyanka is explicitly enabled by Inaras's cunning rather than the storm god's direct power alone. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | reviewed | Hittite Empire Period PER_HTT_EMPIRE |
| 2101 | Sun Goddess of Arinna ENT_HTT_ARINNA | paired_with | Tarhunna ENT_HTT_TARHUNNA | high | Hoffner, Hittite Myths: the Sun Goddess of Arinna and the Storm God Tarhunna are the royal divine couple of the Hittite pantheon; she is "Queen of Heaven and Earth" and "mistress of the Hittite lands." | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | approved | |
| 2353 | Teisheba ENT_URA_TEISHEBA | aligned_with | Tarhunna ENT_HTT_TARHUNNA | high | Teisheba and Hittite Tarhunna are parallel thunder deities of neighbouring Anatolian traditions — both derive from the same deep Anatolian storm-deity complex (Proto-Anatolian *tarḫu-, "to conquer/prevail"). They occupy the same second-rank position in their divine triads and share the bull iconography. The alignment reflects the broad Anatolian storm-deity tradition that also includes Ugaritic Baal, Mesopotamian Adad, and later Zeus. Zimansky (1985) p. 69. | Paul E. Zimansky, Ecology and Empire: The Structure of the Urartian State (Studies in Ancient Oriental Civilization 41; Oriental Institute of the University of Chicago, Chicago, 1985) SRC_ZIMANSKY_URARTU | reviewed | Kingdom of Urartu PER_URA_IRON_AGE |
| 3159 | Tarhunz ENT_LUW_TARHUNZ | aligned_with | Tarhunna ENT_HTT_TARHUNNA | high | Tarhunz is the Luwian form of the storm-god, cognate of the Hittite Tarhunna. | Piotr Taracha, Religions of Second Millennium Anatolia (Dresdner Beiträge zur Hethitologie 27; Harrassowitz Verlag, Wiesbaden, 2009) SRC_TARACHA_ANATOLIA | reviewed | |
| 7280 | Trqqas ENT_LYC_TRQQAS | equated_with | Tarhunna ENT_HTT_TARHUNNA | medium | Trqqas continues the wider Anatolian storm-god Tarhunt, of which Hittite Tarhunna is the cognate. | Bryce, Trevor R. The Lycians: A Study of Lycian History and Civilisation to the Conquest of Macedonia (Vol. 1, The Lycians in Literary and Epigraphic Sources) SRC_BRYCE_LYCIANS | reviewed |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "entity_relationships" (
[relationship_id] INTEGER PRIMARY KEY,
[subject_entity_id] TEXT REFERENCES [entities]([entity_id]),
[relationship_type] TEXT REFERENCES [relationship_types]([relationship_type]),
[object_entity_id] TEXT REFERENCES [entities]([entity_id]),
[confidence] TEXT,
[rationale] TEXT,
[source_id] TEXT REFERENCES [sources]([source_id]),
[review_status] TEXT,
[period_id] TEXT REFERENCES [periods]([period_id])
);
CREATE INDEX [idx_entity_relationships_period_id]
ON [entity_relationships] ([period_id]);
CREATE INDEX [idx_entity_relationships_source_id]
ON [entity_relationships] ([source_id]);
CREATE INDEX [idx_entity_relationships_object_entity_id]
ON [entity_relationships] ([object_entity_id]);
CREATE INDEX [idx_entity_relationships_relationship_type]
ON [entity_relationships] ([relationship_type]);
CREATE INDEX [idx_entity_relationships_subject_entity_id]
ON [entity_relationships] ([subject_entity_id]);