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)'}
3 rows where subject_entity_id = "ENT_SAINT_FRANCIS"
This data as json, CSV (advanced)
Suggested facets: relationship_type, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1804 | Francis of Assisi ENT_SAINT_FRANCIS | patron_of | Earth ENT_EARTH | high | Butler's Lives of the Saints: Francis of Assisi (1181/82-1226 CE) is the patron saint of animals and the natural environment; his Canticle of the Creatures praises Brother Sun, Sister Moon, Brother Wind, and all creation. | 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 | |
| 6076 | Francis of Assisi ENT_SAINT_FRANCIS | member_of | Mendicant-Order Saints ENT_LMW_MENDICANT_SAINTS | high | Founder of the Franciscan Order; head of the mendicant-saints group. | 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]);