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)'}
10 rows where object_entity_id = "ENT_MES_MARDUK"
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 |
|---|---|---|---|---|---|---|---|---|
| 477 | Nabu ENT_MES_NABU | child_of | Marduk ENT_MES_MARDUK | medium | Nabu is commonly treated as son of Marduk in Babylonian theology. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 1491 | Zeus ENT_ZEUS | aligned_with | Marduk ENT_MES_MARDUK | medium | Functional/typological cognate, not an attested reception (the cosmic-sovereignty/chaos parallels route through Hurrian-Hittite intermediaries or are modern comparisons; Burkert, West). | 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 |
| 3008 | Mushhushshu ENT_MES_MUSHHUSHSHU | aligned_with | Marduk ENT_MES_MARDUK | high | After Tiamat's defeat the mushhushshu becomes the emblematic dragon of Marduk. | Enuma Elish (the Babylonian Epic of Creation), c. late 2nd millennium BCE SRC_ENUMA_ELISH | reviewed | |
| 3011 | Damkina ENT_MES_DAMKINA | parent_of | Marduk ENT_MES_MARDUK | high | Damkina is the mother of Marduk (Enuma Elish I.83-84). | Enuma Elish (the Babylonian Epic of Creation), c. late 2nd millennium BCE SRC_ENUMA_ELISH | reviewed | |
| 3012 | Sarpanit ENT_MES_SARPANIT | consort_of | Marduk ENT_MES_MARDUK | high | Sarpanit is the consort of Marduk. | Enuma Elish (the Babylonian Epic of Creation), c. late 2nd millennium BCE SRC_ENUMA_ELISH | reviewed | |
| 3924 | Bashmu ENT_MES_BASHMU | opposes | Marduk ENT_MES_MARDUK | high | Among the eleven monsters of Tiamat opposed by Marduk | Enuma Elish (the Babylonian Epic of Creation), c. late 2nd millennium BCE SRC_ENUMA_ELISH | reviewed | |
| 3932 | Enmesharra ENT_MES_ENMESHARRA | opposes | Marduk ENT_MES_MARDUK | medium | Contends with Marduk over the ancient powers | W. G. Lambert, Babylonian Creation Myths (Eisenbrauns, 2013) SRC_LAMBERT_BCM | reviewed | |
| 3943 | Kusarikku ENT_MES_KUSARIKKU | opposes | Marduk ENT_MES_MARDUK | medium | The bull-man counted among the brood of Tiamat opposed by Marduk | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 5945 | Santa ENT_LUW_SANTA | aligned_with | Marduk ENT_MES_MARDUK | medium | Santa (Sanda) is attested in Anatolian-Mesopotamian syncretism with Marduk, sharing warrior/plague aspects. | Piotr Taracha, Religions of Second Millennium Anatolia (Dresdner Beiträge zur Hethitologie 27; Harrassowitz Verlag, Wiesbaden, 2009) SRC_TARACHA_ANATOLIA | reviewed | |
| 6642 | Zeus (Jupiter / Bel) of Harran ENT_HRN_ZEUS_JUPITER | equated_with | Marduk ENT_MES_MARDUK | medium | Jupiter in the Mesopotamian-Harranian astral scheme corresponds to Marduk/Bel (planetary identification; Green). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | 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]);