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)'}
3 rows where object_entity_id = "ENT_ISR_GABRIEL"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1419 | Jibril ENT_ISL_JIBRIL | reception_of | Gabriel ENT_ISR_GABRIEL | high | Jibril as Islamic reception of the Israelite/Second Temple angel Gabriel; same role (divine messenger and revealer), same name (cognate), explicitly named in Quran 2:97-98. | Qur’an SRC_QURAN | reviewed | Early Islam PER_ISL_EARLY |
| 1786 | Gabriel the Archangel ENT_SAINT_GABRIEL_CHR | reception_of | Gabriel ENT_ISR_GABRIEL | high | Luke 1:26-38 and Christian tradition receive the Second Temple Gabriel (Daniel 8-9; 1 Enoch) as the Christian archangel Gabriel. | Dictionary of Deities and Demons in the Bible SRC_DDD_CHRISTIAN | approved | |
| 2417 | Sariel ENT_ISR_SARIEL | aligned_with | Gabriel ENT_ISR_GABRIEL | medium | In the War Scroll (1QM 9:15-16), the four archangels named on the battle tower shields are "Michael, Gabriel, Sariel, and Raphael" — making Sariel and Gabriel co-members of the tightest four-archangel grouping in DSS angelology. Sariel replaces Uriel in this grouping (who appears as the fourth archangel in some 1 Enoch traditions), suggesting that Sariel and Gabriel belong to the same functional tier within the divine warrior hierarchy of Qumran angelology. The alignment is of divine council co-membership with complementary functions. | 1 Enoch SRC_1_ENOCH | reviewed | Second Temple Period PER_ISR_SECOND_TEMPLE |
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]);