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)'}
7 rows where subject_entity_id = "ENT_ZOR_AMESHA_SPENTAS"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 881 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | has_member | Ameretat ENT_ZOR_AMERETAT | high | Ameretat is one of the Amesha Spentas. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 883 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | has_member | Asha Vahishta ENT_ZOR_ASHA_VAHISHTA | high | Asha Vahishta is one of the Amesha Spentas. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 895 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | has_member | Haurvatat ENT_ZOR_HAURVATAT | high | Haurvatat is one of the Amesha Spentas. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 898 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | has_member | Khshathra Vairya ENT_ZOR_KHSHATHRA | high | Khshathra Vairya is one of the Amesha Spentas. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 904 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | has_member | Spenta Armaiti ENT_ZOR_SPENTA_ARMATI | high | Spenta Armaiti is one of the Amesha Spentas. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 906 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | has_member | Vohu Manah ENT_ZOR_VOHU_MANAH | high | Vohu Manah is one of the Amesha Spentas. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | |
| 1390 | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | received_as | Michael ENT_ISR_MICHAEL | low | The six Amesha Spentas (divine beings surrounding Ahura Mazda, each embodying a virtue) parallel the emergence of named archangels surrounding Yahweh in Second Temple angelology (1 Enoch 20 names seven: Michael, Gabriel, Raphael, Uriel, Saraqael, Raguel, Remiel). Both systems feature a high god surrounded by a council of named divine beings, each with a specific cosmic domain, in traditions that were in direct contact during the Persian period. Michael is cited as the most prominent archangel. Confidence low: the structural parallel is suggestive but the transmission is not textually demonstrable; parallel development is possible. | 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]);