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)'}
2 rows where subject_entity_id = "ENT_ARA_HADAD_DAMASCUS"
This data as json, CSV (advanced)
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2382 | Hadad of Damascus ENT_ARA_HADAD_DAMASCUS | reception_of | Baal Hadad ENT_CAN_BAAL | high | Aramean Hadad of Damascus is the direct continuation of the Canaanite Baal Hadad tradition — the same deity name (Hadad is the proper name of Canaanite Baal) carried forward into the Iron Age Aramean states. The theonym Hadad (Aramaic hdd, "thunderer") directly corresponds to Ugaritic Haddu, the personal name of Baal. The transition from Bronze Age Canaanite cult to Iron Age Aramean state cult represents a reception: the same storm deity, reorganized as the national patron of the Aramean kingdom of Damascus, receiving royal inscriptions and military victory dedications in Aramaic rather than Ugaritic. Lipiński (2000) pp. 567-569. | Edward Lipiński, The Aramaeans: Their Ancient History, Culture, Religion (Orientalia Lovaniensia Analecta 100; Peeters, Leuven, 2000) SRC_LIPINSKI_ARAMEANS | reviewed | Aramean and Syrian Hellenistic Religion PER_ARA_IRON_AGE |
| 2383 | Hadad of Damascus ENT_ARA_HADAD_DAMASCUS | patron_of | Storm ENT_STORM | high | Hadad of Damascus is explicitly the storm deity of the Aramean kingdom — the Aramaic name "Hadad" means "thunderer," and his function in inscriptions and the OT accounts of the Damascene kings is consistently as the storm god who gives rain and grants military victory. The Melqart stele inscription invokes Hadad's divine favor; the royal epithets Ben-Hadad ("son of Hadad") and Hadadezer ("Hadad is my help") confirm his storm-patronage as the basis of royal legitimacy. Lipiński (2000) pp. 570-572. | Edward Lipiński, The Aramaeans: Their Ancient History, Culture, Religion (Orientalia Lovaniensia Analecta 100; Peeters, Leuven, 2000) SRC_LIPINSKI_ARAMEANS | reviewed | Aramean and Syrian Hellenistic Religion PER_ARA_IRON_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]);