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_HEPHAESTUS"
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 |
|---|---|---|---|---|---|---|---|---|
| 788 | Vulcan ENT_ROM_VULCAN | identified_with | Hephaestus ENT_HEPHAESTUS | high | Vulcan is the Roman counterpart of Hephaestus. | Oxford Classical Dictionary, Roman Religion entries SRC_ROMAN_OCD | reviewed | |
| 1407 | Demons ENT_CHR_DEMONS | reception_of | Hephaestus ENT_HEPHAESTUS | medium | Hephaestus received into the Christian demonic class; named by Justin Martyr among demon-promoted gods. | Justin Martyr, First and Second Apologies (c. 150–165 CE) SRC_JUSTIN_MARTYR_APOLOGIES | reviewed | Patristic Period PER_PATRISTIC |
| 1576 | Ptah ENT_EGY_PTAH | received_as | Hephaestus ENT_HEPHAESTUS | high | Herodotus explicitly equates Ptah with Hephaestus at 3.37, where he refers to the temple of Ptah at Memphis as the temple of Hephaestus: "the temple of Hephaestus" (= Ptah) at Memphis is where Cambyses committed his sacrilege. Memphis itself was sometimes called "Hephaestia" by Greek writers. The equation rests on shared craftsmanship and creation attributes: Ptah is the divine craftsman and creator-by-word in Egyptian theology; Hephaestus is the divine craftsman and smith of the Greek pantheon. Both are associated with fire, metalwork, and the creative power to fashion divine objects. The identification was widespread in the Ptolemaic and Roman periods. | Herodotus, Histories (c. 430 BCE) SRC_HERODOTUS_HISTORIES | reviewed | Late Period PER_EGY_LATE_PERIOD |
| 1724 | Hera ENT_HERA | parent_of | Hephaestus ENT_HEPHAESTUS | high | Hesiod Theogony 927-929: Hera bore Hephaestus alone, without Zeus (Hesiodic tradition). | Hesiod, Theogony and Works and Days SRC_HESIOD_THEOGONY | approved | |
| 2492 | Svarog ENT_SLAV_SVAROG | aligned_with | Hephaestus ENT_HEPHAESTUS | high | The Slavic translation of the chronicle of John Malalas explicitly glosses Svarog with the Greek smith-god Hephaistos (and Dažbog with Helios), an attested medieval interpretatio. | Aleksander Brückner, Mitologia Słowiańska i Polska (Krakowska Spółka Wydawnicza, Krakow, 1918; repr. Wydawnictwo Naukowe PWN, Warsaw, 1980) SRC_BRUCKNER_SLAVIC_MYTH | reviewed | |
| 3477 | Sethlans ENT_ETR_SETHLANS | syncretized_with | Hephaestus ENT_HEPHAESTUS | high | The Etruscan Hephaestus. | De Grummond, Nancy Thomson. Etruscan Myth, Sacred History, and Legend (University of Pennsylvania Museum, 2006) SRC_DEGRUMMOND_ETRUSCAN | reviewed | |
| 3521 | Vulcan ENT_ROM_VULCAN | syncretized_with | Hephaestus ENT_HEPHAESTUS | high | Vulcan is the Roman Hephaestus. | Georg Wissowa, Religion und Kultus der Römer (2nd ed., Munich, 1912) SRC_WISSOWA_RKR | 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]);