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)'}
10 rows where relationship_type = "ruled_by"
This data as json, CSV (advanced)
Suggested facets: object_entity_id, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2847 | Five Worlds of Darkness ENT_MANICH_FIVE_DARK_WORLDS | ruled_by | King of Darkness ENT_MANICH_KING_DARKNESS | high | The five dark worlds are the domain of the King of Darkness. | Manichaean Kephalaia SRC_MANICHAEAN_KEPHALAIA | reviewed | |
| 2956 | Material Daimones ENT_HER_MATERIAL_DAIMONES | ruled_by | Hecate (Chaldean) ENT_HER_HECATE_CHALDEAN | medium | The material/sublunar daimones are ranged under Hecate in the Chaldean-theurgic schema. | The Chaldean Oracles (ed. R. Majercik / E. des Places), c. 2nd c. CE SRC_CHALDEAN_ORACLES | reviewed | |
| 2959 | Encosmic Gods ENT_HER_ENCOSMIC_GODS | ruled_by | Hypercosmic Gods ENT_HER_HYPERCOSMIC_GODS | medium | The hypercosmic gods lead and transcend the encosmic gods (Iamblichus). | Iamblichus, De Mysteriis SRC_IAMBLICHUS_DE_MYSTERIIS | reviewed | |
| 3113 | Sitra Achra ENT_JM_SITRA_ACHRA | ruled_by | Samael ENT_GNO_SAMAEL | high | The Sitra Achra is ruled by Samael, its king. | Zohar SRC_ZOHAR | reviewed | |
| 3287 | Rosetau ENT_EGY_ROSETAU | ruled_by | Seker ENT_EGY_SEKER | high | Rosetau is the domain of Sokar. | Erik Hornung, The Ancient Egyptian Books of the Afterlife SRC_HORNUNG_DUAT | reviewed | |
| 3288 | Imhet (Land of Sokar) ENT_EGY_IMHET | ruled_by | Seker ENT_EGY_SEKER | high | Imhet is the land of Sokar. | Erik Hornung, The Ancient Egyptian Books of the Afterlife SRC_HORNUNG_DUAT | reviewed | |
| 6468 | Archons ENT_MANICH_ARCHONS | ruled_by | King of Darkness ENT_MANICH_KING_DARKNESS | high | The Archons (rulers/abortions of darkness) are subordinate powers of the realm ruled by the King of Darkness. Lieu. | Samuel N. C. Lieu, Manichaeism in the Later Roman Empire and Medieval China SRC_LIEU_MANICHAEISM | reviewed | |
| 7791 | Folkvangr ENT_NORR_FOLKVANGR | ruled_by | Freyja ENT_NOR_FREYJA | high | Folkvangr is Freyja's field where she receives half the battle-slain (Grímnismál 14). | Snorri Sturluson, Prose Edda SRC_PROSE_EDDA | reviewed | |
| 7806 | The Greek Underworld (House of Hades) ENT_GRR_UNDERWORLD | ruled_by | Hades ENT_HADES | high | The underworld is ruled by Hades, its eponymous lord. | Virgil, Aeneid (19 BCE) SRC_VIRGIL_AENEID | reviewed | |
| 7850 | Irkalla (Kur) ENT_RLMX_IRKALLA | ruled_by | Ereshkigal ENT_MES_ERESHKIGAL | high | Ereshkigal is queen of Irkalla/Kur, the Mesopotamian netherworld (Descent of Ishtar). | The Descent of Ishtar to the Netherworld (Akkadian), trans. S. Dalley, Myths from Mesopotamia (Oxford University Press, 2000) SRC_DESCENT_ISHTAR | 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]);