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)'}
3 rows where subject_entity_id = "ENT_ISR_ELIJAH"
This data as json, CSV (advanced)
Suggested facets: relationship_type, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1552 | Elijah ENT_ISR_ELIJAH | received_as | John the Baptist ENT_SAINT_JOHN_BAPTIST | high | The identification of John the Baptist with the returning Elijah foretold in Malachi 4:5 is explicit and foundational in the New Testament. Matthew 11:14: "And if you are willing to accept it, he [John] is the Elijah who was to come." Matthew 17:10-12: the disciples ask about the scribal teaching that Elijah must come first; Jesus responds that "Elijah has already come, and they did not recognize him, but have done to him everything they wished." Luke 1:17 describes John as coming "in the spirit and power of Elijah, to turn the hearts of the fathers to the children." The identification is grounded in: (1) Malachi's explicit eschatological prophecy; (2) John's desert asceticism and camel-hair garment matching Elijah's description in 2 Kings 1:8; (3) his function as the forerunner who "prepares the way." At the Transfiguration (Matthew 17:3; Mark 9:4; Luke 9:30), Elijah appears alongside Moses as a representative of the prophetic tradition, with John-as-Elijah already having fulfilled the preparatory role. This is the best-documented Hebrew Bible prophet → New Testament reception chain in the dataset. | The Hebrew Bible / Tanakh (primary text; Masoretic Text tradition; reference editions: Biblia Hebraica Stuttgartensia / Biblia Hebraica Quinta; citations by book, chapter, and verse) SRC_HEBREW_BIBLE | reviewed | Second Temple Period PER_ISR_SECOND_TEMPLE |
| 5209 | Elijah ENT_ISR_ELIJAH | opposes | Ahab ENT_ISR_AHAB | high | 1 Kings 17-21: Elijah repeatedly confronts Ahab over Baal worship and the Naboth affair. | John J. Collins, The Apocalyptic Imagination SRC_2TJ_COLLINS | reviewed | |
| 5210 | Elijah ENT_ISR_ELIJAH | opposes | Jezebel ENT_ISR_JEZEBEL | high | 1 Kings 18-19: Elijah opposes Jezebel, who seeks his life after the Carmel contest. | John J. Collins, The Apocalyptic Imagination SRC_2TJ_COLLINS | 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]);