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_JM_ADAM_KADMON"
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 |
|---|---|---|---|---|---|---|---|---|
| 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 | |
| 1288 | Adam Kadmon ENT_JM_ADAM_KADMON | equated_with | Anthropos ENT_GNO_ANTHROPOS | medium | Adam Kadmon equated structurally with the Gnostic primordial human (Anthropos) pattern. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | |
| 1289 | Adam Kadmon ENT_JM_ADAM_KADMON | equated_with | Anthropos ENT_VAL_ANTHROPOS | medium | Adam Kadmon equated structurally with the Valentinian Anthropos. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | |
| 1290 | Adam Kadmon ENT_JM_ADAM_KADMON | equated_with | Anthropos ENT_HER_ANTHROPOS | medium | Adam Kadmon equated structurally with the Hermetic Anthropos. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | |
| 1555 | Adam Kadmon ENT_JM_ADAM_KADMON | reception_of | Adam ENT_ISR_ADAM | medium | Adam Kadmon as the Kabbalistic cosmological projection of the biblical Adam's tselem elohim status (Genesis 1:26-27); the primordial divine human of Lurianic Kabbalah as an elaboration of the Israelite creation theology. | Gershom Scholem, Kabbalah SRC_SCHOLEM_KABBALAH | reviewed | Second Temple Period PER_ISR_SECOND_TEMPLE |
| 3103 | Adam Kadmon ENT_JM_ADAM_KADMON | emanates_from | Kav ENT_JM_KAV | high | Adam Kadmon is the first emanation projected through the Kav into the vacated space. | Hayyim Vital, Etz Hayyim (the Tree of Life), c. 1573 (the systematic exposition of Isaac Luria's teaching) SRC_ETZ_HAYYIM | 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]);