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)'}
6 rows where subject_entity_id = "ENT_BALT_PERKUNAS"
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 |
|---|---|---|---|---|---|---|---|---|
| 2283 | Perkūnas ENT_BALT_PERKUNAS | opposes | Velnias ENT_BALT_VELNIAS | high | The central Baltic mythological narrative: Perkūnas (thunder) pursues Velnias (chthonic) who steals cattle or a solar being and hides below the earth or in trees. Perkūnas shatters hiding places with lightning. Attested in dozens of Lithuanian folk songs and reconstructed comparatively. Greimas (1992) pp. 77-120; Gimbutas (1963) p. 200. | 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 |
| 2288 | Perkūnas ENT_BALT_PERKUNAS | judges | Meness ENT_BALT_MENESS | high | In the celestial myth, Perkūnas judges the moon guilty of unfaithfulness to Saulė and splits him with a sword, explaining the waning moon. This is one of the most widely attested narrative elements in Baltic folk song. Greimas (1992) pp. 221-250. | 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 |
| 2291 | Perkūnas ENT_BALT_PERKUNAS | aligned_with | Thor ENT_NOR_THOR | high | Perkūnas and Thor are cognate thunder deities: both wield the thunder weapon against a serpentine or giant antagonist, both protect the ordered world from chthonic chaos. The PIE *perkʷ- (oak/thunder) root and the structural myth parallel are well established. Gimbutas (1963) p. 199; Greimas (1992) pp. 77-84. | 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 |
| 2472 | Perkūnas ENT_BALT_PERKUNAS | embodies | Storm ENT_STORM | high | Perkūnas is the Baltic thunder/storm god (Lith. Perkūnas, Latv. Pērkons), the cognate of Slavic Perun and the Indo-European thunder deity. | Marija Gimbutas, The Balts (Thames and Hudson, London, 1963) SRC_GIMBUTAS_BALTS | reviewed | |
| 2473 | Perkūnas ENT_BALT_PERKUNAS | patron_of | Justice ENT_JUSTICE | medium | Perkūnas enforces oaths and moral order, striking the unrighteous; he punishes Mēness for infidelity, a juridical-moral function emphasised in Lithuanian sources. | 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 | |
| 5706 | Perkūnas ENT_BALT_PERKUNAS | member_of | The Baltic Pantheon ENT_BALT_PANTHEON | high | Perkūnas, the thunder god, is a member of the Baltic pantheon. | 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]);