✦ DeityDB
Browse Graph Connections Timeline Lineages Path Map Queries About Collaborate API GitHub ↗

Relationships

2,079 typed, source-backed relationships between entities. Each row records a directed relationship (subject → type → object) with a justifying source and rationale note. See relationship_types for the full controlled vocabulary of 70 relationship types. Key types: reception_of / received_as (transmission across traditions), equated_with (interpretatio graeca / analogues), parent_of (genealogy), member_of (collective membership), emanates_from (Gnostic/Neoplatonic structure).

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)'}

16 rows where object_entity_id = "ENT_HUMANS"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: subject_entity_id, relationship_type, confidence, source_id

relationship_id ▼ subject_entity_id relationship_type object_entity_id confidence rationale source_id review_status period_id
1066 Guardian Angels ENT_CHR_GUARDIAN_ANGELS protects Humans ENT_HUMANS medium Guardian angels are understood as protectors of human persons. Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN reviewed  
1067 Guardian Angels ENT_CHR_GUARDIAN_ANGELS guides Humans ENT_HUMANS medium Guardian angels are associated with personal guidance. Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN reviewed  
1077 Obyzouth ENT_LAT_OBYZOUTH causes_affliction Humans ENT_HUMANS high Obyzouth is associated with childbirth and infant harm. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1078 Tephras ENT_LAT_TEPHRAS causes_affliction Humans ENT_HUMANS high Tephras is associated with fever and disease. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1079 Lix Tetrax ENT_LAT_LIX_TETRAX causes_affliction Humans ENT_HUMANS medium Lix Tetrax is associated with fever, dust, and desert affliction. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1080 Ornias ENT_LAT_ORNIAS causes_affliction Humans ENT_HUMANS medium Ornias is associated with strangulation and harmful attacks against humans. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1086 Abezithibod ENT_LAT_ABEZETHIBOU causes_affliction Humans ENT_HUMANS medium Abezethibou is associated with obstruction and demonic opposition. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1087 Kunopegos ENT_LAT_KUNOPEGOS causes_affliction Humans ENT_HUMANS medium Kunopegos is associated with maritime danger and wave affliction. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1088 Envy ENT_LAT_ENVY_DEMON causes_affliction Humans ENT_HUMANS medium Envy causes social and spiritual affliction through destructive passion. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1089 Onoskelis ENT_LAT_ONOSKELIS causes_affliction Humans ENT_HUMANS medium Onoskelis is associated with seduction, caves, and harmful demonic activity. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1192 Koruphe ENT_LAT_KORUPHE causes_affliction Humans ENT_HUMANS medium In the Testament of Solomon, the demon Koruphe, interrogated and bound by Solomon, is described as bringing affliction upon humans. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
1193 Ephippas ENT_LAT_EPHIPPAS causes_affliction Humans ENT_HUMANS medium In the Testament of Solomon, the demon Ephippas, interrogated and bound by Solomon, is described as bringing affliction upon humans. F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON reviewed  
2603 Four Demons of the Passions ENT_SET_FOUR_DEMONS causes_affliction Humans ENT_HUMANS high The four chief demons rule the passions that afflict humanity in the material body. 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
3698 Lamassu ENT_MES_LAMASSU protects Humans ENT_HUMANS medium Benevolent guardian spirit of persons and buildings. Jeremy Black and Anthony Green, Gods, Demons and Symbols of Ancient Mesopotamia SRC_BLACK_GREEN_MESO reviewed  
3809 Leonard of Noblac ENT_SAINT_LEONARD patron_of Humans ENT_HUMANS low Leonard, patron of prisoners and captives. David Hugh Farmer, The Oxford Dictionary of Saints (Oxford University Press, 5th ed. 2011) SRC_FARMER_SAINTS reviewed  
6120 Catherine of Sweden ENT_LMW_CATHERINE_SWEDEN patron_of Humans ENT_HUMANS low Invoked against miscarriage and for protection of pregnant women. David Hugh Farmer, The Oxford Dictionary of Saints (Oxford University Press, 5th ed. 2011) SRC_FARMER_SAINTS reviewed  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 14.904ms · Data license: MIT · Data source: jebboone/deitydb