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)'}
6 rows where subject_entity_id = "ENT_ISR_URIEL"
This data as json, CSV (advanced)
Suggested facets: confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 539 | Uriel ENT_ISR_URIEL | patron_of | Light ENT_LIGHT | medium | DDD supports Uriel as angelic figure associated with light/illumination; normalized from broad aligned_with to functional patron_of without asserting identity with Light. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 543 | Uriel ENT_ISR_URIEL | reveals | Revelation ENT_REVELATION | high | Uriel interprets cosmic/apocalyptic knowledge in some traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 560 | Uriel ENT_ISR_URIEL | member_of | Angels ENT_ANGELS | high | Uriel is an angel in apocalyptic traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1092 | Uriel ENT_ISR_URIEL | opposes | Obyzouth ENT_LAT_OBYZOUTH | medium | Uriel appears in late antique angelological traditions as an angelic power invoked against child-harming or destructive spirits. | F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON | reviewed | |
| 1316 | Uriel ENT_ISR_URIEL | presides_over | Cosmic Order ENT_COSMIC_ORDER | medium | Uriel presides over cosmic luminaries and mediates cosmic/apocalyptic order in Second Temple tradition. | 1 Enoch SRC_1_ENOCH | reviewed | |
| 6416 | Uriel ENT_ISR_URIEL | reception_of | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | medium | Uriel, one of the seven archangels of 1 Enoch, is part of the Second-Temple heptad of holy ones modeled on the Zoroastrian Amesha Spentas after Persian-period influence (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]);