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)'}
11 rows where source_id = "SRC_DIXON_KENNEDY_SLAVIC"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 7591 | Dabog ENT_SSL_DABOG | member_of | The Slavic Pantheon ENT_SLAV_PANTHEON | high | Dabog is a South-Slavic high deity belonging to the broader Slavic pantheon hub. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7592 | Dabog ENT_SSL_DABOG | aligned_with | Dažbog ENT_SLAV_DAZBOG | high | Dabog is the South-Slavic (Serbian) cognate/reflex of the East-Slavic sun-god Dažbog; same theonym (modern cognate => aligned_with since cognate_of is unavailable). | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7593 | Dabog ENT_SSL_DABOG | aligned_with | Veles ENT_SLAV_VELES | medium | In Serbian folk tradition Dabog is a chthonic lord of underground wealth, a role overlapping the chthonic Veles. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7594 | Vila ENT_SSL_VILA | member_of | Slavic Domestic and Nature Spirits ENT_SLAV_FOLK_SPIRITS | high | The vile are a South-Slavic class of nature-spirits within the Slavic domestic-and-nature-spirit grouping. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7595 | Vila ENT_SSL_VILA | aligned_with | Rusalka ENT_SLAV_RUSALKA | medium | Vile are the South-Slavic functional counterpart of the East-Slavic Rusalka water/nature nymphs, but a distinct class (homonym caution noted). | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7598 | Vid ENT_SSL_VID | member_of | The Slavic Pantheon ENT_SLAV_PANTHEON | medium | Vid is a reconstructed South-Slavic theonym placed within the Slavic pantheon. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7599 | Vid ENT_SSL_VID | aligned_with | Svetovit ENT_SLAV_SVETOVIT | medium | Vid shares the -vit theophoric element and light/sky associations with the West-Slavic Svetovit (Sventovit). | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7600 | Prove ENT_SSL_PROVE | member_of | The Slavic Pantheon ENT_SLAV_PANTHEON | high | Prove is a Polabian Slavic god belonging to the Slavic pantheon hub. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7601 | Pripegala ENT_SSL_PRIPEGALA | member_of | The Slavic Pantheon ENT_SLAV_PANTHEON | medium | Pripegala is a Polabian Slavic deity assigned to the Slavic pantheon hub. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7602 | Tjarnaglofi ENT_SSL_TJARNAGLOFI | member_of | The Slavic Pantheon ENT_SLAV_PANTHEON | high | Tjarnaglofi is a Pomeranian Slavic war-god belonging to the Slavic pantheon hub. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | reviewed | |
| 7603 | Tjarnaglofi ENT_SSL_TJARNAGLOFI | aligned_with | Rugievit ENT_SLAV_RUGIEVIT | medium | Tjarnaglofi was a Rani (Rügen-area) war-idol alongside the other West-Slavic war-gods such as Rugievit. | Mike Dixon-Kennedy, Encyclopedia of Russian and Slavic Myth and Legend (ABC-CLIO, Santa Barbara, 1998) SRC_DIXON_KENNEDY_SLAVIC | 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]);