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)'}
14 rows where relationship_type = "participates_in_creation"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, object_entity_id, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 530 | Sophia/Wisdom ENT_ISR_SOPHIA | participates_in_creation | Creation ENT_CREATION | medium | Wisdom participates in creation/order traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 597 | Sophia ENT_GNO_SOPHIA | participates_in_creation | Creation ENT_CREATION | medium | Sophia’s fall often triggers lower creation/demiurgic generation. | Bentley Layton, The Gnostic Scriptures SRC_LAYTON_GNOSTIC | reviewed | |
| 632 | Achamoth ENT_VAL_ACHAMOTH | participates_in_creation | Creation ENT_CREATION | medium | Achamoth is involved in the emergence of lower creation through the Demiurge. | Bentley Layton, The Gnostic Scriptures SRC_LAYTON_GNOSTIC | reviewed | |
| 923 | Ptahil ENT_MAN_PTAHIL | participates_in_creation | Creation ENT_CREATION | high | Ptahil participates in material/world creation. | Ginza Rba SRC_GINZA_RBA | reviewed | |
| 950 | Great Builder ENT_MANICH_GREAT_BUILDER | participates_in_creation | Creation ENT_CREATION | medium | Great Builder participates in cosmic construction/ordering. | Manichaean Kephalaia SRC_MANICHAEAN_KEPHALAIA | reviewed | |
| 1039 | Adam Kadmon ENT_JM_ADAM_KADMON | participates_in_creation | Creation ENT_CREATION | medium | Adam Kadmon functions as cosmic template in creation/emanation. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | |
| 3016 | Belet-ili ENT_MES_BELET_ILI | participates_in_creation | Creation ENT_CREATION | high | Belet-ili/Mami fashions humankind from clay in Atrahasis. | The Atrahasis Epic (Akkadian flood and creation-of-humanity myth), c. 1700 BCE SRC_ATRAHASIS | reviewed | |
| 3904 | Iusaaset ENT_EGY_IUSAASET | participates_in_creation | Creation ENT_CREATION | medium | As the hand of Atum, agent of the first creative act | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 6460 | Great Builder ENT_MANICH_GREAT_BUILDER | participates_in_creation | World of Light ENT_MANICH_WORLD_LIGHT | medium | The Great Builder constructs the New Earth / New Paradise as a repository for the rescued Light, an extension of the World of Light. Lieu. | Samuel N. C. Lieu, Manichaeism in the Later Roman Empire and Medieval China SRC_LIEU_MANICHAEISM | reviewed | |
| 6461 | Porter ENT_MANICH_PORTER | participates_in_creation | World of Light ENT_MANICH_WORLD_LIGHT | low | The Porter upholds the cosmos fashioned by the Living Spirit from the bodies of the defeated archons, the apparatus that filters Light back toward the World of Light. | Manichaean Kephalaia SRC_MANICHAEAN_KEPHALAIA | reviewed | |
| 6568 | The Haftan (The Seven) ENT_YRS_HAFTAN | participates_in_creation | Jam (ritual assembly) ENT_YRS_JAM | medium | The archetypal first jam is held among the Haftan at creation in the Kalam, the model for the earthly assembly (Hamzeh'ee). | M. Reza Hamzeh'ee, The Yaresan: A Sociological, Historical and Religio-Historical Study of a Kurdish Community (1990) SRC_HAMZEHEE_YARESAN | reviewed | |
| 6602 | Jehovah / Jesus Christ (LDS) ENT_LDS_JEHOVAH_CHRIST | participates_in_creation | Kolob ENT_LDS_KOLOB | medium | Under the Father, the premortal Jehovah/Christ is the creator of the worlds; Kolob governs in the LDS cosmological order created in this framework (Book of Abraham 3–4). | Terryl L. Givens, Wrestling the Angel: The Foundations of Mormon Thought — Cosmos, God, Humanity (Oxford University Press, 2015) SRC_GIVENS_WRESTLING | reviewed | |
| 6606 | Premortal Spirit Existence (Pre-existence) ENT_LDS_PREMORTAL_SPIRITS | participates_in_creation | Council in Heaven ENT_LDS_COUNCIL_HEAVEN | medium | The premortal spirits, including the 'noble and great ones,' participated in the Council in Heaven (Book of Abraham 3:22–28). | Terryl L. Givens, Wrestling the Angel: The Foundations of Mormon Thought — Cosmos, God, Humanity (Oxford University Press, 2015) SRC_GIVENS_WRESTLING | reviewed | |
| 6853 | Joshua (Samaritan: builder of the Gerizim altar) ENT_SAM_JOSHUA | participates_in_creation | Rahuta and Fanuta (Favor and Disfavor) ENT_SAM_RAHUTA_FANUTA | low | Joshua's establishment of Gerizim worship inaugurates the era of divine Favor (Rahuta). | Robert T. Anderson & Terry Giles, The Keepers: An Introduction to the History and Culture of the Samaritans (Hendrickson, 2002) SRC_ANDERSON_GILES_KEEPERS | 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]);