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)'}
12 rows where object_entity_id = "ENT_EGY_OGDOAD"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 231 | Kauket ENT_EGY_KAUKET | member_of | Ogdoad ENT_EGY_OGDOAD | high | Kauket is one of the Ogdoad. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 232 | Kek ENT_EGY_KEK | member_of | Ogdoad ENT_EGY_OGDOAD | high | Kek is one of the Ogdoad. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 233 | Naunet ENT_EGY_NAUNET | member_of | Ogdoad ENT_EGY_OGDOAD | high | Naunet is one of the Ogdoad. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 234 | Amun ENT_EGY_AMUN | member_of | Ogdoad ENT_EGY_OGDOAD | medium | Amun appears in an Ogdoad pair with Amunet. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 235 | Nun ENT_EGY_NUN | member_of | Ogdoad ENT_EGY_OGDOAD | high | Nun is one of the Ogdoad. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 236 | Amunet ENT_EGY_AMUNET | member_of | Ogdoad ENT_EGY_OGDOAD | medium | Amunet appears in an Ogdoad pair with Amun. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 237 | Hauhet ENT_EGY_HAUHET | member_of | Ogdoad ENT_EGY_OGDOAD | high | Hauhet is one of the Ogdoad. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 238 | Heh ENT_EGY_HEH | member_of | Ogdoad ENT_EGY_OGDOAD | high | Heh is one of the Ogdoad. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 2086 | Tenemu ENT_EGY_TENEMU | member_of | Ogdoad ENT_EGY_OGDOAD | high | Tenemu and Tenemut represent the concept of "wandering" or "confusion" within the Hermopolitan Ogdoad, the eight primordial deities who inhabited the chaotic waters before creation. Wilkinson, Complete Gods, p. 33. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | approved | |
| 2087 | Tenemut ENT_EGY_TENEMUT | member_of | Ogdoad ENT_EGY_OGDOAD | high | Tenemut is the female counterpart of Tenemu in the Ogdoad; the male-female pairing is the structural principle of all eight Ogdoad members. Wilkinson, Complete Gods, p. 33. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | approved | |
| 2092 | Neferhotep ENT_EGY_NEFERHOTEP | member_of | Ogdoad ENT_EGY_OGDOAD | medium | Neferhotep is attested in Deir el-Medina votive stelae alongside Meretseger; while not a canonical Ogdoad member, he belongs to the cluster of local beneficent deities worshipped by the Theban necropolis workers. UCLA Encyclopedia of Egyptology. | UCLA Encyclopedia of Egyptology SRC_UCLA_EGYPTOLOGY | approved | |
| 2433 | Thoth ENT_EGY_THOTH | patron_of | Ogdoad ENT_EGY_OGDOAD | medium | Thoth is the patron deity of Hermopolis Magna (khmun, the City of the Eight), the city whose name, cosmological identity, and central religious system are the Ogdoad. The Hermopolitan tradition in some versions makes Thoth the active creative agent who gives voice to the Ogdoad's latent primordial forces — he is the divine Logos/Word who speaks the creator into existence from the primordial waters stirred by the Ogdoad. In one version of the Hermopolitan creation narrative, it is Thoth (in his form as the ibis or the sacred baboon) who lays the primordial cosmic egg from which the creator (Ra-Atum or Thoth himself) hatches at the first sunrise. The relationship between Thoth and the Ogdoad is thus that of creative mediator/patron to the primordial forces he organizes and articulates. Confidence medium: the specific tradition varies — in some versions Thoth creates through the Ogdoad; in others the Ogdoad creates independently and Thoth is simply their city's patron; in yet others Thoth is identified with the Ogdoad's collective wisdom. Wilkinson (2003) pp. 99-102; Pinch (2002) pp. 198-200. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | Old Kingdom PER_EGY_OLD_KINGDOM |
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]);