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)'}
12 rows where subject_entity_id = "ENT_NPG_HEATHENRY"
This data as json, CSV (advanced)
Suggested facets: confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 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 | |
| 7716 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Thor ENT_NOR_THOR | high | Thor (Mjolnir cult) is among the most actively worshipped gods in modern Heathenry. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7717 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Freyja ENT_NOR_FREYJA | high | Freyja is widely venerated in modern Heathenry, especially in seidr practice. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7718 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Freyr ENT_NOR_FREYR | high | Freyr is honoured as a Vanir fertility god in modern Heathen blot. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7719 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Frigg ENT_NOR_FRIGG | medium | Frigg is received as a goddess of the household and hearth in modern Heathenry. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7720 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Tyr ENT_NOR_TYR | medium | Tyr is venerated as a god of justice and oaths in modern Heathenry. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7721 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Baldr ENT_NOR_BALDR | medium | Baldr is honoured within the reconstructed pantheon of modern Heathenry. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7722 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Heimdall ENT_NOR_HEIMDALL | medium | Heimdall is received as a guardian god in modern Heathen devotion. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7723 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Njord ENT_NOR_NJORD | medium | Njord is venerated as a Vanir sea god in modern Heathenry. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7724 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Skadi ENT_NOR_SKADI | medium | Skadi is honoured in modern Heathen practice as a goddess of winter and the hunt. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | reviewed | |
| 7725 | Heathenry (Asatru) ENT_NPG_HEATHENRY | reception_of | Hel ENT_NOR_HEL | medium | Hel is received as a goddess of the dead by some modern Heathens. | Michael F. Strmiska (ed.), Modern Paganism in World Cultures: Comparative Perspectives (ABC-CLIO, 2005) SRC_STRMISKA_MODERN_PAGANISM | 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]);