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)'}
6 rows where subject_entity_id = "ENT_MES_TIAMAT"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, rationale, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 458 | Tiamat ENT_MES_TIAMAT | paired_with | Kingu ENT_MES_KINGU | high | Kingu is Tiamat’s champion/consort in the Enuma Elish tradition. | Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO | reviewed | |
| 1366 | Tiamat ENT_MES_TIAMAT | aligned_with | Lotan ENT_CAN_LOTAN | medium | 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. | John Day, God's Conflict with the Dragon and the Sea (Cambridge University Press, 1985) SRC_DAY_GODS_CONFLICT | reviewed | Canaanite Bronze Age PER_CAN_BRONZE_AGE |
| 1380 | Tiamat ENT_MES_TIAMAT | aligned_with | Leviathan ENT_ISR_LEVIATHAN | medium | 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. | John Day, God's Conflict with the Dragon and the Sea (Cambridge University Press, 1985) SRC_DAY_GODS_CONFLICT | reviewed | Exilic and Post-Exilic PER_ISR_EXILIC |
| 1494 | Tiamat ENT_MES_TIAMAT | aligned_with | Typhon ENT_TYPHON | medium | 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. | 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 |
| 3007 | Tiamat ENT_MES_TIAMAT | creator_of | Mushhushshu ENT_MES_MUSHHUSHSHU | high | The mushhushshu is among the eleven monsters Tiamat creates (Enuma Elish I.140-143). | Enuma Elish (the Babylonian Epic of Creation), c. late 2nd millennium BCE SRC_ENUMA_ELISH | reviewed | |
| 3009 | Tiamat ENT_MES_TIAMAT | creator_of | Bashmu ENT_MES_BASHMU | medium | The bashmu (horned serpent) is among Tiamat's monster host (Enuma Elish I.140-143). | Enuma Elish (the Babylonian Epic of Creation), c. late 2nd millennium BCE SRC_ENUMA_ELISH | 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]);