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_CAN_BAAL"
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 |
|---|---|---|---|---|---|---|---|---|
| 504 | Baal Hadad ENT_CAN_BAAL | patron_of | Fertility ENT_FERTILITY | high | Baal’s rain/storm power is tied to fertility and agricultural abundance. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | |
| 507 | Baal Hadad ENT_CAN_BAAL | patron_of | Sovereignty ENT_SOVEREIGNTY | medium | Baal’s palace/kingship traditions link him to divine sovereignty. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | |
| 518 | Baal Hadad ENT_CAN_BAAL | patron_of | Storm ENT_STORM | high | Baal Hadad is the central Northwest Semitic storm god. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | |
| 523 | Baal Hadad ENT_CAN_BAAL | opposes | Yam ENT_CAN_YAM | high | Baal opposes Yam in the Baal Cycle. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | |
| 524 | Baal Hadad ENT_CAN_BAAL | opposes | Mot ENT_CAN_MOT | high | Baal and Mot are opponents in the Baal Cycle. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | |
| 525 | Baal Hadad ENT_CAN_BAAL | slays | Lotan ENT_CAN_LOTAN | medium | Lotan belongs to the chaos-serpent combat complex associated with Baal. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | |
| 1506 | Baal Hadad ENT_CAN_BAAL | received_as | Melqart ENT_PHO_MELQART | medium | Melqart ("king of the city") is the Iron Age Phoenician development of the Bronze Age Baal/Hadad storm-and-kingship deity tradition from Ugarit. The "Baal of Tyre" condemned in 1 Kings 16:31 (the god of Ahab's Sidonian wife Jezebel) is identified with Melqart by scholars (Markoe 2000, Cross 1973). The dying-and-rising element of Melqart — his annual egersis (awakening) rite documented in Menander of Ephesus (via Josephus, Against Apion 1.118-119) — continues the Dumuzi/Tammuz dying-deity pattern that entered Phoenicia from Mesopotamia. The continuity between Baal (Ugaritic Bronze Age) and Melqart (Tyrian Iron Age) is strong but the Iron Age deity has a distinct city identity, making this a received_as relationship rather than a simple continuation. | Glenn Markoe, Phoenicians (London: British Museum Press / University of California Press, 2000) SRC_MARKOE_PHOENICIANS | reviewed | Phoenician Iron Age PER_PHO_IRON_AGE |
| 1531 | Baal Hadad ENT_CAN_BAAL | child_of | Dagon ENT_CAN_DAGON | medium | Baal as "son of Dagon" per KTU 1.5 VI 24; alternate tradition also makes El his father. Medium confidence reflects the textual ambiguity. | N. Wyatt, Religious Texts from Ugarit, 2nd ed. (Sheffield Academic Press, 2002) SRC_WYATT_RELIGIOUS_TEXTS | reviewed | Canaanite Bronze Age PER_CAN_BRONZE_AGE |
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]);