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)'}
4 rows where subject_entity_id = "ENT_MES_DUMUZI_TAMMUZ"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, rationale
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 476 | Dumuzi/Tammuz ENT_MES_DUMUZI_TAMMUZ | paired_with | Inanna/Ishtar ENT_MES_INANNA_ISHTAR | high | Dumuzi is the consort of Inanna in Sumerian myth and sacred marriage traditions. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 1502 | Dumuzi/Tammuz ENT_MES_DUMUZI_TAMMUZ | received_as | Adonis ENT_ADONIS | low | The Greek Adonis is the reception of the Semitic "Adon" (lord), the Phoenician/Syrian dying vegetation deity whose annual mourning rites were celebrated at Byblos on the Adonis River. This deity is the Phoenician Iron Age reception of the Mesopotamian Dumuzi/Tammuz tradition: Tammuz (= Dumuzi) was mourned annually in Mesopotamian ritual (Ezekiel 8:14 attests this in Jerusalem), and the rite transmitted to Phoenicia and then to Greece as the Adonis cult. The Greek Adonis myth — the beautiful youth loved by Aphrodite, killed by a boar, mourned annually, descending to and returning from the underworld — reproduces the Dumuzi/Inanna narrative structure. Lucian (De Syria Dea 6-9) describes the Byblos rites as a transmission from "Osiris" via Phoenicia. Confidence low because the transmission route goes through Phoenician intermediaries (not direct Mesopotamian→Greek contact) and the add_phoenician_iron_age_layer.sql script adds the Phoenician intermediate entities. | 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 |
| 1508 | Dumuzi/Tammuz ENT_MES_DUMUZI_TAMMUZ | aligned_with | Melqart ENT_PHO_MELQART | 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. | Glenn Markoe, Phoenicians (London: British Museum Press / University of California Press, 2000) SRC_MARKOE_PHOENICIANS | reviewed | Phoenician Iron Age PER_PHO_IRON_AGE |
| 1536 | Dumuzi/Tammuz ENT_MES_DUMUZI_TAMMUZ | aligned_with | Telipinu ENT_HTT_TELIPINU | 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. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | reviewed | Hittite Empire Period PER_HTT_EMPIRE |
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]);