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)'}
8 rows where subject_entity_id = "ENT_ISR_RAPHAEL"
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 |
|---|---|---|---|---|---|---|---|---|
| 538 | Raphael ENT_ISR_RAPHAEL | patron_of | Healing ENT_HEALING | high | Raphael is associated with healing. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 541 | Raphael ENT_ISR_RAPHAEL | patron_of | Protection ENT_PROTECTION | medium | Raphael guides and protects in Tobit traditions. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 559 | Raphael ENT_ISR_RAPHAEL | member_of | Angels ENT_ANGELS | high | Raphael is an angel. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 587 | Raphael ENT_ISR_RAPHAEL | protects | Tobit ENT_TOBIT | medium | Raphael protects/guides Tobit/Tobias in Tobit tradition; add Tobit as literary human figure if desired. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1091 | Raphael ENT_ISR_RAPHAEL | opposes | Asmodeus ENT_LAT_ASMODEUS | high | Raphael is the angelic power traditionally associated with restraining Asmodeus. | F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON | reviewed | |
| 4266 | Raphael ENT_ISR_RAPHAEL | member_of | The Seven Planetary Angels of the Grimoire Tradition ENT_SOL_PLANETARY_ANGELS | medium | The canonical archangel Raphael is the Mercury member of the grimoire seven-planetary-angel set. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4267 | Raphael ENT_ISR_RAPHAEL | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | Raphael governs the sphere of Mercury. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 6415 | Raphael ENT_ISR_RAPHAEL | reception_of | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | medium | Raphael, named among the seven archangels (Tobit, 1 Enoch), belongs to the post-exilic archangelic heptad patterned after the Amesha Spentas following Achaemenid 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]);