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)'}
16 rows where source_id = "SRC_THEOI_ZEUS"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1 | Zeus ENT_ZEUS | spouse_of | Hera ENT_HERA | high | Primary Olympian divine marriage. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 2 | Zeus ENT_ZEUS | parent_of | Athena ENT_ATHENA | high | Athena is born from Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 3 | Zeus ENT_ZEUS | parent_of | Apollo ENT_APOLLO | high | Apollo is son of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 4 | Zeus ENT_ZEUS | parent_of | Artemis ENT_ARTEMIS | high | Artemis is daughter of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 5 | Zeus ENT_ZEUS | parent_of | Hermes ENT_HERMES | high | Hermes is son of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 6 | Zeus ENT_ZEUS | parent_of | Ares ENT_ARES | high | Ares is son of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 7 | Zeus ENT_ZEUS | parent_of | Dionysus ENT_DIONYSUS | high | Dionysus is son of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 168 | Zeus ENT_ZEUS | parent_of | Charites ENT_CHARITES | medium | The Charites have variant parentage, often involving Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 172 | Zeus ENT_ZEUS | parent_of | Horae ENT_HORAE | medium | The Horae are commonly daughters of Zeus and Themis. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 181 | Zeus ENT_ZEUS | parent_of | Moirai ENT_MOIRAI | medium | The Moirai are sometimes daughters of Zeus and Themis. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 183 | Zeus ENT_ZEUS | parent_of | Muses ENT_MUSES | medium | The Muses are commonly daughters of Zeus and Mnemosyne. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 373 | Zeus ENT_ZEUS | patron_of | Sovereignty ENT_SOVEREIGNTY | high | Zeus is the primary Greek divine sovereign. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 2003 | Zeus ENT_ZEUS | parent_of | Auxo ENT_AUXO | medium | Pausanias 9.35.2: Auxo, Karpo, and Thallo are named as Horai (Seasons) in the Athenian tradition; like Eirene/Eunomia/Dike, they are daughters of Zeus and Themis. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 2004 | Zeus ENT_ZEUS | parent_of | Carpo ENT_CARPO | medium | Pausanias 9.35.2: Karpo listed among the Athenian Horai, daughters of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 2005 | Zeus ENT_ZEUS | parent_of | Thallo ENT_THALLO | medium | Pausanias 9.35.2: Thallo listed among the Athenian Horai, daughters of Zeus. | Theoi Project: Zeus SRC_THEOI_ZEUS | reviewed | |
| 2222 | Zeus ENT_ZEUS | patron_of | Nephelae ENT_NEPHELAE | high | The Nephelae (Cloud Nymphs) are associated with Zeus as the rain-bringer and cloud-gatherer (Nephelegetes); Aristophanes Clouds depicts them as Zeus's divine attendants. | Theoi Project: Zeus SRC_THEOI_ZEUS | 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]);