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_EGY_HATHOR"
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 |
|---|---|---|---|---|---|---|---|---|
| 1469 | Aphrodite ENT_APHRODITE | reception_of | Hathor ENT_EGY_HATHOR | medium | Aphrodite as Greek reception of Egyptian Hathor via interpretatio graeca; Herodotus 2.41 equates them; shared domains of love, beauty, music, and the sacred cow. Second source of Aphrodite alongside Canaanite Astarte. | Plutarch, On Isis and Osiris (De Iside et Osiride, c. 100–120 CE) SRC_PLUTARCH_ISIS_OSIRIS | reviewed | Classical Period PER_GRK_CLASSICAL |
| 3899 | Hesat ENT_EGY_HESAT | syncretized_with | Hathor ENT_EGY_HATHOR | high | Milk-cow goddess treated as an aspect of Hathor | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 3901 | Ihy ENT_EGY_IHY | child_of | Hathor ENT_EGY_HATHOR | high | Child god, son of Hathor in the Dendera theology | R. O. Faulkner, The Ancient Egyptian Pyramid Texts (Oxford University Press, 1969; repr. Aris & Phillips, 1998) SRC_FAULKNER_PYRAMID_TEXTS | reviewed | |
| 3910 | Mehet-Weret ENT_EGY_MEHETWERET | syncretized_with | Hathor ENT_EGY_HATHOR | medium | The celestial cow identified with Hathor | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 4085 | Bat ENT_EGY_BAT | syncretized_with | Hathor ENT_EGY_HATHOR | high | The archaic cow-goddess Bat was progressively absorbed into Hathor, who took over her sistrum/cow iconography by the Middle Kingdom. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 4105 | Imentet ENT_EGY_IMENTET | syncretized_with | Hathor ENT_EGY_HATHOR | medium | Imentet, goddess of the West and the necropolis, was closely identified with Hathor as Lady of the West. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 5993 | Baalat Gebal ENT_PHO_BAALAT_GEBAL | equated_with | Hathor ENT_EGY_HATHOR | low | Egyptianizing iconography at Byblos led to her identification with Hathor. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | 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]);