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

14 rows where object_entity_id = "ENT_TRUTH"

✎ View and edit SQL

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
905 Asha Vahishta ENT_ZOR_ASHA_VAHISHTA embodies Truth ENT_TRUTH high Asha Vahishta embodies truth/order/righteousness. Avesta SRC_AVESTA reviewed  
2585 Aletheia (Sethian) ENT_SET_ALETHEIA embodies Truth ENT_TRUTH high The aeon Aletheia is Truth personified. 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
2889 Kushta ENT_MAN_KUSHTA embodies Truth ENT_TRUTH high Kushta is Truth personified. Ginza Rba SRC_GINZA_RBA reviewed  
3191 The Divine Names ENT_DIO_DIVINE_NAMES embodies Truth ENT_TRUTH high Truth is among the Divine Names. Pseudo-Dionysius the Areopagite, On the Divine Names (Peri theion onomaton), c. 500 CE (trans. J. Parker, The Works of Dionysius the Areopagite, 1897) SRC_PSEUDO_DIONYSIUS_DIVINE_NAMES reviewed  
3912 Ka-Maat (Bull of Maat) ENT_EGY_KAMAAT embodies Truth ENT_TRUTH high The Bull of Maat personifies cosmic truth in the night barque of Ra Erik Hornung, The Ancient Egyptian Books of the Afterlife SRC_HORNUNG_DUAT reviewed  
4711 Asaliah ENT_REN_ASALIAH presides_over Truth ENT_TRUTH medium Asaliah grants perception of divine justice and truth. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4735 Daniel (Shem angel) ENT_REN_DANIEL presides_over Truth ENT_TRUTH medium Daniel grants eloquence in the service of truth. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4749 Haamiah ENT_REN_HAAMIAH presides_over Truth ENT_TRUTH medium Haamiah governs religious truth and protects seekers of it. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4829 Manakel ENT_REN_MANAKEL presides_over Truth ENT_TRUTH medium Manakel reconciles humanity with the divine and calms wrath. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4833 Mebahiah ENT_REN_MEBAHIAH presides_over Truth ENT_TRUTH medium Mebahiah promotes morality and clarity of conscience. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4846 Mikael (Shem angel) ENT_REN_MIKAEL presides_over Truth ENT_TRUTH medium Mikael unmasks plots and reveals hidden truths in affairs of state. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4941 Yeialel ENT_REN_YEIALEL presides_over Truth ENT_TRUTH medium Yeialel grants mental clarity and firm judgment. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
4949 Yerathel ENT_REN_YERATHEL presides_over Truth ENT_TRUTH medium Yerathel's office is the propagation of light and truth. Athanasius Kircher, Oedipus Aegyptiacus (1652-54) — the canonical 72-name roster of the Shem ha-Mephorash SRC_KIRCHER_OEDIPUS reviewed  
5102 Nicodemus ENT_NT_NICODEMUS presides_over Truth ENT_TRUTH medium A teacher of Israel who came to Jesus seeking understanding (John 3). New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT 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 473.846ms · Data license: MIT · Data source: jebboone/deitydb