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)'}
14 rows where source_id = "SRC_CHRISTIAN_DEMONOLOGY_GENERAL"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 714 | Demons ENT_CHR_DEMONS | associated_ritual | Possession ENT_POSSESSION | high | Demons are strongly associated with possession in Christian demonology. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 716 | Demons ENT_CHR_DEMONS | causes_affliction | Disease ENT_DISEASE | medium | Demons can be associated with affliction and illness in Christian texts. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 719 | Demons ENT_CHR_DEMONS | embodies | Evil ENT_EVIL | high | Demons are adversarial/evil spirits in Christian demonology. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | 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 | |
| 1337 | Hecate ENT_HECATE | received_as | Hecate (Patristic Reception) ENT_REC_HECATE_PATRISTIC | medium | Greek Hecate received as a demon or demonic queen in patristic Christian literature; her liminal, chthonic, and magical attributes were recast as demonic in a Christian cosmological frame. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | 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 |
| 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 |
| 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 |
| 1346 | Hecate (Patristic Reception) ENT_REC_HECATE_PATRISTIC | reception_of | Hecate ENT_HECATE | medium | The patristic demonized Hecate is the Christian reception of Greek Hecate. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | Patristic Period PER_PATRISTIC |
| 6024 | Behemoth ENT_CHR_BEHEMOTH | paired_with | Leviathan ENT_CHR_LEVIATHAN | high | Behemoth and Leviathan are the primordial land/sea chaos-monster pair (Job 40-41; 1 Enoch 60:7-9; 4 Ezra 6:49-52). | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 7187 | Lucifer ENT_CHR_LUCIFER | embodies | Pride ENT_PRIDE | high | In the Binsfeld deadly-sin schema Lucifer is the demon of pride (superbia); ENT_PRIDE is a moral abstraction, not a deity. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 7645 | Lucifer ENT_CHR_LUCIFER | member_of | Four Crown Princes of Hell ENT_SAT_FOUR_CROWN_PRINCES | high | Lucifer is named by LaVey as a Crown Prince of Hell (east, air); existing Lucifer entity wired into the collective. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | reviewed | |
| 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 | |
| 7833 | Demons ENT_CHR_DEMONS | dwells_in | Hell (Christian) ENT_CHRR_HELL | high | The demons inhabit Hell with their prince the Devil. | Christian demonology reference layer SRC_CHRISTIAN_DEMONOLOGY_GENERAL | 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]);