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)'}
3 rows where subject_entity_id = "ENT_ASX_WODEN"
This data as json, CSV (advanced)
Suggested facets: source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 7411 | Woden ENT_ASX_WODEN | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | high | Woden is the chief deity of the reconstructed Anglo-Saxon pantheon (Pollington). | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7421 | Woden ENT_ASX_WODEN | identified_with | Odin ENT_NOR_ODIN | high | [RETYPED v2.1.60 aligned_with->identified_with: Woden and Odin are the same Common Germanic god (*Wodanaz) under cognate names — an identification, not a typological parallel (Simek s.v. Odin/Wodan; previously sourced to Pollington).] Woden is the Old English reflex of the same Germanic deity as Norse Odin (Wodanaz). | Rudolf Simek, Dictionary of Northern Mythology (trans. A. Hall, D. S. Brewer, 1993) SRC_SIMEK_NORTHERN | needs_review | |
| 8067 | Woden ENT_ASX_WODEN | equated_with | Mercury ENT_ROM_MERCURY | high | Interpretatio germanica weekday calque: dies Mercurii -> OE wodnesdaeg (Wednesday) equates Woden with Mercury (pointer: Simek, Dictionary of Northern Mythology, s.v. Wodan and the days-of-the-week discussion; parallel to the existing Tacitus edge for Norse Odin). Secondary pointer — needs review. [v2.1.60] | Rudolf Simek, Dictionary of Northern Mythology (trans. A. Hall, D. S. Brewer, 1993) SRC_SIMEK_NORTHERN | needs_review | Anglo-Saxon period PER_ANGLO_SAXON |
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]);