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)'}
9 rows where source_id = "SRC_BABYLONIAN_TALMUD"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence, rationale
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2809 | Dumah ENT_JM_DUMAH | presides_over | Gehenna ENT_JM_GEHENNA | high | Dumah is the angel-prince set over the souls in Gehenna. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2810 | Gehenna ENT_JM_GEHENNA | reception_of | Sheol ENT_ISR_SHEOL | medium | Rabbinic Gehenna develops from the biblical netherworld Sheol. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2811 | Sar ha-Olam ENT_JM_SAR_HAOLAM | identified_with | Metatron ENT_JM_METATRON | high | The Prince of the World ("the youth") is identified with Metatron. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2815 | Akatriel ENT_JM_AKATRIEL | cult_form_of | Yahweh ENT_ISR_YAHWEH | high | Akatriel Yah is a crowned, enthroned Name-form of the God of Israel. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2821 | Lilin ENT_JM_LILIN | member_of | Shedim ENT_JM_SHEDIM | high | The lilin are a class of the shedim. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2823 | Mazzikin ENT_JM_MAZZIKIN | aligned_with | Shedim ENT_JM_SHEDIM | high | The mazzikin and shedim are parallel classes of rabbinic harmful spirits. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2824 | Af and Hemah ENT_JM_AF_HEMAH | aligned_with | Angel of Death ENT_ISR_ANGEL_OF_DEATH | medium | Af and Hemah act with the destroying/death angels of judgment. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2825 | Ziz ENT_ISR_ZIZ | aligned_with | Leviathan ENT_ISR_LEVIATHAN | high | Ziz, Behemoth and Leviathan form the primordial triad of sky, land and sea. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | reviewed | |
| 2826 | Ziz ENT_ISR_ZIZ | aligned_with | Behemoth ENT_ISR_BEHEMOTH | high | Ziz, Behemoth and Leviathan form the primordial triad of sky, land and sea. | The Babylonian Talmud (Talmud Bavli), c. 500-600 CE SRC_BABYLONIAN_TALMUD | 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]);