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 source_id = "SRC_MANICHAEAN_PSALM_BOOK"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, confidence, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1762 | Jesus Splendour ENT_MANICH_JESUS_SPLENDOUR | reception_of | Jesus Christ ENT_JESUS_CHRIST | high | Manichaean Psalm Book; Kephalaia: Mani drew on the Jesus tradition and recast Jesus as the cosmic lightworld figure Jesus Splendour. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | approved | |
| 2837 | Call and Answer ENT_MANICH_CALL_ANSWER | emanates_from | Living Spirit ENT_MANICH_LIVING_SPIRIT | high | The Call and Answer are sent by the Living Spirit to the fallen Primal Man. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | reviewed | |
| 2838 | Call and Answer ENT_MANICH_CALL_ANSWER | rescues | Primal Man ENT_MANICH_PRIMAL_MAN | high | The Call rouses, and the Answer raises, the fallen Primal Man. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | reviewed | |
| 2839 | Jesus patibilis ENT_MANICH_JESUS_PATIBILIS | aligned_with | Light Particles ENT_MANICH_LIGHT_PARTICLES | high | Jesus patibilis is the suffering light scattered and bound throughout matter. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | reviewed | |
| 2840 | Jesus patibilis ENT_MANICH_JESUS_PATIBILIS | imprisoned_by | Matter ENT_MANICH_MATTER | high | The Suffering Jesus is the world-soul crucified within matter. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | reviewed | |
| 6444 | Call and Answer ENT_MANICH_CALL_ANSWER | member_of | Manichaean Pantheon (Lightworld Hierarchy) ENT_MANICH_PANTHEON | medium | Call and Answer, paired Lightworld hypostases mediating the rescue of Primal Man; members of the hierarchy. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | reviewed | |
| 6472 | Jesus patibilis ENT_MANICH_JESUS_PATIBILIS | aligned_with | Jesus Splendour ENT_MANICH_JESUS_SPLENDOUR | medium | Jesus patibilis (suffering, immanent Light) and Jesus the Splendour (transcendent revealer) are two aspects of the multiple Manichaean Jesus-figure; aligned as facets of the same name. Lieu. | Manichaean Psalm Book SRC_MANICHAEAN_PSALM_BOOK | 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]);