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)'}
7 rows where object_entity_id = "ENT_GRR_UNDERWORLD"
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 |
|---|---|---|---|---|---|---|---|---|
| 7804 | Hades ENT_HADES | rules | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | high | Hades is the ruler of the underworld, the House of Hades that bears his name (Homer, passim). | Pseudo-Apollodorus, Library (Bibliotheca) (1st-2nd century CE); trans. Robin Hard (Oxford World's Classics, OUP 2008) SRC_APOLLODORUS_LIBRARY | reviewed | |
| 7805 | Persephone ENT_PERSEPHONE | rules | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | high | Persephone reigns as queen of the underworld alongside Hades (Homer Odyssey 10-11; Homeric Hymn to Demeter). | Pseudo-Apollodorus, Library (Bibliotheca) (1st-2nd century CE); trans. Robin Hard (Oxford World's Classics, OUP 2008) SRC_APOLLODORUS_LIBRARY | reviewed | |
| 7807 | Elysium (Elysian Fields) ENT_GRR_ELYSIUM | dwells_in | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | medium | In the developed topography (Virgil Aeneid 6) Elysium is a region within the underworld. | Virgil, Aeneid (19 BCE) SRC_VIRGIL_AENEID | reviewed | |
| 7808 | The Asphodel Meadows ENT_GRR_ASPHODEL | dwells_in | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | high | The Asphodel Meadow is part of the House of Hades, where ordinary shades wander (Odyssey 11.539). | Homer, Iliad and Odyssey (c. 750-675 BCE); trans. Richmond Lattimore (Iliad, Univ. of Chicago 1951) and trans. Emily Wilson (Odyssey, Norton 2017) SRC_HOMER_ILIAD_ODYSSEY | reviewed | |
| 7809 | The Mourning Fields (Lugentes Campi) ENT_GRR_MOURNING_FIELDS | dwells_in | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | medium | The Lugentes Campi are a named region of the underworld (Aeneid 6.441). | Virgil, Aeneid (19 BCE) SRC_VIRGIL_AENEID | reviewed | |
| 7810 | The Plain of Lethe ENT_GRR_PLAIN_LETHE | dwells_in | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | medium | The Plain of Lethe lies within the underworld, where souls prepare for rebirth (Aeneid 6.703ff). | Virgil, Aeneid (19 BCE) SRC_VIRGIL_AENEID | reviewed | |
| 7811 | The Fields of Punishment ENT_GRR_FIELDS_PUNISHMENT | dwells_in | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | high | The Fields of Punishment are the penal region of the underworld (Aeneid 6.548ff). | Virgil, Aeneid (19 BCE) SRC_VIRGIL_AENEID | 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]);