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)'}
2 rows where object_entity_id = "ENT_SYN_SERAPIS"
This data as json, CSV (advanced)
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 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 |
| 3305 | Apis ENT_EGY_APIS | syncretized_with | Serapis ENT_SYN_SERAPIS | high | Osiris-Apis became the Ptolemaic god Serapis. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | 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]);