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)'}
7 rows where object_entity_id = "ENT_MES_ANUNNAKI"
This data as json, CSV (advanced)
Suggested facets: confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1580 | Anu ENT_MES_ANU | member_of | Anunnaki ENT_MES_ANUNNAKI | high | Anu is the chief of the Anunnaki; in Sumerian theology the Anunnaki are the gods of the earth and underworld, with Anu as their divine patriarch; the term "great Anunnaki" in the Atrahasis Epic and Enuma Elish refers to the high council of gods with Anu at the apex. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
| 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 |
| 1582 | Enki/Ea ENT_MES_ENKI_EA | member_of | Anunnaki ENT_MES_ANUNNAKI | high | Enki/Ea is the third of the three chief Anunnaki; he receives dominion over the Abzu (the subterranean sweet water) when the cosmos is divided; he is the cleverest of the Anunnaki ("Enki surpasses all gods in wisdom" — Hymn to Enki) and frequently acts as the intermediary between the divine assembly and humanity. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
| 3657 | Ninshubur ENT_MES_NINSHUBUR | member_of | Anunnaki ENT_MES_ANUNNAKI | low | Of the great gods; sukkal of Inanna and An. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 3855 | Shara ENT_MES_SHARA | member_of | Anunnaki ENT_MES_ANUNNAKI | medium | City-god counted among the great gods | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 3856 | Shakkan ENT_MES_SHAKKAN | member_of | Anunnaki ENT_MES_ANUNNAKI | medium | Steppe-herds god counted among the great gods | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 3857 | Ishtaran ENT_MES_ISHTARAN | member_of | Anunnaki ENT_MES_ANUNNAKI | medium | Divine judge of Der counted among the great gods | 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]);