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)'}
4 rows where subject_entity_id = "ENT_HTT_ARINNA"
This data as json, CSV (advanced)
Suggested facets: review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2101 | Sun Goddess of Arinna ENT_HTT_ARINNA | paired_with | Tarhunna ENT_HTT_TARHUNNA | high | Hoffner, Hittite Myths: the Sun Goddess of Arinna and the Storm God Tarhunna are the royal divine couple of the Hittite pantheon; she is "Queen of Heaven and Earth" and "mistress of the Hittite lands." | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | approved | |
| 2103 | Sun Goddess of Arinna ENT_HTT_ARINNA | equated_with | Hepat ENT_HTT_HEPAT | high | The Sun Goddess of Arinna and the Hurrian goddess Hepat (sun goddess of the Hurrians) were identified in the syncretic Hittite-Hurrian theology of the Late Bronze Age. Hoffner, Hittite Myths, p. 41. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | approved | |
| 2104 | Sun Goddess of Arinna ENT_HTT_ARINNA | patron_of | Sovereignty ENT_SOVEREIGNTY | high | The Sun Goddess of Arinna was the highest deity of the Hittite state cult, designated "Queen of Heaven and Earth, mistress of the kings and queens of the Hatti land"; her protection was invoked for royal legitimacy. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | approved | |
| 5957 | Sun Goddess of Arinna ENT_HTT_ARINNA | member_of | The Hittite Pantheon ENT_HTT_PANTHEON | high | The Sun Goddess of Arinna is the chief state goddess of the Hittite pantheon. | Harry A. Hoffner Jr., Hittite Myths, 2nd ed. (Society of Biblical Literature, 1998) SRC_HOFFNER_HITTITE_MYTHS | 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]);