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_NOR_LOKI"
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 |
|---|---|---|---|---|---|---|---|---|
| 3715 | Sigyn ENT_NOR_SIGYN | consort_of | Loki ENT_NOR_LOKI | high | Sigyn, the faithful wife of Loki. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 3716 | Angrboða ENT_NOR_ANGRBODA | consort_of | Loki ENT_NOR_LOKI | high | Angrboda bears Loki the three monsters. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 3720 | Sleipnir ENT_NOR_SLEIPNIR | child_of | Loki ENT_NOR_LOKI | high | Sleipnir, borne by Loki in the form of a mare. | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 6405 | WitchTok / Online Neopagan Devotion ENT_VF_WITCHTOK | reception_of | Loki ENT_NOR_LOKI | high | Loki has a large, documented WitchTok/Lokean devotional following; modeled as contemporary reception. | Tara Isabella Burton, Strange Rites: New Religions for a Godless World (2020) SRC_BURTON_STRANGE_RITES | reviewed | |
| 7581 | Syrdon ENT_NART_SYRDON | aligned_with | Loki ENT_NOR_LOKI | medium | Comparative mythology (Dumézil school) treats the discord-sowing, malicious trickster Syrdon as the Nart functional cognate of the Norse trickster Loki (Colarusso 2002; Dumézil). | John Colarusso, Nart Sagas from the Caucasus: Myths and Legends from the Circassians, Abazas, Abkhaz, and Ubykhs (Princeton University Press, 2002) SRC_COLARUSSO_NART | reviewed | |
| 7726 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Loki ENT_NOR_LOKI | medium | Loki is venerated by a portion of modern Heathens, though contested within the community. | 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]);