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)'}
16 rows where relationship_type = "deceives_or_tempts"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, object_entity_id, 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 | |
| 549 | Mastema ENT_ISR_MASTEMA | deceives_or_tempts | Testing ENT_TESTING | medium | Mastema is associated with hostility/testing in Second Temple traditions. | 1 Enoch SRC_1_ENOCH | reviewed | |
| 580 | Mastema ENT_ISR_MASTEMA | deceives_or_tempts | Accusation ENT_ACCUSATION | medium | Mastema functions as hostile/testing accuser in Second Temple traditions. | 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 | |
| 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 | |
| 988 | Marut ENT_ISL_MARUT | deceives_or_tempts | Testing ENT_TESTING | high | Marut is associated with divine testing. | Qur’an SRC_QURAN | reviewed | |
| 989 | Harut ENT_ISL_HARUT | deceives_or_tempts | Testing ENT_TESTING | high | Harut is associated with divine testing. | Qur’an SRC_QURAN | reviewed | |
| 1005 | Shayatin ENT_ISL_SHAYATIN | deceives_or_tempts | Temptation ENT_TEMPTATION | high | Shayatin tempt and mislead humans. | Qur’an SRC_QURAN | reviewed | |
| 1006 | Iblis ENT_ISL_IBLIS | deceives_or_tempts | Temptation ENT_TEMPTATION | high | Iblis tempts humanity. | Qur’an SRC_QURAN | reviewed | |
| 1025 | Qarin ENT_ISL_QARIN | deceives_or_tempts | Temptation ENT_TEMPTATION | medium | Qarin is associated with personal influence and temptation. | Hadith general reference layer SRC_HADITH_GENERAL | reviewed | |
| 2835 | Third Messenger ENT_MANICH_THIRD_MESSENGER | deceives_or_tempts | Archons ENT_MANICH_ARCHONS | high | The Messenger's epiphany provokes the archons to release the swallowed light. | Manichaean Kephalaia SRC_MANICHAEAN_KEPHALAIA | reviewed | |
| 3739 | Odin ENT_NOR_ODIN | deceives_or_tempts | Gunnlöð ENT_NOR_GUNNLOD | medium | Odin seduces Gunnlod to win the Mead of Poetry. | Poetic Edda SRC_POETIC_EDDA | 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]);