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)'}
12 rows where subject_entity_id = "ENT_EGY_THOTH"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 249 | Thoth ENT_EGY_THOTH | paired_with | Isis ENT_EGY_ISIS | medium | Thoth and Isis both occupy major magical and healing roles. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 250 | Thoth ENT_EGY_THOTH | paired_with | Khonsu ENT_EGY_KHONSU | medium | Thoth and Khonsu share lunar associations. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 251 | Thoth ENT_EGY_THOTH | judges | Maat ENT_EGY_MAAT | high | Thoth and Maat are closely linked in judgment, truth, and cosmic order. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 254 | Thoth ENT_EGY_THOTH | paired_with | Seshat ENT_EGY_SESHAT | high | Thoth and Seshat share writing, record-keeping, and measurement domains. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 299 | Thoth ENT_EGY_THOTH | judges | Dead ENT_DEAD | medium | Thoth records or mediates judgment of the dead. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 356 | Thoth ENT_EGY_THOTH | patron_of | Writing ENT_WRITING | high | Thoth is a major Egyptian god of writing and scribal knowledge. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 360 | Thoth ENT_EGY_THOTH | patron_of | Magic ENT_MAGIC | high | Thoth is strongly associated with magic, writing, and ritual knowledge. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 378 | Thoth ENT_EGY_THOTH | embodies | Justice ENT_JUSTICE | medium | Thoth participates in judgment, record keeping, and order. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 435 | Thoth ENT_EGY_THOTH | patron_of | Speech ENT_SPEECH | medium | Thoth is associated with writing, knowledge, and sacred/authoritative expression. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 1335 | Thoth ENT_EGY_THOTH | received_as | Hermes Trismegistus ENT_HER_TRISMEGISTUS | high | Egyptian Thoth received as Hermes Trismegistus in Hellenistic interpretatio; Thoth's roles as scribe, wisdom deity, and master of magic were absorbed into the Hermetic figure. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | Hermetic Hellenistic Period PER_HER_HELLENISTIC |
| 1651 | Thoth ENT_EGY_THOTH | paired_with | Sia ENT_EGY_SIA | medium | Thoth and Sia are paired cognitive deities on the solar barque; Thoth provides knowledge/recording, Sia provides perception/understanding. Book of the Dead ch. 17. | R. O. Faulkner, The Ancient Egyptian Pyramid Texts (Oxford University Press, 1969; repr. Aris & Phillips, 1998) SRC_FAULKNER_PYRAMID_TEXTS | reviewed | |
| 2433 | Thoth ENT_EGY_THOTH | patron_of | Ogdoad ENT_EGY_OGDOAD | medium | Thoth is the patron deity of Hermopolis Magna (khmun, the City of the Eight), the city whose name, cosmological identity, and central religious system are the Ogdoad. The Hermopolitan tradition in some versions makes Thoth the active creative agent who gives voice to the Ogdoad's latent primordial forces — he is the divine Logos/Word who speaks the creator into existence from the primordial waters stirred by the Ogdoad. In one version of the Hermopolitan creation narrative, it is Thoth (in his form as the ibis or the sacred baboon) who lays the primordial cosmic egg from which the creator (Ra-Atum or Thoth himself) hatches at the first sunrise. The relationship between Thoth and the Ogdoad is thus that of creative mediator/patron to the primordial forces he organizes and articulates. Confidence medium: the specific tradition varies — in some versions Thoth creates through the Ogdoad; in others the Ogdoad creates independently and Thoth is simply their city's patron; in yet others Thoth is identified with the Ogdoad's collective wisdom. Wilkinson (2003) pp. 99-102; Pinch (2002) pp. 198-200. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | Old Kingdom PER_EGY_OLD_KINGDOM |
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]);