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)'}
5 rows where subject_entity_id = "ENT_MOA_KEMOSH"
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 |
|---|---|---|---|---|---|---|---|---|
| 2305 | Kemosh ENT_MOA_KEMOSH | patron_of | Storm ENT_STORM | medium | Kemosh's warrior function and Hellenistic equation with Ares suggest a storm/war deity typology; not directly described as a storm deity in surviving Moabite sources but inferred from the divine anger / lightning metaphor pattern in the Mesha Stele. DDD Bible "Chemosh" entry. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | Iron Age Transjordanian PER_TRANSJORDAN_IRON_AGE |
| 2306 | Kemosh ENT_MOA_KEMOSH | patron_of | War ENT_WAR | high | Mesha Stele: Kemosh commands military campaigns ("Go, take Nebo"), receives the ḥērem spoils of battle, and is credited with both Moab's defeat (divine anger) and its victory (divine favour). The closest ancient parallel to a divine war commander in a national-deity context. | The Mesha Stele (Moabite Stone), c. 840 BCE; ed. John A. Dearman, Studies in the Mesha Inscription and Moab (Scholars Press / ASOR, Atlanta, 1989) SRC_MESHA_STELE | reviewed | Iron Age Transjordanian PER_TRANSJORDAN_IRON_AGE |
| 2310 | Kemosh ENT_MOA_KEMOSH | aligned_with | Milkom ENT_AMM_MILKOM | high | Kemosh and Milkom share the same structural role as national "divine patron" deities in adjacent Iron Age kingdoms — both are credited with granting territory, demanding exclusive loyalty, and going into exile at national defeat. Judges 11:24 explicitly treats them as parallel: Jephthah argues "Whatever Kemosh your god gives you to possess... that we will possess." Cross (1973) p. 228. | The Hebrew Bible / Tanakh (primary text; Masoretic Text tradition; reference editions: Biblia Hebraica Stuttgartensia / Biblia Hebraica Quinta; citations by book, chapter, and verse) SRC_HEBREW_BIBLE | reviewed | Iron Age Transjordanian PER_TRANSJORDAN_IRON_AGE |
| 2313 | Kemosh ENT_MOA_KEMOSH | opposed_by | Yahweh ENT_ISR_YAHWEH | high | The Hebrew Bible consistently frames Kemosh as the principal divine opponent of Yahweh in the Transjordanian context. Judges 11:24 (Jephthah) presents the theological schema explicitly. Jeremiah 48 announces Kemosh's defeat and exile as Yahweh's judgment on Moab. The opposition is not ontological (Kemosh is not a chaos monster) but geopolitical-theological: competing national divine claims. Mesha Stele is the Moabite mirror image of the same claim structure. Cross (1973) pp. 228-229. | The Hebrew Bible / Tanakh (primary text; Masoretic Text tradition; reference editions: Biblia Hebraica Stuttgartensia / Biblia Hebraica Quinta; citations by book, chapter, and verse) SRC_HEBREW_BIBLE | reviewed | Iron Age Transjordanian PER_TRANSJORDAN_IRON_AGE |
| 2315 | Kemosh ENT_MOA_KEMOSH | reception_of | Baal Hadad ENT_CAN_BAAL | medium | Kemosh shares significant traits with Baal Hadad — war deity, storm associations, divine anger, conflict theology — and likely inherits his divine typology from the broader West Semitic Baal tradition. The Mesha Stele's rhetorical structure (divine anger → defeat → divine favour → victory) mirrors Baal-cycle theological grammar. Cross (1973) p. 229 notes Kemosh's Baal-type features. Classified medium: the dependence is typological, not directly attested. | Frank Moore Cross, Canaanite Myth and Hebrew Epic (Harvard University Press, 1973) SRC_CROSS_CANAANITE_MYTH | reviewed | Iron Age Transjordanian PER_TRANSJORDAN_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]);