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 object_entity_id = "ENT_PRAYER"
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 |
|---|---|---|---|---|---|---|---|---|
| 1048 | Sandalphon ENT_JM_SANDALPHON | associated_ritual | Prayer ENT_PRAYER | high | Sandalphon is associated with prayer and heavenly mediation. | Peter Schäfer, Synopse zur Hekhalot-Literatur SRC_HEKHALOT_SCHAFER_SYNOPSE | reviewed | |
| 6147 | Teresa of Ávila ENT_EMC_TERESA_AVILA | patron_of | Prayer ENT_PRAYER | high | Teresa of Ávila is a Doctor of the Church on contemplative prayer. | Teresa of Ávila, The Interior Castle (1577) SRC_TERESA_CASTLE | reviewed | |
| 6148 | John of the Cross ENT_EMC_JOHN_CROSS | patron_of | Prayer ENT_PRAYER | high | John of the Cross is a Doctor of the Church on contemplative prayer and mysticism. | John of the Cross, The Dark Night of the Soul (c. 1585) SRC_JOHNCROSS_DARKNIGHT | reviewed | |
| 6149 | Francis de Sales ENT_EMC_FRANCIS_DE_SALES | patron_of | Prayer ENT_PRAYER | medium | Francis de Sales taught lay devotional prayer in the Introduction to the Devout Life. | Francis de Sales, Introduction to the Devout Life (1609) SRC_DESALES_DEVOUT | reviewed | |
| 6164 | Rose of Lima ENT_EMC_ROSE_LIMA | patron_of | Prayer ENT_PRAYER | medium | Rose of Lima, Dominican mystic, is venerated as a model of penitential contemplative prayer. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6167 | Philip Neri ENT_EMC_PHILIP_NERI | patron_of | Prayer ENT_PRAYER | medium | Philip Neri, founder of the Oratory, is a patron of joyful Catholic devotion and prayer. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6170 | Paul of the Cross ENT_EMC_PAUL_OF_CROSS | patron_of | Prayer ENT_PRAYER | medium | Paul of the Cross founded the Passionists devoted to meditation on the Passion. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6171 | Joseph of Cupertino ENT_EMC_JOSEPH_CUPERTINO | patron_of | Prayer ENT_PRAYER | low | Joseph of Cupertino was a Franciscan mystic noted for ecstatic prayer. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6172 | Jane Frances de Chantal ENT_EMC_JANE_CHANTAL | patron_of | Prayer ENT_PRAYER | low | Jane Frances de Chantal co-founded the contemplative Visitation order. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6175 | Stanislaus Kostka ENT_EMC_STANISLAUS_KOSTKA | patron_of | Prayer ENT_PRAYER | low | Stanislaus Kostka is patron of novices and Catholic youth, models of devotion. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6320 | Theophan the Recluse ENT_ORTH_THEOPHAN_RECLUSE | teaches | Prayer ENT_PRAYER | high | Theophan's principal teaching concerned unceasing prayer and the prayer of the heart. | The Philokalia (anthology of the hesychast Fathers), comp. 1782 SRC_PHILOKALIA | reviewed | |
| 6321 | Ignatius Brianchaninov ENT_ORTH_IGNATIUS_BRIANCHANINOV | teaches | Prayer ENT_PRAYER | high | Ignatius's central work, On the Prayer of Jesus, teaches the practice of the Jesus Prayer. | The Synaxarion (the Lives of the Saints of the Orthodox Church) SRC_SYNAXARION | reviewed | |
| 6324 | Silouan the Athonite ENT_ORTH_SILOUAN_ATHONITE | teaches | Prayer ENT_PRAYER | high | Silouan taught the practice of the Jesus Prayer and prayer for the whole world. | The Philokalia (anthology of the hesychast Fathers), comp. 1782 SRC_PHILOKALIA | reviewed | |
| 6326 | Paisios of Mount Athos ENT_ORTH_PAISIOS_ATHONITE | teaches | Prayer ENT_PRAYER | high | Paisios taught the Jesus Prayer and was a renowned counselor on the spiritual life. | The Philokalia (anthology of the hesychast Fathers), comp. 1782 SRC_PHILOKALIA | 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]);