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_FINN_MIELIKKI"
This data as json, CSV (advanced)
Suggested facets: confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2346 | Mielikki ENT_FINN_MIELIKKI | spouse_of | Tapio ENT_FINN_TAPIO | high | Mielikki is explicitly described as Tapio's wife and co-ruler of Tapiola in the Kalevala and Finnish folk tradition. See ENT_FINN_TAPIO spouse_of ENT_FINN_MIELIKKI for full rationale. | Elias Lönnrot, The Kalevala (Kalevala taikka vanhoja Karjalan runoja Suomen kansan muinosista ajoista), expanded edition 1849; trans. Keith Bosley (Oxford World's Classics, Oxford University Press, 1989) SRC_KALEVALA | reviewed | Finnish Traditional / Pre-Christian PER_FINN_TRADITIONAL |
| 2347 | Mielikki ENT_FINN_MIELIKKI | aligned_with | Medeina ENT_BALT_MEDEINA | medium | Mielikki and Baltic Medeina are structurally parallel female forest deities of neighboring traditions: both govern the forest, hunt, and wild animals; both are the primary recipients of hunters' invocations. The alignment reflects the shared hunting-cult pattern across Baltic Finnic and Baltic Indo-European cultures of the southeastern Baltic region. Pentikäinen (1999) pp. 145-155. Confidence medium: functional parallel is strong; no ancient source explicitly equates them. | Juha Pentikäinen, Kalevala Mythology, trans. Ritva Poom (Indiana University Press, Bloomington IN, 1999) SRC_PENTIKÄINEN_KALEVALA | reviewed | Finnish Traditional / Pre-Christian PER_FINN_TRADITIONAL |
| 5662 | Mielikki ENT_FINN_MIELIKKI | member_of | The Finnish/Kalevala Pantheon ENT_FINN_PANTHEON | high | Mielikki, forest goddess, is a member of the Finnic pantheon. | Elias Lönnrot, The Kalevala (Kalevala taikka vanhoja Karjalan runoja Suomen kansan muinosista ajoista), expanded edition 1849; trans. Keith Bosley (Oxford World's Classics, Oxford University Press, 1989) SRC_KALEVALA | 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]);