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)'}
13 rows where relationship_type = "savior_of"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, object_entity_id, confidence, rationale, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 606 | Christ ENT_GNO_CHRIST | savior_of | Salvation ENT_SALVATION | high | Christ functions as revealer and savior. | Bentley Layton, The Gnostic Scriptures SRC_LAYTON_GNOSTIC | reviewed | |
| 651 | Soter ENT_VAL_SOTER | savior_of | Salvation ENT_SALVATION | high | Soter means Savior and is associated with restoration/salvation. | Bentley Layton, The Gnostic Scriptures SRC_LAYTON_GNOSTIC | reviewed | |
| 652 | Soter ENT_SOTER | savior_of | Salvation ENT_SALVATION | high | Soter means Savior and is associated with restoration/salvation. | Bentley Layton, The Gnostic Scriptures SRC_LAYTON_GNOSTIC | reviewed | |
| 933 | Hibil Ziwa ENT_MAN_HIBIL_ZIWA | savior_of | Salvation ENT_SALVATION | high | Hibil Ziwa functions as rescuer/savior. | Ginza Rba SRC_GINZA_RBA | reviewed | |
| 934 | Manda d-Hayyi ENT_MAN_MANDA_D_HAYYI | savior_of | Salvation ENT_SALVATION | high | Manda d-Hayyi is a salvific revealer. | Ginza Rba SRC_GINZA_RBA | reviewed | |
| 947 | Light Mind ENT_MANICH_LIGHT_MIND | savior_of | Awakening ENT_AWAKENING | high | Light Mind awakens or saves the soul. | Samuel N. C. Lieu, Manichaeism in the Later Roman Empire and Medieval China SRC_LIEU_MANICHAEISM | reviewed | |
| 974 | Living Spirit ENT_MANICH_LIVING_SPIRIT | savior_of | Primal Man ENT_MANICH_PRIMAL_MAN | high | Living Spirit rescues Primal Man from Darkness. | Manichaean Kephalaia SRC_MANICHAEAN_KEPHALAIA | reviewed | |
| 976 | Living Spirit ENT_MANICH_LIVING_SPIRIT | savior_of | Salvation ENT_SALVATION | high | Living Spirit rescues Primal Man and participates in salvation history. | Manichaean Kephalaia SRC_MANICHAEAN_KEPHALAIA | reviewed | |
| 978 | Jesus Splendour ENT_MANICH_JESUS_SPLENDOUR | savior_of | Salvation ENT_SALVATION | high | Jesus Splendour is a savior/revealer figure. | Samuel N. C. Lieu, Manichaeism in the Later Roman Empire and Medieval China SRC_LIEU_MANICHAEISM | reviewed | |
| 1753 | Jesus Christ ENT_JESUS_CHRIST | savior_of | Salvation ENT_SALVATION | high | New Testament (John 3:16-17; Matthew 1:21; Luke 2:11): Jesus named explicitly as savior and his mission defined as saving his people from sin. | New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT | approved | |
| 3508 | Athanasius of Alexandria ENT_ORTH_ATHANASIUS | savior_of | Jesus Christ ENT_JESUS_CHRIST | low | Champion of the full divinity of Christ at Nicaea. | The Synaxarion (the Lives of the Saints of the Orthodox Church) SRC_SYNAXARION | reviewed | |
| 3518 | Vladimir ENT_ORTH_VLADIMIR | savior_of | Protection of the Theotokos ENT_ORTH_POKROV | low | Equal-to-the-Apostles who brought the Rus to the veneration of the Theotokos and Christ. | The Synaxarion (the Lives of the Saints of the Orthodox Church) SRC_SYNAXARION | reviewed | |
| 3807 | Thomas Becket ENT_SAINT_BECKET | savior_of | Jesus Christ ENT_JESUS_CHRIST | low | Becket, martyred for the liberty of the Church. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | 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]);