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)'}
9 rows where subject_entity_id = "ENT_EGY_OSIRIS"
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 |
|---|---|---|---|---|---|---|---|---|
| 200 | Osiris ENT_EGY_OSIRIS | parent_of | Horus ENT_EGY_HORUS | high | Horus is child of Osiris and Isis. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 203 | Osiris ENT_EGY_OSIRIS | spouse_of | Isis ENT_EGY_ISIS | high | Osiris and Isis are divine spouses. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 298 | Osiris ENT_EGY_OSIRIS | judges | Dead ENT_DEAD | high | Osiris presides over judgment of the dead. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 304 | Osiris ENT_EGY_OSIRIS | judges | Maat ENT_EGY_MAAT | medium | Osirian judgment is structured by Maat. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 339 | Osiris ENT_EGY_OSIRIS | patron_of | Abundance ENT_ABUNDANCE | medium | Osiris is linked to fertility, vegetation, and renewal. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 371 | Osiris ENT_EGY_OSIRIS | patron_of | Sovereignty ENT_SOVEREIGNTY | medium | Osiris is associated with kingship, especially dead/transfigured kingship. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 417 | Osiris ENT_EGY_OSIRIS | rules | Underworld ENT_UNDERWORLD | high | Osiris is the ruler and judge of the Egyptian underworld (Duat); as lord of the dead he presides over the realm of the afterlife. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 1456 | Osiris ENT_EGY_OSIRIS | received_as | Serapis ENT_SYN_SERAPIS | high | Serapis was deliberately created by Ptolemy I Soter (c. 286 BCE) as a syncretic fusion of Osiris and the Apis bull, supplemented with Greek attributes of Zeus, Hades, and Asclepius, to serve as a deity unifying Greek and Egyptian subjects of the new kingdom. Plutarch (De Is. ch. 28) documents the Ptolemaic invention; Tacitus (Histories 4.83) records the oracle that directed the creation. The Osirian element — resurrection, afterlife sovereignty, identification with the dead Pharaoh — is the primary Egyptian contribution to the Serapic complex. Highest-confidence Egyptian→syncretic chain in this dataset. | Plutarch, On Isis and Osiris (De Iside et Osiride, c. 100–120 CE) SRC_PLUTARCH_ISIS_OSIRIS | reviewed | Hellenistic Period PER_GRK_HELLENISTIC |
| 1648 | Osiris ENT_EGY_OSIRIS | paired_with | Hapy ENT_EGY_HAPY_NILE | medium | Osiris and Hapy are paired in Egyptian theology as complementary deities of Nile fertility: Hapy embodies the inundation itself; Osiris embodies the agricultural renewal it enables. They appear together in funerary and agricultural contexts without being identified. Faulkner, Pyramid Texts Utterance 442. | R. O. Faulkner, The Ancient Egyptian Pyramid Texts (Oxford University Press, 1969; repr. Aris & Phillips, 1998) SRC_FAULKNER_PYRAMID_TEXTS | 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]);