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)'}
5 rows where object_entity_id = "ENT_CHR_GOD_FATHER"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2928 | Holy Spirit ENT_CHR_HOLY_SPIRIT | emanates_from | God the Father ENT_CHR_GOD_FATHER | high | The Holy Spirit proceeds from the Father (Nicene Creed). | The Nicene-Constantinopolitan Creed, 325/381 CE SRC_NICENE_CREED | reviewed | |
| 2936 | Mammon ENT_CHR_MAMMON | opposes | God the Father ENT_CHR_GOD_FATHER | medium | "You cannot serve God and Mammon" (Matthew 6:24). | New Testament (primary text; Greek: Nestle-Aland 28th ed.; citations by book, chapter, and verse) SRC_NEW_TESTAMENT | reviewed | |
| 3082 | Uncreated Light ENT_ORTH_UNCREATED_LIGHT | emanates_from | God the Father ENT_CHR_GOD_FATHER | high | The uncreated light is the divine energies that proceed from God (Palamas). | Gregory Palamas, Triads in Defence of the Holy Hesychasts, c. 1338-1341 SRC_PALAMAS_TRIADS | reviewed | |
| 3183 | The Thearchy (Godhead) ENT_DIO_THEARCHY | identified_with | God the Father ENT_CHR_GOD_FATHER | high | The thearchy denotes the triune Godhead as superessential source; linked here to the Christian godhead. | 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 | |
| 6619 | Heavenly Father (Elohim) ENT_LDS_ELOHIM | reception_of | God the Father ENT_CHR_GOD_FATHER | high | The LDS Heavenly Father (Elohim) is the Restorationist reception/reconception of the Christian God the Father — embodied and exalted rather than the classical Trinity (Givens). | Terryl L. Givens, Wrestling the Angel: The Foundations of Mormon Thought — Cosmos, God, Humanity (Oxford University Press, 2015) SRC_GIVENS_WRESTLING | 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]);