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)'}
13 rows where object_entity_id = "ENT_FATE"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 386 | Moirai ENT_MOIRAI | embodies | Fate ENT_FATE | high | The Moirai govern fate and allotment. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 387 | Atropos ENT_ATROPOS | embodies | Fate ENT_FATE | high | Atropos cuts the thread of life. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 388 | Clotho ENT_CLOTHO | embodies | Fate ENT_FATE | high | Clotho spins the thread of fate. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 389 | Lachesis ENT_LACHESIS | embodies | Fate ENT_FATE | high | Lachesis apportions destiny. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 853 | Norns ENT_NOR_NORNS | embodies | Fate ENT_FATE | high | The Norns are associated with fate. | Poetic Edda SRC_POETIC_EDDA | reviewed | |
| 916 | Seven Planets ENT_MAN_PLANETS | embodies | Fate ENT_FATE | medium | Planetary powers are associated with fate/determinative lower-world order. | Ginza Rba SRC_GINZA_RBA | reviewed | |
| 1317 | Decans ENT_LAT_DECANS | presides_over | Fate ENT_FATE | medium | Decans preside over hours and astral time, mediating fate through their stellar influence. | F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON | reviewed | |
| 2474 | Laima ENT_BALT_LAIMA | embodies | Fate ENT_FATE | high | Laima is the Baltic goddess of fate and fortune (Lith./Latv. Laima, from laimė, luck), determining destiny and presiding over birth. | Marija Gimbutas, The Balts (Thames and Hudson, London, 1963) SRC_GIMBUTAS_BALTS | reviewed | |
| 2488 | Mokosh ENT_SLAV_MOKOSH | embodies | Fate ENT_FATE | high | Mokosh, the only goddess in the 980 Kiev pantheon, governs spinning, weaving, and women's fate — the thread-spinning fate function of the Slavic tradition. | 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 | |
| 2491 | Rod ENT_SLAV_ROD | patron_of | Fate ENT_FATE | medium | Rod, the ancestral birth-deity, is paired with the Rozhanitsy (fate-spinners) who allot each newborn's destiny; condemned in Old Slavic ecclesiastical texts. | 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 | |
| 2600 | Heimarmene ENT_SET_HEIMARMENE | embodies | Fate ENT_FATE | high | Heimarmene is Fate, the astral bondage the archons impose on humanity. | Apocryphon of John (The Secret Book of John), NHC II,1 / III,1 / IV,1 and BG 8502,2; c. 2nd c. CE, Egypt SRC_APOCRYPHON_JOHN | reviewed | Gnostic and Neoplatonic (2nd–4th c.) PER_GNO_2ND_4TH |
| 2944 | Heimarmene ENT_HER_HEIMARMENE | embodies | Fate ENT_FATE | high | Heimarmene is Fate personified. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 3849 | Hutena and Hutellura ENT_HTT_HUTENA | embodies | Fate ENT_FATE | high | Hurrian fate-and-birth goddesses who allot destiny | Piotr Taracha, Religions of Second Millennium Anatolia (Dresdner Beiträge zur Hethitologie 27; Harrassowitz Verlag, Wiesbaden, 2009) SRC_TARACHA_ANATOLIA | 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]);