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)'}
9 rows where subject_entity_id = "ENT_ISR_GABRIEL"
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 |
|---|---|---|---|---|---|---|---|---|
| 544 | Gabriel ENT_ISR_GABRIEL | reveals | Revelation ENT_REVELATION | high | Gabriel serves as angelic messenger/interpreter. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 547 | Gabriel ENT_ISR_GABRIEL | transmits | Speech ENT_SPEECH | medium | Gabriel communicates divine messages. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 557 | Gabriel ENT_ISR_GABRIEL | member_of | Angels ENT_ANGELS | high | Gabriel is an angelic messenger. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 586 | Gabriel ENT_ISR_GABRIEL | reveals | Interpretation ENT_INTERPRETATION | high | Gabriel interprets visions and communicates revelation. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1418 | Gabriel ENT_ISR_GABRIEL | received_as | Jibril ENT_ISL_JIBRIL | high | Gabriel (Hebrew Gavriel, "man of God") is received in Islam as Jibril, the angel who revealed the Quran to Muhammad (Quran 2:97-98: "Say, Whoever is an enemy to Gabriel — it is he who has brought the Quran down upon your heart by permission of Allah"). Same angel, same role (divine revelation), same name (cognate). The most direct angelological transmission from Israelite/Second Temple Judaism into Islam. | Qur’an SRC_QURAN | reviewed | Early Islam PER_ISL_EARLY |
| 2628 | Gabriel ENT_ISR_GABRIEL | guides | Pistis Sophia ENT_PS_PISTIS_SOPHIA | medium | Gabriel, with Michael, carries Pistis Sophia out of the Chaos. | Pistis Sophia (Askew Codex), c. 3rd-4th c. CE, Egypt SRC_PISTIS_SOPHIA | reviewed | Gnostic and Neoplatonic (2nd–4th c.) PER_GNO_2ND_4TH |
| 4269 | Gabriel ENT_ISR_GABRIEL | member_of | The Seven Planetary Angels of the Grimoire Tradition ENT_SOL_PLANETARY_ANGELS | medium | The canonical archangel Gabriel is the Moon member of the grimoire seven-planetary-angel set. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4270 | Gabriel ENT_ISR_GABRIEL | presides_over | Moon ENT_MOON | medium | Gabriel governs the sphere and operations of the Moon in the grimoire planetary scheme. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 6414 | Gabriel ENT_ISR_GABRIEL | reception_of | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | medium | The Second-Temple Jewish archangel heptad, of which Gabriel is a member, was shaped on the model of the Zoroastrian Amesha Spentas during and after Persian-period contact (Boyce). | 1 Enoch SRC_1_ENOCH | 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]);