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_ZOR_HAURVATAT"
This data as json, CSV (advanced)
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 908 | Haurvatat ENT_ZOR_HAURVATAT | embodies | Wholeness ENT_WHOLENESS | high | Haurvatat embodies wholeness/perfection. | Avesta SRC_AVESTA | reviewed | |
| 2411 | Haurvatat ENT_ZOR_HAURVATAT | aligned_with | Raphael ENT_ISR_RAPHAEL | medium | Haurvatat ("Wholeness / Health") is the Amesha Spenta of completeness, health, and perfection — his physical correlate is water (the element of purification and life-sustaining wholeness), and his domain encompasses both bodily health and the soteriological completeness of the righteous at the end of time. The name haurvatat is from the root *hauru- "whole, healthy." Raphael ("God has healed") is the healing archangel in Second Temple Jewish tradition: Tobit 12:14-15 identifies Raphael as "one of the seven angels who stand ready and enter before the glory of the Lord" and the angel who healed Tobit's blindness and protected Sarah from the demon Asmodeus; 1 Enoch 10:4-7 assigns Raphael the task of healing the earth after the Watchers' corruption of humanity. Both Haurvatat and Raphael govern the domain of wholeness/health as a divine principle, and both function within a 7-member divine council (6 Amesha Spentas + Ahura Mazda; 7 archangels). The Haurvatat/Raphael alignment is the most frequently noted specific Amesha Spenta-archangel healing parallel in the scholarly literature. Boyce (1982) pp. 77-78; Russell (1987) p. 141. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | 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]);