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)'}
8 rows where object_entity_id = "ENT_EGY_THOTH"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, confidence, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 338 | Isis ENT_EGY_ISIS | paired_with | Thoth ENT_EGY_THOTH | medium | Isis and Thoth both operate in magical and healing traditions. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 1330 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | syncretized_with | Thoth ENT_EGY_THOTH | high | Hermes Trismegistus is the Hellenistic synthesis of Egyptian Thoth. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 1343 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | reception_of | Thoth ENT_EGY_THOTH | high | Hermes Trismegistus is the Hermetic reception of Egyptian Thoth. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | Hermetic Hellenistic Period PER_HER_HELLENISTIC |
| 1650 | Sia ENT_EGY_SIA | paired_with | Thoth ENT_EGY_THOTH | medium | Sia (divine perception/understanding) and Thoth (divine knowledge/writing) are paired in New Kingdom cosmological texts as complementary aspects of divine cognition; both travel on the solar barque. Papyrus Bremner-Rhind; 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 | |
| 2094 | Iah ENT_EGY_IAH | equated_with | Thoth ENT_EGY_THOTH | high | Iah was also identified with Thoth as a lunar deity; Thoth as god of time and the calendar was associated with the moon, and Iah's function overlaps. Pinch, Egyptian Mythology, p. 170. | Geraldine Pinch, Egyptian Mythology SRC_PINCH_EGYPTIAN_MYTH | approved | |
| 3302 | Wenut ENT_EGY_WENUT | paired_with | Thoth ENT_EGY_THOTH | medium | Hare goddess of the Hermopolitan nome of Thoth. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 3303 | Nehmetawy ENT_EGY_NEHMETAWY | consort_of | Thoth ENT_EGY_THOTH | high | Consort of Thoth at Hermopolis. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 7342 | Taautos ENT_PHO_TAAUTOS | equated_with | Thoth ENT_EGY_THOTH | high | Philo (Praep. Ev. 1.9.24): Taautos is the one whom the Egyptians call Thouth (Thoth), the inventor of writing. | Philo of Byblos, Phoenician History (Sanchuniathon), via Eusebius, Praeparatio Evangelica 1.9-10 SRC_PHILO_BYBLOS | 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]);