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)'}
11 rows where source_id = "SRC_HOMERIC_HYMNS"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, confidence, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1313 | Demeter ENT_DEMETER | paired_with | Iacchus ENT_IACCHUS | medium | Demeter and Iacchus are liturgically paired in the Eleusinian mystery procession. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | reviewed | |
| 1721 | Persephone ENT_PERSEPHONE | spouse_of | Hades ENT_HADES | high | Homeric Hymn to Demeter 2.3: Hades (Aidoneus) carried off Persephone as wife. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 1728 | Helios ENT_HELIOS | patron_of | Sun ENT_SUN | high | Homeric Hymn 31 To Helios: Helios as solar deity who lights the world. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 1729 | Selene ENT_SELENE | patron_of | Moon ENT_MOON | high | Homeric Hymn 32 To Selene: Selene as lunar deity. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 1730 | Demeter ENT_DEMETER | patron_of | Agriculture ENT_AGRICULTURE | high | Homeric Hymn 2 To Demeter: Demeter as giver of grain and presider over agriculture. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 1731 | Hestia ENT_HESTIA | patron_of | Fire ENT_FIRE | high | Homeric Hymns 24 and 29 To Hestia: Hestia as goddess of the sacred hearth and fire. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 2019 | Cyllene ENT_CYLLENE | paired_with | Hermes ENT_HERMES | high | Homeric Hymn 4 (To Hermes) 2: Hermes was born "in a cave on Mount Cyllene"; the mountain nymph Kyllene is associated with his birth. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 2034 | Plouton ENT_PLOUTON | dwells_in | Underworld ENT_UNDERWORLD | high | Homeric Hymn to Demeter 17: Hades/Plouton rules and dwells in the realm of the dead. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 2052 | Eos ENT_EOS | paired_with | Tithonus ENT_TITHONUS | high | Homeric Hymn 5 (To Aphrodite) 218-238: Eos abducted Tithonus and begged Zeus to grant him immortality; she forgot to ask for eternal youth. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 2053 | Tithonus ENT_TITHONUS | paired_with | Eos ENT_EOS | high | Homeric Hymn 5.218-238. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved | |
| 2249 | Rhea ENT_RHEA | patron_of | Corybantes ENT_CORYBANTES | high | The Corybantes are the Anatolian/Phrygian armed, ecstatic attendants of the Great Mother (Cybele/Rhea); they perform ecstatic dances to protect the goddess and drown the cries of the infant Zeus. Strabo Geography 10.3.19; Homeric Hymn to Cybele context. | Homeric Hymns (7th-5th century BCE); trans. M.L. West, Homeric Hymns (Loeb Classical Library 496, Harvard 2003) SRC_HOMERIC_HYMNS | approved |
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]);