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)'}
11 rows where object_entity_id = "ENT_EMC_JESUITS"
This data as json, CSV (advanced)
Suggested facets: source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 6121 | Ignatius of Loyola ENT_EMC_IGNATIUS_LOYOLA | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Ignatius of Loyola founded and led the Society of Jesus (1540). | Ignatius of Loyola, Spiritual Exercises (1548) SRC_IGNATIUS_EXERCISES | reviewed | |
| 6122 | Francis Xavier ENT_EMC_FRANCIS_XAVIER | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Francis Xavier was a founding companion of the Society of Jesus. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6123 | Peter Faber ENT_EMC_PETER_FABER | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Peter Faber was a founding companion of the Society of Jesus. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6124 | Francis Borgia ENT_EMC_FRANCIS_BORGIA | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Francis Borgia was the third Superior General of the Society of Jesus. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6125 | Peter Canisius ENT_EMC_PETER_CANISIUS | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Peter Canisius was a leading early Jesuit. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6126 | Robert Bellarmine ENT_EMC_ROBERT_BELLARMINE | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Robert Bellarmine was a Jesuit cardinal and theologian. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6127 | Aloysius Gonzaga ENT_EMC_ALOYSIUS_GONZAGA | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Aloysius Gonzaga was a Jesuit novice. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6128 | Stanislaus Kostka ENT_EMC_STANISLAUS_KOSTKA | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Stanislaus Kostka was a Jesuit novice. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6129 | Peter Claver ENT_EMC_PETER_CLAVER | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Peter Claver was a Jesuit missionary at Cartagena. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6130 | Isaac Jogues ENT_EMC_ISAAC_JOGUES | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Isaac Jogues was a Jesuit missionary in New France. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6131 | Jean de Brébeuf ENT_EMC_JEAN_DE_BREBEUF | member_of | Society of Jesus (Jesuits) ENT_EMC_JESUITS | high | Jean de Brébeuf was a Jesuit missionary to the Huron. | 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]);