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 object_entity_id = "ENT_BALT_LAIMA"
This data as json, CSV (advanced)
Suggested facets: source_id, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2285 | Dievas ENT_BALT_DIEVAS | paired_with | Laima ENT_BALT_LAIMA | medium | Dievas and Laima together dispense fate in the Lithuanian folk narrative; they are sometimes depicted as partners who decide human destiny. Greimas (1992) pp. 57-75; Gimbutas (1963) p. 202. | Algirdas Julien Greimas, Of Gods and Men: Studies in Lithuanian Mythology (Indiana University Press, Bloomington, 1992; trans. Milda Newman and Joseph Fitzgerald) SRC_GREIMAS_LITHUANIAN | reviewed | Baltic Pre-Christian Period PER_BALT_PAGAN |
| 2303 | Mokosh ENT_SLAV_MOKOSH | aligned_with | Laima ENT_BALT_LAIMA | medium | Mokosh and Laima are structurally parallel fate/weaving goddesses: both spin or weave the thread of fate, both govern birth and death, both are associated with women's domestic work. The parallel is functional, not etymological. Gimbutas (1963) p. 202; Brückner (1918) pp. 130-138. | Aleksander Brückner, Mitologia Słowiańska i Polska (Krakowska Spółka Wydawnicza, Krakow, 1918; repr. Wydawnictwo Naukowe PWN, Warsaw, 1980) SRC_BRUCKNER_SLAVIC_MYTH | reviewed | Slavic Pre-Christian Period PER_SLAV_PAGAN |
| 2401 | Ragana ENT_BALT_RAGANA | opposes | Laima ENT_BALT_LAIMA | medium | In Lithuanian folk religion and demonology, Ragana and Laima represent opposing principles of fate: Laima is the benevolent fate-goddess who determines the duration and fortune of a human life at birth, while Ragana embodies the dark, inversive principle — the witch who harms newborns, causes illness, curdles milk, and brings misfortune. This opposition is documented extensively in Lithuanian folk songs (dainos), folk tale collections, and in the post-Reformation Lithuanian ecclesiastical surveys that catalogue surviving pagan customs. The Ragana/Laima opposition is structurally parallel to the universal mythological contrast between beneficent fate goddess and malevolent death/illness spirit. Greimas, Of Gods and Men (1992) pp. 58-77. | Algirdas Julien Greimas, Of Gods and Men: Studies in Lithuanian Mythology (Indiana University Press, Bloomington, 1992; trans. Milda Newman and Joseph Fitzgerald) SRC_GREIMAS_LITHUANIAN | reviewed | Baltic Pre-Christian Period PER_BALT_PAGAN |
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]);