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 object_entity_id = "ENT_NOR_ODIN"
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 |
|---|---|---|---|---|---|---|---|---|
| 861 | Fenrir ENT_NOR_FENRIR | opposes | Odin ENT_NOR_ODIN | high | Fenrir is the eschatological enemy of Odin. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 3135 | Mimir ENT_NOR_MIMIR | aligned_with | Odin ENT_NOR_ODIN | high | Odin consults the well and the severed head of Mimir for wisdom. | Poetic Edda SRC_POETIC_EDDA | reviewed | |
| 3137 | Ymir ENT_NOR_YMIR | slain_by | Odin ENT_NOR_ODIN | high | Odin and his brothers slay Ymir and shape the world from his body. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 3706 | Hœnir ENT_NOR_HOENIR | paired_with | Odin ENT_NOR_ODIN | medium | With Odin (and Lodurr) gives life and sense to the first humans. | Poetic Edda SRC_POETIC_EDDA | reviewed | |
| 3707 | Lóðurr ENT_NOR_LODURR | paired_with | Odin ENT_NOR_ODIN | medium | One of the three creator-gods of Voluspa 18. | Poetic Edda SRC_POETIC_EDDA | reviewed | |
| 3756 | Hermóðr ENT_NOR_HERMOD | child_of | Odin ENT_NOR_ODIN | medium | Hermod, son of Odin, who rides to Hel for Baldr. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 3761 | Einherjar ENT_NOR_EINHERJAR | presided_over_by | Odin ENT_NOR_ODIN | high | Odin gathers and leads the einherjar. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 7421 | Woden ENT_ASX_WODEN | aligned_with | Odin ENT_NOR_ODIN | high | Woden is the Old English reflex of the same Germanic deity as Norse Odin (Wodanaz). | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7547 | Volsung Cycle (Matter of the North) ENT_GSAGA_VOLSUNG_CYCLE | reception_of | Odin ENT_NOR_ODIN | high | Odin appears throughout the Volsung legend (planting the sword in Barnstokkr, advising Sigurd, claiming the slain), linking the literary cycle to the Norse divine cosmos. | Byock, Jesse L. (trans.), The Saga of the Volsungs: The Norse Epic of Sigurd the Dragon Slayer (Penguin Classics) SRC_BYOCK_VOLSUNGS | reviewed | |
| 7548 | Volsung ENT_GSAGA_VOLSUNG | child_of | Odin ENT_NOR_ODIN | medium | The Volsung line is descended from Odin via Sigi in the saga's genealogy (Byock). | Byock, Jesse L. (trans.), The Saga of the Volsungs: The Norse Epic of Sigurd the Dragon Slayer (Penguin Classics) SRC_BYOCK_VOLSUNGS | reviewed | |
| 7550 | Starkadr ENT_GSAGA_STARKADR | patronized_by | Odin ENT_NOR_ODIN | medium | Starkadr is granted long life and martial prowess by Odin (and cursed by Thor), per Gautreks saga. | Byock, Jesse L. (trans.), The Saga of the Volsungs: The Norse Epic of Sigurd the Dragon Slayer (Penguin Classics) SRC_BYOCK_VOLSUNGS | reviewed | |
| 7551 | Brynhild ENT_GSAGA_BRYNHILD | associated_with | Odin ENT_NOR_ODIN | medium | As a valkyrie Brynhild is one of Odin's shieldmaidens, put to sleep by him for disobedience. | Byock, Jesse L. (trans.), The Saga of the Volsungs: The Norse Epic of Sigurd the Dragon Slayer (Penguin Classics) SRC_BYOCK_VOLSUNGS | reviewed | |
| 7715 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Odin ENT_NOR_ODIN | high | Modern Heathens venerate Odin as a chief god of the reconstructed Norse pantheon. | 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]);