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)'}
10 rows where object_entity_id = "ENT_CHR_DEVIL"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, confidence, source_id, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 713 | Lucifer ENT_CHR_LUCIFER | identified_with | Devil ENT_CHR_DEVIL | medium | Lucifer is identified with the Devil in later Christian reception. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | |
| 1336 | Hecate (Patristic Reception) ENT_REC_HECATE_PATRISTIC | opposes | Devil ENT_CHR_DEVIL | medium | Hecate in Christian reception is subordinated to or identified with the demonic realm under Satan. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 1338 | Satan ENT_ISR_SATAN | received_as | Devil ENT_CHR_DEVIL | high | Second Temple Satan (adversarial accuser/tester figure) received as the Devil (cosmic adversary of God and humanity) in patristic Christian theology. Key sources: Justin Martyr, Origen, Tertullian. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | Patristic Period PER_PATRISTIC |
| 1339 | Daimones ENT_LAT_DAIMONES | received_as | Devil ENT_CHR_DEVIL | medium | The Greek philosophical category of daimones received as the Christian category of demons in patristic apologetics; Justin Martyr and Origen identified the pagan daimones with fallen angels/demons. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | Patristic Period PER_PATRISTIC |
| 1345 | Lucifer ENT_CHR_LUCIFER | reception_of | Devil ENT_CHR_DEVIL | high | Lucifer is the medieval Western reception of the Christian Devil. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | Medieval Western PER_MEDIEVAL_WEST |
| 1394 | Zeus ENT_ZEUS | received_as | Devil ENT_CHR_DEVIL | medium | Justin Martyr (1 Apol. 5) argues that Satan and the evil demons orchestrated all pagan worship; as sovereign of the Olympians, Zeus was structurally mapped to Satan as sovereign of the demonic realm. Augustine (City of God II.14) treats Jupiter/Zeus as the pre-eminent false deity whose example licensed all moral depravity in Roman religion. The structural correspondence — king of heaven / prince of demons — made Zeus the natural Olympian counterpart to the Christian Devil. | Justin Martyr, First and Second Apologies (c. 150–165 CE) SRC_JUSTIN_MARTYR_APOLOGIES | reviewed | Patristic Period PER_PATRISTIC |
| 1396 | Pan ENT_PAN | received_as | Devil ENT_CHR_DEVIL | medium | Pan's iconographic form — goat horns, cloven hooves, hairy goat haunches, lustful nature — is the primary visual source for the Christian Devil's physical appearance. Justin Martyr (1 Apol. 25) classifies satyrs and Pan-like beings among demonic figures. The "Pan is dead" story in Plutarch (On the Obsolescence of Oracles 17) was Christianized as the announcement of Satan's overthrow at the crucifixion. The iconographic Devil is a composite primarily derived from Pan, a reception that registers across patristic writing, medieval art, and demonology. | Justin Martyr, First and Second Apologies (c. 150–165 CE) SRC_JUSTIN_MARTYR_APOLOGIES | reviewed | Patristic Period PER_PATRISTIC |
| 1470 | Seth ENT_EGY_SETH | received_as | Devil ENT_CHR_DEVIL | medium | Seth's reception as the Christian Devil operates through two parallel routes: (1) Plutarch (De Is. chs. 49-51) systematically equates Seth/Typhon with the principle of cosmic evil opposing Osiris/good — a dualism that Patristic authors absorbed into their cosmological framework. (2) In Late Antique Egypt, Seth was explicitly identified with Satan in Coptic Christian texts; his zoomorphic iconography (long-eared, fork-tailed, red-pelted "Seth animal") contributed to demonic iconographic vocabulary. The Seth→Devil chain is not as direct as Apollo→Apollyon, but the theological and iconographic influence is documented 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 |
| 2934 | Beelzebul ENT_CHR_BEELZEBUL | identified_with | Devil ENT_CHR_DEVIL | high | Jesus identifies Beelzebul, "prince of demons," with Satan (Matthew 12:24-26). | New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT | reviewed | |
| 5914 | Merlin ENT_ART_MERLIN | child_of | Devil ENT_CHR_DEVIL | medium | In Robert de Boron, Merlin is fathered by a devil then baptized — a theological aetiology of his powers. | Geoffrey of Monmouth, Historia Regum Britanniae, c. 1136 CE SRC_GEOFFREY_MONMOUTH | 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]);