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 object_entity_id = "ENT_RLMX_CHINVAT"
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 |
|---|---|---|---|---|---|---|---|---|
| 7839 | Rashnu ENT_ZOR_RASHNU | presides_over | Chinvat Bridge ENT_RLMX_CHINVAT | high | Rashnu presides over the judgement of the soul at the Chinvat Bridge (was 'judges'; corrected to presides_over since judges takes a being/Dead object in house convention). | Avesta SRC_AVESTA | reviewed | |
| 7840 | Mithra ENT_ZOR_MITHRA | presides_over | Chinvat Bridge ENT_RLMX_CHINVAT | medium | Mithra is one of the three judging yazatas at the Chinvat Bridge in Zoroastrian eschatology. | Avesta SRC_AVESTA | reviewed | |
| 7841 | Sraosha ENT_ZOR_SRAOSHA | associated_with | Chinvat Bridge ENT_RLMX_CHINVAT | medium | Sraosha conducts and protects the soul on its passage across the bridge (was 'guides'; corrected since guides takes a being/Dead object). | Avesta SRC_AVESTA | reviewed | |
| 7842 | Daena ENT_ZOR_DAENA | associated_with | Chinvat Bridge ENT_RLMX_CHINVAT | high | The Daena, the personified conscience, meets the soul at the Chinvat Bridge and leads the righteous onward. | Avesta SRC_AVESTA | reviewed | |
| 7846 | Garothman (House of Song) ENT_RLMX_GAROTHMAN | associated_with | Chinvat Bridge ENT_RLMX_CHINVAT | high | The righteous soul reaches Garothman by crossing the Chinvat Bridge. | Bundahishn SRC_BUNDAHISHN | reviewed | |
| 7847 | Drujo Demana (House of Lies) ENT_RLMX_DRUJO_DEMANA | associated_with | Chinvat Bridge ENT_RLMX_CHINVAT | high | The wicked soul falls from the Chinvat Bridge into the House of Lies. | Menog-i Khrad (The Spirit of Wisdom), Pahlavi text, 6th c. CE SRC_MENOG_I_KHRAD | 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]);