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)'}
7 rows where object_entity_id = "ENT_JM_SHEKHINAH"
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 |
|---|---|---|---|---|---|---|---|---|
| 1442 | Sophia/Wisdom ENT_ISR_SOPHIA | received_as | Shekhinah ENT_JM_SHEKHINAH | medium | The Kabbalistic Shekhinah (divine indwelling/feminine presence, tenth sefirah in the Zohar) is the reception and elaboration of the Sophia/Wisdom tradition: Proverbs 8:30–31 presents Wisdom as beside God "like a master workman" and "delighting before him"; Sirach 24 has Wisdom dwell in Israel. The Zohar develops this into the Shekhinah as God's feminine presence that dwells with Israel in exile, weeps for Jerusalem, and is reunited with the masculine divine at the end of time. Scholem (Kabbalah, 1974) explicitly traces this from Sophia through Philo into Kabbalistic theology. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | Jewish Mystical Medieval PER_JM_MEDIEVAL |
| 1446 | Sophia ENT_GNO_SOPHIA | received_as | Shekhinah ENT_JM_SHEKHINAH | medium | The Gnostic Sophia (exiled aeon who falls from the Pleroma and must be redeemed) is structurally parallel to — and may have directly influenced — the Kabbalistic Shekhinah (divine presence that goes into exile with Israel and yearns for reunion with the masculine divine at the end of time). Both are feminine divine beings in a state of exile/fall who must be restored. Scholem (Origins of the Kabbalah) discusses the Gnostic Sophia's contribution to Kabbalistic conceptions of the Shekhinah; Idel notes the structural parallel while debating the direction of influence. Medium confidence: the parallel is documented; direct influence vs. parallel development remains debated. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | Jewish Mystical Medieval PER_JM_MEDIEVAL |
| 1448 | Athirat/Asherah ENT_CAN_ASHERAH | received_as | Shekhinah ENT_JM_SHEKHINAH | low | The most speculative chain in the feminine divine transmission: Raphael Patai (The Hebrew Goddess, 1967) argues that the suppressed Asherah (goddess-beside-El) resurfaces in the Kabbalistic Shekhinah, maintaining the goddess-beside-God structural position across two millennia of monotheistic sublimation. Scholem is more cautious. The chain Asherah → Sophia → Shekhinah (established via the prior Canaanite→Israelite reception script) is the full proposed transmission. Low confidence: the hypothesis is influential but unverifiable from primary texts alone. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | Jewish Mystical Medieval PER_JM_MEDIEVAL |
| 2552 | Malkhut ENT_JM_MALKHUT | identified_with | Shekhinah ENT_JM_SHEKHINAH | high | In Kabbalah, the tenth Sefirah Malkhut is identified with the Shekhinah, the indwelling presence. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | Jewish Mystical Medieval PER_JM_MEDIEVAL |
| 3096 | Nukva ENT_JM_NUKVA | aligned_with | Shekhinah ENT_JM_SHEKHINAH | high | Nukva is the Shekhinah, the indwelling divine presence. | Hayyim Vital, Etz Hayyim (the Tree of Life), c. 1573 (the systematic exposition of Isaac Luria's teaching) SRC_ETZ_HAYYIM | reviewed | |
| 6203 | Solomon Alkabetz ENT_JM_ALKABETZ | aligned_with | Shekhinah ENT_JM_SHEKHINAH | high | Alkabetz's Lekhah Dodi welcomes the Sabbath as the Shekhinah, the divine bride. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | |
| 6863 | The Glory (Kavod / the divine Light) ENT_SAM_GLORY | aligned_with | Shekhinah ENT_JM_SHEKHINAH | medium | The Samaritan divine Glory/Kavod is a functional cognate of the Jewish Shekhinah/Kavod as God's manifest presence; parallel mediating concepts in sister Israelite traditions (modern comparative alignment, not identity). | Memar Marqah (Tibat Marqe), 4th-c. Samaritan Aramaic theological treatise attributed to Marqah, ed./trans. J. Macdonald (BZAW 84, 1963) SRC_MEMAR_MARQAH | 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]);