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)'}
13 rows where source_id = "SRC_GOLDEN_LEGEND"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence, rationale, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1800 | Catherine of Alexandria ENT_SAINT_CATHERINE_ALEX | patron_of | Speech ENT_SPEECH | high | Golden Legend (Jacobus de Voragine): Catherine of Alexandria is celebrated for confounding fifty pagan philosophers in public debate; she is the patron of scholars, theologians, and orators. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | approved | |
| 1805 | George ENT_SAINT_GEORGE | slays | Dragon ENT_DRAGON | high | Golden Legend (Jacobus de Voragine, c. 1260 CE): George slays a dragon that was terrorising Silene, rescuing a princess and converting the city to Christianity. The dragon-slaying motif is the foundational narrative of George's cult. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | approved | |
| 3807 | Thomas Becket ENT_SAINT_BECKET | savior_of | Jesus Christ ENT_JESUS_CHRIST | low | Becket, martyred for the liberty of the Church. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 3811 | The Three Kings ENT_SAINT_THREE_KINGS | aligned_with | Jesus Christ ENT_JESUS_CHRIST | medium | The Magi who adored the infant Christ. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 3825 | Barbara ENT_CHR_BARBARA | member_of | The Fourteen Holy Helpers ENT_SAINT_FOURTEEN_HELPERS | high | One of the canonical Fourteen Holy Helpers | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 3826 | Christopher ENT_CHR_CHRISTOPHER | member_of | The Fourteen Holy Helpers ENT_SAINT_FOURTEEN_HELPERS | high | One of the canonical Fourteen Holy Helpers | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 3827 | Margaret of Antioch ENT_CHR_MARGARET | member_of | The Fourteen Holy Helpers ENT_SAINT_FOURTEEN_HELPERS | high | One of the canonical Fourteen Holy Helpers | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 3888 | Cecilia ENT_CHR_CECILIA | patron_of | Music ENT_MUSIC | high | Patron saint of music and musicians | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 3890 | Sebastian ENT_CHR_SEBASTIAN | opposes | Disease ENT_DISEASE | medium | Invoked against plague | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 8002 | Agnes ENT_CHR_AGNES | member_of | The Communion of Saints ENT_CHR_COMMUNION_SAINTS | high | A venerated saint of the Christian calendar (Communion of Saints). | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 8003 | Lawrence ENT_CHR_LAWRENCE | member_of | The Communion of Saints ENT_CHR_COMMUNION_SAINTS | high | A venerated saint of the Christian calendar (Communion of Saints). | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 8015 | Agnes ENT_CHR_AGNES | embodies | Martyrdom ENT_MARTYRDOM | high | Venerated as a Christian martyr. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | reviewed | |
| 8016 | Lawrence ENT_CHR_LAWRENCE | embodies | Martyrdom ENT_MARTYRDOM | high | Venerated as a Christian martyr. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | 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]);