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)'}
6 rows where object_entity_id = "ENT_CEL_BRIGID"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 3417 | Bres ENT_CEL_BRES | consort_of | Brigid ENT_CEL_BRIGID | high | Husband of Brigid. | Cath Maige Tuired (The Second Battle of Mag Tuired), ed. E. A. Gray (ITS, 1982) SRC_CATH_MAIGE_TUIRED | reviewed | |
| 3468 | Brigantia ENT_BRI_BRIGANTIA | aligned_with | Brigid ENT_CEL_BRIGID | medium | Brittonic cognate of (but distinct from) Irish Brigid. | Miranda Green, Dictionary of Celtic Myth and Legend SRC_GREEN_CELTIC_GODS | reviewed | |
| 3812 | Brigid of Kildare ENT_SAINT_BRIGID_KILDARE | reception_of | Brigid ENT_CEL_BRIGID | high | The cult of St Brigid of Kildare absorbed much of the older Irish goddess Brigid. | David Hugh Farmer, The Oxford Dictionary of Saints (Oxford University Press, 5th ed. 2011) SRC_FARMER_SAINTS | reviewed | |
| 6413 | WitchTok / Online Neopagan Devotion ENT_VF_WITCHTOK | reception_of | Brigid ENT_CEL_BRIGID | medium | Brigid is widely venerated on WitchTok (and modern Druidry) for hearth, healing, and poetry; contemporary devotional reception. | Tara Isabella Burton, Strange Rites: New Religions for a Godless World (2020) SRC_BURTON_STRANGE_RITES | reviewed | |
| 7728 | Modern Druidry (OBOD/ADF) ENT_NPG_DRUIDRY | reception_of | Brigid ENT_CEL_BRIGID | high | Brigid is among the most widely venerated deities in modern Druidry. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7736 | The Great Goddess (Goddess Movement) ENT_NPG_GREAT_GODDESS | embodied_by | Brigid ENT_CEL_BRIGID | medium | In the Goddess movement, named goddesses such as Brigid are received as aspects/embodiments of the one Great Goddess. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | 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]);