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 object_entity_id = "ENT_KRONOS"
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 |
|---|---|---|---|---|---|---|---|---|
| 1478 | Kumarbi ENT_HTT_KUMARBI | received_as | Kronos ENT_KRONOS | high | The Kumarbi→Kronos parallel is the centerpiece of West's (1997) argument for Near Eastern influence on Hesiod's Theogony. Both deities share an exact structural role: (1) they overthrow the ruling sky deity by biting/castrating the genitals (Kumarbi bites off Anu's genitals; Kronos castrates Ouranos with a sickle); (2) they absorb divine seed and become pregnant with the deity who will overthrow them; (3) they are themselves defeated by the storm deity son (Teshub/Zeus). This three-stage narrative is unique to the Kumarbi cycle among Near Eastern texts and uniquely explains why Hesiod's Theogony has the same three-stage structure. Transmission most likely via Anatolian-Greek contact in the 8th-7th c. BCE. | Martin L. West, The East Face of Helicon: West Asiatic Elements in Greek Poetry and Myth (Oxford: Clarendon Press, 1997) SRC_WEST_EAST_HELICON | reviewed | Archaic Period PER_GRK_ARCHAIC |
| 4689 | Agiel ENT_REN_AGIEL | aligned_with | Kronos ENT_KRONOS | medium | Agiel governs Saturn, whose Greek planetary deity is Kronos. | Heinrich Cornelius Agrippa, De occulta philosophia libri tres (1533) — incl. the Scale of Seven (Bk II.10) SRC_AGRIPPA_OCCULTA | reviewed | |
| 4704 | Aratron ENT_REN_ARATRON | aligned_with | Kronos ENT_KRONOS | medium | Aratron is the Olympic Spirit of Saturn (Greek Kronos). | Arbatel de magia veterum (Basel, 1575) — the seven Olympic Spirits SRC_ARBATEL | reviewed | |
| 4951 | Zazel ENT_REN_ZAZEL | aligned_with | Kronos ENT_KRONOS | medium | Zazel embodies the raw force of Saturn (Greek Kronos). | Heinrich Cornelius Agrippa, De occulta philosophia libri tres (1533) — incl. the Scale of Seven (Bk II.10) SRC_AGRIPPA_OCCULTA | reviewed | |
| 6638 | Kronos (Saturn) of Harran ENT_HRN_KRONOS_SATURN | equated_with | Kronos ENT_KRONOS | high | The Harranian Saturn-deity is explicitly identified with Greek Kronos (interpretatio; Fihrist, Green). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | 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]);