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)'}
2 rows where subject_entity_id = "ENT_ISR_SARIEL"
This data as json, CSV (advanced)
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 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 |
| 2418 | Sariel ENT_ISR_SARIEL | opposes | Watchers ENT_ISR_WATCHERS | medium | Sariel's domain — oversight of "the spirits, who sin in the spirit" (1 Enoch 20:6) — places him in a corrective relationship to the Watchers and their offspring, whose transgression created the entire category of sinning spirits (the disembodied Nephilim spirits that afflict humanity after the Flood, per 1 Enoch 15:8-12). Sariel is one of the divine officials responsible for the accountability of sinning spiritual beings — a domain arising directly from the Watcher transgression. | 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]);