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_CHR_DEVIL"
This data as json, CSV (advanced)
Suggested facets: relationship_type, object_entity_id, confidence, source_id, review_status, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 717 | Devil ENT_CHR_DEVIL | identified_with | Satan ENT_ISR_SATAN | high | The Devil is identified with Satan in Christian reception. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | |
| 720 | Devil ENT_CHR_DEVIL | embodies | Evil ENT_EVIL | high | The Devil is the primary adversarial evil figure in Christian tradition. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | |
| 733 | Devil ENT_CHR_DEVIL | opposes | Christ ENT_GNO_CHRIST | high | The Devil is opposed to Christ in Christian theology. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | |
| 1340 | Devil ENT_CHR_DEVIL | received_as | Lucifer ENT_CHR_LUCIFER | high | The Christian Devil received as Lucifer in medieval Western theology, synthesizing Isaiah 14:12 ('Helel ben Shachar') with the figure of the fallen angel. Crystallized by Jerome's Vulgate (Lucifer) and subsequent exegesis. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | Medieval Western PER_MEDIEVAL_WEST |
| 1344 | Devil ENT_CHR_DEVIL | reception_of | Satan ENT_ISR_SATAN | high | The Christian Devil is the patristic reception of the Second Temple Satan figure. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | Patristic Period PER_PATRISTIC |
| 1395 | Devil ENT_CHR_DEVIL | reception_of | Zeus ENT_ZEUS | medium | The Christian Devil absorbs the structural position of Zeus as king of heaven; patristic theology explicitly mapped the chief Olympian to the prince of demonic powers. | Justin Martyr, First and Second Apologies (c. 150–165 CE) SRC_JUSTIN_MARTYR_APOLOGIES | reviewed | Patristic Period PER_PATRISTIC |
| 1397 | Devil ENT_CHR_DEVIL | reception_of | Pan ENT_PAN | medium | The Christian Devil's iconographic form (horns, hooves, goat-haunches, lust) derives primarily from Pan; Pan's patristic demonization produced the visual language of the Devil across medieval Christianity. | Justin Martyr, First and Second Apologies (c. 150–165 CE) SRC_JUSTIN_MARTYR_APOLOGIES | reviewed | Patristic Period PER_PATRISTIC |
| 1471 | Devil ENT_CHR_DEVIL | reception_of | Seth ENT_EGY_SETH | medium | The Christian Devil absorbs Seth's role as cosmic evil opposing divine good (via Plutarch's interpretation) and Seth's iconographic features in Late Antique Egyptian Christianity. | Plutarch, On Isis and Osiris (De Iside et Osiride, c. 100–120 CE) SRC_PLUTARCH_ISIS_OSIRIS | reviewed | Patristic Period PER_PATRISTIC |
| 1755 | Devil ENT_CHR_DEVIL | opposes | Jesus Christ ENT_JESUS_CHRIST | high | New Testament (Matthew 4:1-11; Luke 4:1-13): the Devil tempts Jesus three times in the wilderness. | New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT | approved | |
| 7832 | Devil ENT_CHR_DEVIL | dwells_in | Hell (Christian) ENT_CHRR_HELL | high | Hell is the abode of the Devil; Dante fixes Satan at the center of the Inferno. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 8027 | Devil ENT_CHR_DEVIL | reception_of | Typhon ENT_TYPHON | medium | Combat-myth (chaoskampf) dragon-adversary underlying the Christian dragon-Satan (Rev. 12); Forsyth, The Old Enemy. | Neil Forsyth, The Old Enemy: Satan and the Combat Myth (Princeton University Press, 1987) SRC_FORSYTH_OLD_ENEMY | 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]);