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)'}
5 rows where source_id = "SRC_BUNDAHISHN"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2762 | Gayomard ENT_ZOR_GAYOMARD | slain_by | Angra Mainyu ENT_ZOR_ANGRA_MAINYU | high | Gayomard the primordial man is slain by Ahriman (Bundahishn 4). | Bundahishn SRC_BUNDAHISHN | reviewed | |
| 2780 | Jeh ENT_ZOR_JEH | member_of | Daevas ENT_ZOR_DAEVAS | high | Jeh is the primal female demon of Ahriman's host. | Bundahishn SRC_BUNDAHISHN | reviewed | |
| 2781 | Angra Mainyu ENT_ZOR_ANGRA_MAINYU | creator_of | Azhi Dahaka ENT_ZOR_AZHI_DAHAKA | high | Ahriman fashions the dragon Azhi Dahaka against the creation. | Bundahishn SRC_BUNDAHISHN | reviewed | |
| 7843 | Garothman (House of Song) ENT_RLMX_GAROTHMAN | dwelling_of | Ahura Mazda ENT_ZOR_AHURA_MAZDA | high | Garothman, the House of Song, is the abode of Ahura Mazda and the blessed. | Bundahishn SRC_BUNDAHISHN | 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 |
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]);