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_SLAV_PERUN"
This data as json, CSV (advanced)
Suggested facets: relationship_type, source_id, period_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2296 | Veles ENT_SLAV_VELES | opposed_by | Perun ENT_SLAV_PERUN | high | Veles is the chthonic antagonist of Perun in the cosmic myth; hides in the earth, cattle, and trees to escape Perun's lightning. Brückner (1918) pp. 138-155; PVL oath treaties. | Nestor (trad.), Povest' Vremennykh Let (Primary Chronicle), compiled c. 1113 CE; Laurentian redaction c. 1377 CE SRC_PRIMARY_CHRONICLE_PVL | reviewed | Slavic Pre-Christian Period PER_SLAV_PAGAN |
| 2342 | Ukko ENT_FINN_UKKO | aligned_with | Perun ENT_SLAV_PERUN | medium | Ukko and Slavic Perun share the same structural role as supreme thunder deities in closely related Northern European traditions; both are associated with lightning, storms, and the oak tree. The alignment is structural and comparative, not a direct ancient equation. Pentikäinen (1999) p. 128. Confidence medium: geographic proximity and function are strong, but 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 |
| 2404 | Simargl ENT_SLAV_SIMARGL | aligned_with | Perun ENT_SLAV_PERUN | low | Simargl's only unambiguous attestation is as one of the eight deities in Vladimir I's 980 CE Kiev state pantheon (Primary Chronicle s.a. 980), where he is listed among the idols erected alongside Perun, Khors, Dazbog, Stribog, and Mokosh. As Perun was the undisputed head of this pantheon (his idol had a silver head and gold mustache, superior to the others), Simargl functioned as a member of Perun's divine assembly — a guardian/protective sacred figure within the thundergod's sovereignty sphere. The alignment is primarily one of divine assembly membership rather than shared attributes; Simargl's own domains (guardian of plants and seeds per some reconstructions; winged dog-guardian per iconography) are distinct from Perun's thunder/war domain. Confidence low: the alignment is inferred from co-listing in the 980 CE pantheon, not from explicit ancient equation or shared attributes. Simargl's connection to the Iranian Senmurv/Simurgh (proposed by Rybakov and others) would provide a more illuminating long-range alignment, but the Iranian entities are not currently in the DB. | Nestor (trad.), Povest' Vremennykh Let (Primary Chronicle), compiled c. 1113 CE; Laurentian redaction c. 1377 CE SRC_PRIMARY_CHRONICLE_PVL | reviewed | Slavic Pre-Christian Period PER_SLAV_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]);