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 object_entity_id = "ENT_DECEPTION"
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 |
|---|---|---|---|---|---|---|---|---|
| 715 | Antichrist ENT_CHR_ANTICHRIST | deceives_or_tempts | Deception ENT_DECEPTION | medium | Antichrist traditions include deception and false appearance. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | reviewed | |
| 887 | Angra Mainyu ENT_ZOR_ANGRA_MAINYU | deceives_or_tempts | Deception ENT_DECEPTION | medium | Angra Mainyu is associated with destructive falsehood and deception. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 888 | Daevas ENT_ZOR_DAEVAS | deceives_or_tempts | Deception ENT_DECEPTION | high | Daevas are linked to falsehood and wrong worship. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 980 | Dajjal ENT_ISL_DAJJAL | deceives_or_tempts | Deception ENT_DECEPTION | high | Dajjal is the great deceiver. | Hadith general reference layer SRC_HADITH_GENERAL | reviewed | |
| 981 | Shayatin ENT_ISL_SHAYATIN | deceives_or_tempts | Deception ENT_DECEPTION | high | Shayatin deceive humanity. | Qur’an SRC_QURAN | reviewed | |
| 4478 | Adramelech ENT_GOE_ADRAMELECH | presides_over | Deception ENT_DECEPTION | low | As council-president/chancellor of Hell, associated with the infernal court's deceptions. | J. A. S. Collin de Plancy, Dictionnaire Infernal (1818; 6th ed. 1863) SRC_DEPLANCY_INFERNAL | reviewed | |
| 4531 | Berith ENT_GOE_BERITH | presides_over | Deception ENT_DECEPTION | high | Is a notorious liar not to be trusted. | The Lesser Key of Solomon (Lemegeton), Book I: Ars Goetia; ed. S. L. MacGregor Mathers & Aleister Crowley (1904) SRC_LEMEGETON | reviewed | |
| 4603 | Malphas ENT_GOE_MALPHAS | presides_over | Deception ENT_DECEPTION | high | Deceives those who offer sacrifices to him. | The Lesser Key of Solomon (Lemegeton), Book I: Ars Goetia; ed. S. L. MacGregor Mathers & Aleister Crowley (1904) SRC_LEMEGETON | reviewed | |
| 4653 | Shax ENT_GOE_SHAX | presides_over | Deception ENT_DECEPTION | high | Is a deceiver and liar unless commanded into a triangle. | The Lesser Key of Solomon (Lemegeton), Book I: Ars Goetia; ed. S. L. MacGregor Mathers & Aleister Crowley (1904) SRC_LEMEGETON | reviewed | |
| 4659 | Valefor ENT_GOE_VALEFOR | presides_over | Deception ENT_DECEPTION | high | Valefor tempts his servants to thievery and is a treacherous familiar. | The Lesser Key of Solomon (Lemegeton), Book I: Ars Goetia; ed. S. L. MacGregor Mathers & Aleister Crowley (1904) SRC_LEMEGETON | reviewed | |
| 5219 | Jezebel ENT_ISR_JEZEBEL | presides_over | Deception ENT_DECEPTION | medium | 1 Kings 21: Jezebel orchestrates false witnesses to seize Naboth's vineyard. | 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 | |
| 5370 | Shaytan / Shayatin ENT_ISL_SHAYTAN | presides_over | Deception ENT_DECEPTION | high | The defining function of the shayatin is whispering temptation and deception (waswasa). | Qur’an SRC_QURAN | reviewed | |
| 5589 | Ahriman ENT_ANT_AHRIMAN | presides_over | Deception ENT_DECEPTION | medium | Ahriman governs the deceptive lure of pure materialism and the reduction of the spiritual to the mechanical. | Rudolf Steiner, An Outline of Esoteric Science (Die Geheimwissenschaft im Umriss) SRC_STEINER | reviewed | |
| 5591 | Lucifer (Anthroposophical) ENT_ANT_LUCIFER | presides_over | Deception ENT_DECEPTION | medium | Lucifer governs the deceptive temptations of pride, illusion, and false/inflated spirituality. | Rudolf Steiner, An Outline of Esoteric Science (Die Geheimwissenschaft im Umriss) SRC_STEINER | 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]);