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_ISR_SATAN"
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 |
|---|---|---|---|---|---|---|---|---|
| 526 | Satan ENT_ISR_SATAN | deceives_or_tempts | Accusation ENT_ACCUSATION | high | Satan functions as accuser/adversary in some biblical traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 554 | Satan ENT_ISR_SATAN | opposes | Yahweh ENT_ISR_YAHWEH | medium | Satan develops as adversarial/oppositional figure; source-specific nuance required. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 581 | Satan ENT_ISR_SATAN | embodies | Evil ENT_EVIL | medium | Satan becomes increasingly identified with evil/adversarial power in later reception. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 583 | Satan ENT_ISR_SATAN | deceives_or_tempts | Testing ENT_TESTING | high | Satan functions as tester/adversary in some biblical traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | 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 |
| 1389 | Satan ENT_ISR_SATAN | reception_of | Angra Mainyu ENT_ZOR_ANGRA_MAINYU | medium | Satan's development from court accuser to independent cosmic adversary shows probable structural influence from Zoroastrian Angra Mainyu during the Babylonian exile and Persian period. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | Exilic and Post-Exilic PER_ISR_EXILIC |
| 1422 | Satan ENT_ISR_SATAN | received_as | Iblis ENT_ISL_IBLIS | high | The Islamic Iblis (Quran 2:34, 7:11-18, 18:50, 38:71-85) is the direct reception of the Hebrew/Christian Satan: he is the cosmic adversary who refuses God's command, is expelled from the divine realm, and dedicates himself to leading humanity astray until the Day of Judgment. The Arabic name Shaytan (used interchangeably with Iblis: "And We said to the angels, 'Bow to Adam,' and they bowed, except for Iblis. He was of the jinn and departed from the command of his Lord" — 18:50) derives from the same Semitic root as Hebrew satan (adversary). The functional role, cosmic narrative, and linguistic trace are all continuous. | Qur’an SRC_QURAN | reviewed | Early Islam PER_ISL_EARLY |
| 1452 | Satan ENT_ISR_SATAN | received_as | Samael ENT_GNO_SAMAEL | medium | Samael in Kabbalistic theology (Zohar) is the chief of the "other side" (sitra achra), the adversarial force opposing the divine — the direct reception of the Satan tradition. The Zohar explicitly identifies Samael as the great serpent/Satan figure: "Samael is the great dragon of the sea" (Zohar III.282a). The name Samael (Hebrew: "venom of God" or "blind God" in Gnostic contexts) appears in Jewish literature from the 2nd century BCE onward as an adversarial angel drawing on the Satan archetype. In the Apocalypse of Moses and the Life of Adam and Eve, Samael is identified as the devil who tempted Eve. | Zohar SRC_ZOHAR | reviewed | Late Antiquity PER_LATE_ANTIQUE |
| 4685 | Satan ENT_ISR_SATAN | member_of | The Infernal Hierarchy (Princes of Hell) ENT_GOE_INFERNAL_HIERARCHY | medium | Satan is a chief prince/adversary of the infernal hierarchy. | J. A. S. Collin de Plancy, Dictionnaire Infernal (1818; 6th ed. 1863) SRC_DEPLANCY_INFERNAL | reviewed | |
| 4686 | Satan ENT_ISR_SATAN | member_of | The Seven Demons of the Deadly Sins (Binsfeld) ENT_GOE_SEVEN_DEADLY_DEMONS | medium | Binsfeld 1589: Satan presides over WRATH. | J. A. S. Collin de Plancy, Dictionnaire Infernal (1818; 6th ed. 1863) SRC_DEPLANCY_INFERNAL | reviewed | |
| 7644 | Satan ENT_ISR_SATAN | member_of | Four Crown Princes of Hell ENT_SAT_FOUR_CROWN_PRINCES | high | Satan is the first of LaVey's Four Crown Princes of Hell (south, fire); wiring the existing Satan entity into the collective rather than recreating it. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | 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]);