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)'}
8 rows where subject_entity_id = "ENT_MES_INANNA_ISHTAR"
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 |
|---|---|---|---|---|---|---|---|---|
| 461 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | patron_of | Love ENT_LOVE | high | Inanna/Ishtar is a major goddess of love and sexuality. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 468 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | patron_of | War ENT_WAR | high | Inanna/Ishtar is also a major war goddess. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 1305 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | embodies | Venus ENT_VENUS | high | Inanna/Ishtar is identified with the planet Venus in Mesopotamian astral theology. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 1368 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | received_as | Astarte ENT_CAN_ASTARTE | medium | Inanna/Ishtar (Mesopotamian love/war goddess) received as Astarte (ʿṯtrt) in Canaanite tradition. Both rule love, fertility, and warfare; name Astarte is cognate with Ashtart/Ishtar. DDD_BIBLE s.v. "Ashtoreth" and "Astarte" traces the Mesopotamian origin and Canaanite reception of the love-war goddess figure. | Dictionary of Deities and Demons in the Bible SRC_UGARIT_DDD | reviewed | Canaanite Bronze Age PER_CAN_BRONZE_AGE |
| 1476 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | identified_with | Shaushka ENT_HTT_SHAUSHKA | high | Hittite religious texts explicitly call Shaushka "Ishtar of Nineveh" and "Ishtar of Samuha," demonstrating a direct identification rather than mere structural parallel. The Myth of Shaushka and Hedammu and treaty texts from the Hittite empire routinely use the two names as equivalents. Shaushka is the Hurrian reception of the Mesopotamian love/war goddess complex, transmitting the Inanna/Ishtar tradition into Anatolian religion. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | reviewed | Hittite Empire Period PER_HTT_EMPIRE |
| 1585 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | sibling_of | Ereshkigal ENT_MES_ERESHKIGAL | high | In the Descent of Inanna (ETCSL 1.4.1), Inanna explicitly travels "toward her sister Ereshkigal, queen of the Great Below." The sibling relationship between the love goddess and the queen of death is the foundational tension of the narrative: Ereshkigal has power over the underworld that Inanna desires; Inanna is stripped of her divine attributes at each of the seven gates as she descends to face her sister. Their sisterhood makes the confrontation mythologically significant — it is the love of life vs. the finality of death embodied in divine sisters. | Electronic Text Corpus of Sumerian Literature SRC_ETCSL | reviewed | Early Mesopotamian PER_MES_EARLY |
| 1596 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | received_as | Aphrodite ENT_APHRODITE | medium | Inanna/Ishtar transmits directly to Aphrodite via the Cypriot channel, alongside the more fully documented Inanna→Astarte→Aphrodite chain already in the dataset. The key shared elements: (1) the "Queen of Heaven" title (Inanna is consistently "Queen of Heaven"; Aphrodite Ourania is "Heavenly Aphrodite"); (2) the planet Venus as the primary celestial identification (both are the morning/evening star deity); (3) the love-war combination (both are goddesses of erotic love and of war and conflict — an unusual combination that marks the Mesopotamian influence); (4) the Cypriot cult of Aphrodite at Paphos showing direct Eastern religious influence; (5) the Adonis/Tammuz link — Adonis is the Greek reception of Dumuzi, Inanna/Ishtar's divine lover, and the Adonis cult is deeply Cypriot. Burkert (1992) and West (1997) both treat this as a well-grounded direct channel. | Walter Burkert, The Orientalizing Revolution: Near Eastern Influence on Greek Culture in the Early Archaic Age (Harvard University Press, 1992) SRC_BURKERT_ORIENT_REV | reviewed | Archaic Period PER_GRK_ARCHAIC |
| 7854 | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | associated_with | Irkalla (Kur) ENT_RLMX_IRKALLA | high | Ishtar descends into Irkalla and is detained there in the Descent of Ishtar. | 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]);