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)'}
5 rows where object_entity_id = "ENT_POVERTY"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2118 | Generosity ENT_GENEROSITY | paired_with | Poverty ENT_POVERTY | medium | Generosity and Poverty are complementary cross-traditional abstractions: generosity presupposes the giver's willingness to share; voluntary poverty (as in mendicant and Sufi traditions) is the rejection of surplus in favour of giving. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | approved | |
| 2121 | Francis of Assisi ENT_SAINT_FRANCIS | patron_of | Poverty ENT_POVERTY | high | Francis of Assisi took a vow of absolute poverty as the foundation of the Franciscan order; he is described as married to "Lady Poverty" in the Franciscan tradition (Thomas of Celano, Vita Prima). | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | approved | |
| 6153 | Vincent de Paul ENT_EMC_VINCENT_DE_PAUL | patron_of | Poverty ENT_POVERTY | high | Vincent de Paul is patron of charitable works for the poor. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6154 | Louise de Marillac ENT_EMC_LOUISE_MARILLAC | patron_of | Poverty ENT_POVERTY | high | Louise de Marillac is patroness of social workers and service to the poor. | Butler’s Lives of the Saints SRC_BUTLER_SAINTS | reviewed | |
| 6155 | Benedict Joseph Labre ENT_EMC_BENEDICT_LABRE | patron_of | Poverty ENT_POVERTY | high | Benedict Joseph Labre is patron of the homeless and the destitute. | 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]);