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 object_entity_id = "ENT_HADES"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, confidence, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 63 | Cronus ENT_CRONUS | parent_of | Hades ENT_HADES | high | Hades is child of Cronus and Rhea. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 64 | Rhea ENT_RHEA | parent_of | Hades ENT_HADES | high | Hades is child of Rhea and Cronus. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 91 | Cerberus ENT_CERBERUS | guardian_of | Hades ENT_HADES | medium | Cerberus guards the realm of Hades. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 146 | Lethe ENT_LETHE | belongs_to_realm | Hades ENT_HADES | medium | Lethe belongs to underworld geography. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 787 | Pluto/Dis Pater ENT_ROM_PLUTO | identified_with | Hades ENT_HADES | high | Pluto/Dis Pater is identified with Hades/Plouton. | Oxford Classical Dictionary, Roman Religion entries SRC_ROMAN_OCD | 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 | |
| 3478 | Aita ENT_ETR_AITA | syncretized_with | Hades ENT_HADES | high | The Etruscan Hades. | De Grummond, Nancy Thomson. Etruscan Myth, Sacred History, and Legend (University of Pennsylvania Museum, 2006) SRC_DEGRUMMOND_ETRUSCAN | reviewed | |
| 3523 | Pluto/Dis Pater ENT_ROM_PLUTO | syncretized_with | Hades ENT_HADES | high | Pluto/Dis Pater is the Roman Hades. | Georg Wissowa, Religion und Kultus der Römer (2nd ed., Munich, 1912) SRC_WISSOWA_RKR | reviewed | |
| 6407 | WitchTok / Online Neopagan Devotion ENT_VF_WITCHTOK | reception_of | Hades ENT_HADES | high | Hades is widely worked with in WitchTok/Hellenic-pagan deity work; contemporary devotional reception. | Tara Isabella Burton, Strange Rites: New Religions for a Godless World (2020) SRC_BURTON_STRANGE_RITES | reviewed | |
| 7389 | Axiokersos ENT_MYST_AXIOKERSOS | equated_with | Hades ENT_HADES | medium | Ancient scholia identify the Samothracian Axiokersos with Hades. | Susan Guettel Cole, Theoi Megaloi: The Cult of the Great Gods at Samothrace (EPRO 96, Brill, 1984) SRC_COLE_THEOI_MEGALOI | reviewed | |
| 7806 | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | ruled_by | Hades ENT_HADES | high | The underworld is ruled by Hades, its eponymous lord. | 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]);