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)'}
6 rows where subject_entity_id = "ENT_EGY_PTAH"
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 |
|---|---|---|---|---|---|---|---|---|
| 262 | Ptah ENT_EGY_PTAH | paired_with | Seker ENT_EGY_SEKER | high | Ptah and Seker are joined in Memphite funerary/craft theology. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 263 | Ptah ENT_EGY_PTAH | paired_with | Seshat ENT_EGY_SESHAT | medium | Ptah and Seshat overlap in craft, measurement, and temple foundation contexts. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 264 | Ptah ENT_EGY_PTAH | identified_with | Tatenen ENT_EGY_TATENEN | medium | Ptah and Tatenen overlap in Memphite creator/earth theology. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 353 | Ptah ENT_EGY_PTAH | patron_of | Craft ENT_CRAFT | high | Ptah is a creator/craft deity. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 1572 | Ptah ENT_EGY_PTAH | spouse_of | Sekhmet ENT_EGY_SEKHMET | high | Ptah and Sekhmet form the divine couple of the Memphis Triad (Ptah–Sekhmet–Nefertem). Sekhmet ("the Powerful One") is Ptah's fierce consort and the lioness goddess of war and pestilence; their pairing unites the creative/craftsman principle (Ptah) with the destructive/protective force (Sekhmet). Wilkinson (2003) pp. 181, 212. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | Old Kingdom PER_EGY_OLD_KINGDOM |
| 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 |
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]);