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)'}
5 rows where subject_entity_id = "ENT_HTT_TESHUB"
This data as json, CSV (advanced)
Suggested facets: source_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 |
| 1480 | Teshub ENT_HTT_TESHUB | received_as | Zeus ENT_ZEUS | high | Teshub and Zeus share the role of the storm deity champion who defeats a monstrous adversary (Ullikummi/Typhon) and the usurper predecessor (Kumarbi/Kronos) to establish the current divine order. West (1997) documents that the narrative structure of Zeus's ascent in Hesiod's Theogony follows the Kumarbi cycle more closely than any other Near Eastern text. Both Teshub and Zeus also create an ordered cosmos out of the pre-existing chaos. The transmission pathway runs through Anatolian-Ionian Greek contact in the Archaic period. | Martin L. West, The East Face of Helicon: West Asiatic Elements in Greek Poetry and Myth (Oxford: Clarendon Press, 1997) SRC_WEST_EAST_HELICON | reviewed | Archaic Period PER_GRK_ARCHAIC |
| 5955 | Teshub ENT_HTT_TESHUB | member_of | The Hittite Pantheon ENT_HTT_PANTHEON | high | Teshub is the Hurrian/Hittite chief storm-god, head of the imperial pantheon. | Walter Burkert, The Orientalizing Revolution: Near Eastern Influence on Greek Culture in the Early Archaic Age (Harvard University Press, 1992) SRC_BURKERT_ORIENT_REV | reviewed | |
| 5977 | Teshub ENT_HTT_TESHUB | child_of | Kumarbi ENT_HTT_KUMARBI | high | Kumarbi-cycle succession: Teshub is born from Kumarbi (who swallowed Anu's seed). | Walter Burkert, The Orientalizing Revolution: Near Eastern Influence on Greek Culture in the Early Archaic Age (Harvard University Press, 1992) SRC_BURKERT_ORIENT_REV | reviewed | |
| 5978 | Teshub ENT_HTT_TESHUB | consort_of | Hepat ENT_HTT_HEPAT | high | Hepat is the standard consort of Teshub (the Hepat-Teshub pair). | Walter Burkert, The Orientalizing Revolution: Near Eastern Influence on Greek Culture in the Early Archaic Age (Harvard University Press, 1992) SRC_BURKERT_ORIENT_REV | 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]);