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 object_entity_id = "ENT_MES_ENLIL"
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 |
|---|---|---|---|---|---|---|---|---|
| 1493 | Zeus ENT_ZEUS | aligned_with | Enlil ENT_MES_ENLIL | low | Functional/typological cognate, not an attested reception (the cosmic-sovereignty/chaos parallels route through Hurrian-Hittite intermediaries or are modern comparisons; Burkert, West). | Martin L. West, The East Face of Helicon: West Asiatic Elements in Greek Poetry and Myth (Oxford: Clarendon Press, 1997) SRC_WEST_EAST_HELICON | reviewed | Archaic Period PER_GRK_ARCHAIC |
| 1588 | Ninlil ENT_MES_NINLIL | spouse_of | Enlil ENT_MES_ENLIL | high | Ninlil as Enlil's consort; the divine lady of Nippur alongside Enlil; their pairing is foundational to the Nippur theological tradition and to the legitimation of Sumerian kingship. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
| 2395 | Humban ENT_ELAM_HUMBAN | aligned_with | Enlil ENT_MES_ENLIL | medium | Humban and Enlil are structurally parallel as the chief divine authorities of their respective civilizations in the ancient Near East — both serve as the supreme male deity whose approval legitimates royal power and whose invocation in royal inscriptions signals the highest divine sanction. As neighboring civilizations (Elam and Mesopotamia were in continuous political and cultural contact for two millennia), their chief deities occupied structurally identical positions in their respective pantheons. The Assyrian texts about Elamite kings routinely mention Humban alongside Ashur in diplomatic contexts, reflecting awareness of Humban as the Elamite equivalent of the Assyrian divine patron. Confidence medium: the parallelism is structural; the two deities were not explicitly equated by ancient commentators. Potts (1999) p. 263. | Daniel T. Potts, The Archaeology of Elam: Formation and Transformation of an Ancient Iranian State (Cambridge World Archaeology; Cambridge University Press, Cambridge, 1999) SRC_POTTS_ELAM | reviewed | Kingdom of Elam PER_ELAM_CLASSICAL |
| 3023 | Nuska ENT_MES_NUSKA | aligned_with | Enlil ENT_MES_ENLIL | high | Nuska is the vizier and messenger of Enlil. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | |
| 3679 | Ennugi ENT_MES_ENNUGI | member_of | Enlil ENT_MES_ENLIL | low | Throne-bearer and canal-inspector of Enlil. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 3703 | Enmesharra ENT_MES_ENMESHARRA | opposes | Enlil ENT_MES_ENLIL | medium | The dead primordial god who contends with Enlil's line. | W. G. Lambert, Babylonian Creation Myths (Eisenbrauns, 2013) SRC_LAMBERT_BCM | reviewed | |
| 3704 | Dagan ENT_MES_DAGAN | aligned_with | Enlil ENT_MES_ENLIL | medium | The "father of gods" of the Euphrates, equated with Enlil. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 4058 | Ninimma ENT_MES_NINIMMA | member_of | Enlil ENT_MES_ENLIL | high | Ninimma is a courtier of Enlil at Nippur. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 4082 | Nungal ENT_MES_NUNGAL | member_of | Enlil ENT_MES_ENLIL | medium | Nungal is a courtier and daughter-in-law of Enlil. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | 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]);