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)'}
15 rows where object_entity_id = "ENT_MISSION"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1793 | Peter ENT_SAINT_PETER | member_of | Mission ENT_MISSION | high | New Testament (Acts 1-12; Matthew 16:18-19): Peter is the leader of the apostolic mission following the resurrection, head of the Jerusalem community. | New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT | approved | |
| 1794 | Paul ENT_SAINT_PAUL | member_of | Mission ENT_MISSION | high | New Testament (Acts 13-28; Pauline epistles): Paul conducts three major missionary journeys across the Mediterranean, founding communities from Antioch to Rome. | New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT | approved | |
| 6143 | Ignatius of Loyola ENT_EMC_IGNATIUS_LOYOLA | patron_of | Mission ENT_MISSION | high | Ignatius of Loyola and his order embody the Counter-Reformation missionary impulse. | Ignatius of Loyola, Spiritual Exercises (1548) SRC_IGNATIUS_EXERCISES | reviewed | |
| 6144 | Francis Xavier ENT_EMC_FRANCIS_XAVIER | patron_of | Mission ENT_MISSION | high | Francis Xavier is the patron saint of the missions. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6145 | Peter Claver ENT_EMC_PETER_CLAVER | patron_of | Mission ENT_MISSION | high | Peter Claver is patron of missionary work, especially African missions. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6146 | Turibius of Mogrovejo ENT_EMC_TURIBIUS_MOGROVEJO | patron_of | Mission ENT_MISSION | medium | Turibius of Mogrovejo led the evangelizing reform of colonial Peru. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6168 | Charles Borromeo ENT_EMC_CHARLES_BORROMEO | patron_of | Mission ENT_MISSION | medium | Charles Borromeo led the pastoral implementation of Tridentine reform. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6285 | Thérèse of Lisieux ENT_MOC_THERESE_LISIEUX | patron_of | Mission ENT_MISSION | high | Thérèse of Lisieux is co-patron of the missions despite never leaving her cloister. | Thérèse of Lisieux, Story of a Soul (1898) SRC_THERESE_SOUL | reviewed | |
| 6289 | Damien of Molokai ENT_MOC_DAMIEN | patron_of | Mission ENT_MISSION | medium | Damien of Molokai is venerated as a missionary martyr of charity to the lepers. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6290 | Frances Xavier Cabrini ENT_MOC_CABRINI | patron_of | Mission ENT_MISSION | medium | Cabrini founded a missionary congregation serving immigrants; patron of missionary work. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6291 | Katharine Drexel ENT_MOC_DREXEL | patron_of | Mission ENT_MISSION | medium | Drexel devoted her life and fortune to missions among Black and Native Americans. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6292 | Junípero Serra ENT_MOC_SERRA | patron_of | Mission ENT_MISSION | high | Junípero Serra founded the California missions; emblematic missionary saint. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6293 | Teresa of Calcutta ENT_MOC_TERESA_CALCUTTA | patron_of | Mission ENT_MISSION | medium | Mother Teresa founded the Missionaries of Charity serving the destitute worldwide. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6299 | John Vianney ENT_MOC_JOHN_VIANNEY | patron_of | Mission ENT_MISSION | low | The Curé d'Ars is patron of parish priests; loosely tied to the ecclesial-ministry domain. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6301 | John Bosco ENT_MOC_JOHN_BOSCO | patron_of | Mission ENT_MISSION | medium | Don Bosco founded the Salesians, a major teaching/missionary congregation for youth. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | 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]);