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_MES_ENLIL"
This data as json, CSV (advanced)
Suggested facets: confidence, source_id, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 478 | Enlil ENT_MES_ENLIL | patron_of | Sovereignty ENT_SOVEREIGNTY | high | Enlil is a major authority and kingship god. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 1492 | Enlil ENT_MES_ENLIL | aligned_with | Zeus ENT_ZEUS | low | Functional/typological cognate (no attested diffusion of the Mesopotamian deity into the later cult); per Burkert/West the real transmission, where any, runs through Hurrian-Hittite intermediaries. | 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 |
| 1581 | Enlil ENT_MES_ENLIL | member_of | Anunnaki ENT_MES_ANUNNAKI | high | Enlil is one of the three chief Anunnaki (Anu, Enlil, Enki) who divide the cosmos between them; in the Atrahasis Epic the Anunnaki cast lots and Enlil receives command of the earth; as the lord of the divine assembly (Ubshu-ukkinna) at Nippur, he presides over the Anunnaki. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
| 1587 | Enlil ENT_MES_ENLIL | spouse_of | Ninlil ENT_MES_NINLIL | high | Enlil and Ninlil are the divine couple of Nippur; the Enlil and Ninlil myth (ETCSL 1.2.1) narrates the circumstances of their union and subsequent journey to the underworld; in Sumerian hymns and god-lists they are consistently paired as the lord and lady of Nippur. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
| 1589 | Enlil ENT_MES_ENLIL | parent_of | Nanna/Sin ENT_MES_NANNA_SIN | high | In the Enlil and Ninlil myth (ETCSL 1.2.1), Enlil's union with Ninlil in the underworld produces Nanna/Sin (the moon god); this paternity is the standard Sumerian tradition for Nanna's divine parentage and is attested in hymns across the corpus. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
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]);