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)'}
8 rows where subject_entity_id = "ENT_ISR_LEVIATHAN"
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 |
|---|---|---|---|---|---|---|---|---|
| 577 | Leviathan ENT_ISR_LEVIATHAN | opposes | Yahweh ENT_ISR_YAHWEH | medium | Leviathan is chaos opposition to divine order in biblical chaos-combat traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1227 | Leviathan ENT_ISR_LEVIATHAN | member_of | Dragon ENT_DRAGON | high | Leviathan is a sea serpent/chaos dragon and belongs to the cross-traditional serpent-dragon monster category. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1302 | Leviathan ENT_ISR_LEVIATHAN | embodies | Chaos ENT_CHAOS | high | Leviathan embodies chaos as sea monster in Israelite tradition. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1312 | Leviathan ENT_ISR_LEVIATHAN | dwells_in | Water ENT_WATER | high | Leviathan dwells in the sea as a chaos/sea monster. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1371 | Leviathan ENT_ISR_LEVIATHAN | reception_of | Lotan ENT_CAN_LOTAN | high | Leviathan as Israelite reception of Ugaritic Lotan; name, description (seven-headed twisting serpent), and combat-myth role are directly cognate. | John Day, God's Conflict with the Dragon and the Sea (Cambridge University Press, 1985) SRC_DAY_GODS_CONFLICT | reviewed | Exilic and Post-Exilic PER_ISR_EXILIC |
| 1375 | Leviathan ENT_ISR_LEVIATHAN | reception_of | Yam ENT_CAN_YAM | medium | Leviathan absorbs Yam's function as chaos-sea adversary of the storm deity in Hebrew combat mythology; distinct reception path from the Lotan name cognacy. | John Day, God's Conflict with the Dragon and the Sea (Cambridge University Press, 1985) SRC_DAY_GODS_CONFLICT | reviewed | Exilic and Post-Exilic PER_ISR_EXILIC |
| 1381 | Leviathan ENT_ISR_LEVIATHAN | aligned_with | Tiamat ENT_MES_TIAMAT | medium | Functional/typological cognate, not an attested reception (the cosmic-sovereignty/chaos parallels route through Hurrian-Hittite intermediaries or are modern comparisons; Burkert, West). | John Day, God's Conflict with the Dragon and the Sea (Cambridge University Press, 1985) SRC_DAY_GODS_CONFLICT | reviewed | Exilic and Post-Exilic PER_ISR_EXILIC |
| 7647 | Leviathan ENT_ISR_LEVIATHAN | member_of | Four Crown Princes of Hell ENT_SAT_FOUR_CROWN_PRINCES | high | Leviathan is named by LaVey as a Crown Prince of Hell (west, water); existing Leviathan entity wired into the collective. | 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]);