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 source_id = "SRC_KHORENATSI_HISTORY"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2327 | Aramazd ENT_ARM_ARAMAZD | parent_of | Vahagn ENT_ARM_VAHAGN | high | Khorenatsi II.12 identifies Vahagn as the son of Aramazd, placing him in the divine family alongside Anahit and Nane. | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | reviewed | Pre-Christian Armenian PER_ARM_PAGAN |
| 2335 | Astghik ENT_ARM_ASTGHIK | paired_with | Vahagn ENT_ARM_VAHAGN | medium | Armenian tradition pairs Astghik with Vahagn as the goddess of love with the warrior deity, parallel to Aphrodite-Ares pairings in Greek mythology. Khorenatsi I.15 situates Astghik's cult at the same Ashtishat complex as Vahagn. The pairing is consistently attested in Armenian folk tradition and the festival calendar. Russell (1987) pp. 355-360. Confidence medium: the pairing is traditional but less explicitly stated than the Aphrodite equation. | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | reviewed | Pre-Christian Armenian PER_ARM_PAGAN |
| 7074 | Mesrop Mashtots ENT_ARMC_MESROP | member_of | Fathers and Saints of the Armenian Apostolic Church ENT_ARMC_FATHERS | high | Mesrop Mashtots is among the formative saints (Holy Translators) of the Armenian Apostolic Church. | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | reviewed | |
| 7075 | Sahak Partev ENT_ARMC_SAHAK | member_of | Fathers and Saints of the Armenian Apostolic Church ENT_ARMC_FATHERS | high | Sahak Partev, Catholicos, is among the founding saints (Holy Translators) of the Armenian Church. | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | reviewed | |
| 7076 | Nerses the Great ENT_ARMC_NERSES | member_of | Fathers and Saints of the Armenian Apostolic Church ENT_ARMC_FATHERS | high | Nerses the Great, reforming Catholicos, is a venerated father of the Armenian Church. | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | reviewed | |
| 7079 | Mesrop Mashtots ENT_ARMC_MESROP | taught_by | Sahak Partev ENT_ARMC_SAHAK | high | Movses Khorenatsi records Mesrop Mashtots working under and with Catholicos Sahak Partev, who sponsored the alphabet and Bible translation. | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | reviewed | |
| 7080 | Sahak Partev ENT_ARMC_SAHAK | child_of | Nerses the Great ENT_ARMC_NERSES | medium | Sahak Partev was the son of Nerses the Great (Faustus/Khorenatsi genealogy of the line of Gregory the Illuminator). | Movses Khorenatsi, History of Armenia (Patmut'iwn Hayots'), 5th c. CE; trans. Robert W. Thomson (Harvard University Press, Cambridge MA, 1978) SRC_KHORENATSI_HISTORY | 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]);