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_BALT_RAGANA"
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 |
|---|---|---|---|---|---|---|---|---|
| 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 |
| 2402 | Ragana ENT_BALT_RAGANA | aligned_with | Hecate ENT_HECATE | medium | Ragana and Hecate share a cluster of defining attributes that make them the clearest structural parallel across the Baltic and Greek traditions: both are nocturnal sorceress figures associated with crossroads, the moon, shape-shifting, death, and the ambiguous boundary between the living and the dead. Ragana appears in Lithuanian folklore as a shape-shifting witch who travels at night, transforms into animals (especially cats and birds), and is associated with harmful magic and infant death — parallels to Hecate as Chthonia (underworld goddess), Trioditis (crossroads deity), and the patron of witchcraft invoked in Greek magical papyri. Neither figure is a straightforward "goddess of witches" in her origin tradition (Hecate has a complex Titaness origin; Ragana may derive from an earlier supernatural female figure), but their convergent role in folk magic, nocturnal danger, and death boundary makes the alignment structurally sound. Confidence medium: the parallel is typological, not genetic; no direct historical connection exists between Lithuanian and Greek traditions. Greimas (1992) p. 73. | 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 |
| 5707 | Ragana ENT_BALT_RAGANA | member_of | The Baltic Pantheon ENT_BALT_PANTHEON | high | Ragana, witch/hag figure, belongs to the Baltic supernatural world. | Marija Gimbutas, The Balts (Thames and Hudson, London, 1963) SRC_GIMBUTAS_BALTS | 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]);