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_ENOCH"
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 |
|---|---|---|---|---|---|---|---|---|
| 1217 | Enoch ENT_ENOCH | undergoes_process | Heavenly Journey ENT_HEAVENLY_JOURNEY | high | In 3 Enoch, Enoch undergoes the heavenly ascent and bodily transformation into the angel Metatron. | P. Alexander, 3 Enoch, in Old Testament Pseudepigrapha vol. 1 SRC_3_ENOCH_ALEXANDER_OTP | reviewed | |
| 1218 | Enoch ENT_ENOCH | patron_of | Writing ENT_WRITING | medium | In 3 Enoch and the scribal tradition, Enoch — taken up as the heavenly scribe who keeps the celestial books — is patron of writing. | P. Alexander, 3 Enoch, in Old Testament Pseudepigrapha vol. 1 SRC_3_ENOCH_ALEXANDER_OTP | reviewed | |
| 1219 | Enoch ENT_ENOCH | mediates | Revelation ENT_REVELATION | medium | In 3 Enoch, the ascended Enoch mediates heavenly revelation, transmitting the celestial secrets disclosed to him during his ascent. | P. Alexander, 3 Enoch, in Old Testament Pseudepigrapha vol. 1 SRC_3_ENOCH_ALEXANDER_OTP | reviewed | |
| 1434 | Enoch ENT_ENOCH | received_as | Idris ENT_ISL_IDRIS | high | Islamic exegetical tradition universally identifies the Quranic prophet Idris (19:56-57, 21:85) with the biblical Enoch. Ibn Abbas, Ibn Ishaq, al-Tabari, and virtually all classical commentators make this identification: both are antediluvian patriarchs taken alive to heaven ("We raised him to a high station" = Enoch "walked with God, and he was not, for God took him" — Genesis 5:24). The raising alive, the antediluvian timeframe, the status as a prophet/patriarch, and the association with wisdom and writing are all shared. Highest confidence of any chain in this script. | Qur’an SRC_QURAN | reviewed | Early Islam PER_ISL_EARLY |
| 1440 | Enoch ENT_ENOCH | received_as | Metatron ENT_JM_METATRON | high | 3 Enoch (Sefer Hekhalot) chapters 3–15 narrate the transformation of Enoch the antediluvian patriarch into the angel Metatron, who is enthroned in heaven, given a robe of glory and a crown, and named "the Youth" (Na'ar), "Prince of the Divine Presence," and "Lesser YHWH." Rabbi Ishmael asks: "Who are you?" and Metatron replies: "I am Enoch son of Jared." The transformation is complete — the human patriarch has been received into Jewish mysticism as the highest of all angelic beings. This is the central transmission of the Second Temple Enoch tradition into Hekhalot and Kabbalistic mysticism. | 3 Enoch / Sefer Hekhalot SRC_3_ENOCH | reviewed | Late Antiquity PER_LATE_ANTIQUE |
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]);