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)'}
3 rows where subject_entity_id = "ENT_ISR_BEHEMOTH"
This data as json, CSV (advanced)
Suggested facets: confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1301 | Behemoth ENT_ISR_BEHEMOTH | embodies | Chaos ENT_CHAOS | medium | Behemoth embodies primordial chaotic force as eschatological beast in Israelite apocalyptic. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1311 | Behemoth ENT_ISR_BEHEMOTH | dwells_in | Earth ENT_EARTH | medium | Behemoth is a land monster; its domain is the earth, paired with Leviathan at sea. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 2425 | Behemoth ENT_ISR_BEHEMOTH | paired_with | Leviathan ENT_ISR_LEVIATHAN | high | Behemoth and Leviathan are the canonical eschatological pair in Second Temple apocalyptic literature: 1 Enoch 60:7-9 distinguishes them — "And the female monster whose name is Leviathan dwells in the depths of the sea... and the male monster, whose name is Behemoth, holds his chest in an invisible desert east of the garden where the elect and the righteous dwell." 4 Ezra 6:49-52 parallels this: "You separated Leviathan and Behemoth, giving Behemoth one part of the land on the third day of creation, and Leviathan one part of the sea." Job 40:15-41:34 presents them sequentially. In rabbinic tradition (Leviticus Rabbah 13:3; Bava Batra 74b), Behemoth and Leviathan are the eschatological pair whose battle at the end of days provides the feast for the righteous. The pairing is one of the most consistent dyads in Second Temple and rabbinic eschatology. Collins (2016) pp. 87-89. | 1 Enoch SRC_1_ENOCH | reviewed | Second Temple Period PER_ISR_SECOND_TEMPLE |
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]);