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)'}
11 rows where subject_entity_id = "ENT_HER_TRISMEGISTUS"
This data as json, CSV (advanced)
Suggested facets: relationship_type, object_entity_id, confidence, source_id, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1329 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | syncretized_with | Hermes ENT_HERMES | high | Hermes Trismegistus is the Hellenistic synthesis of Greek Hermes. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | 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 | |
| 1331 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | reveals | Wisdom ENT_WISDOM | high | The Hermetic texts are framed as Hermes Trismegistus revealing divine wisdom. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 1332 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | teaches | Hidden Knowledge ENT_HIDDEN_KNOWLEDGE | high | The Corpus Hermeticum presents Hermes Trismegistus as teacher of hidden cosmic knowledge. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 1333 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | patron_of | Magic ENT_MAGIC | medium | Hermes Trismegistus is associated with magical arts in the Hermetic tradition. | Asclepius SRC_ASCLEPIUS_HERMETICA | reviewed | |
| 1342 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | reception_of | Hermes ENT_HERMES | high | Hermes Trismegistus is the Hermetic reception of Greek Hermes. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | Hermetic Hellenistic Period PER_HER_HELLENISTIC |
| 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 |
| 1349 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | received_as | Baphomet (Lévi) ENT_REC_BAPHOMET_LEVI | medium | Hermetic tradition (Hermes Trismegistus as embodiment of occult synthesis) received into Lévi's Baphomet: Lévi's Dogme et rituel explicitly draws on Hermetic sources as one strand of his synthesis of the occult absolute. | Éliphas Lévi, Dogme et rituel de la haute magie (Paris: Germer Baillière, 1854-1856) SRC_LEVI_DOGME_RITUEL | reviewed | 19th Century Occultism PER_19C_OCCULT |
| 1353 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | received_as | Mahatmas (Theosophical Masters of Wisdom) ENT_REC_MAHATMAS | low | The Theosophical Mahatmas structurally parallel the Hermetic revealer-figure archetype (hidden cosmic teacher transmitting wisdom to initiates). Hutton (1999) notes this lineage; confidence is low because Blavatsky drew more directly on Hindu/Buddhist terminology than on Hermetic texts. | Helena P. Blavatsky, The Secret Doctrine (London: Theosophical Publishing Company, 1888) SRC_BLAVATSKY_SECRET_DOCTRINE | reviewed | 19th Century Occultism PER_19C_OCCULT |
| 1436 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | received_as | Idris ENT_ISL_IDRIS | medium | Islamic philosophers from the 9th century onward identified Hermes Trismegistus with the Quranic prophet Idris, creating "Hermes-Idris" as the Islamic primordial sage of wisdom, alchemy, and the natural sciences. Jabir ibn Hayyan, al-Kindi, and the Sabian astronomical tradition of Harran all contributed to this identification. The pseudo-Magriti text Ghayat al-Hakim and later writers on Islamic occult philosophy elaborate Idris-Hermes as the originator of every science. Van Bladel 2009 traces this in detail. Confidence medium: the identification is certain in the philosophical tradition, but represents an interpretation layered onto the Quranic Idris, not a direct Quranic claim. | Kevin van Bladel, The Arabic Hermes: From Pagan Sage to Prophet of Science (Oxford University Press, 2009) SRC_VAN_BLADEL_ARABIC_HERMES | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2941 | Hermes Trismegistus ENT_HER_TRISMEGISTUS | taught_by | Poimandres ENT_HER_POIMANDRES | high | Poimandres reveals the cosmogony and the way of ascent to Hermes (CH I). | Corpus Hermeticum SRC_CORPUS_HERMETICUM | 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]);