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)'}
10 rows where source_id = "SRC_PAUSANIAS_DESCRIPTION"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1295 | Dionysus ENT_DIONYSUS | identified_with | Iacchus ENT_IACCHUS | medium | Iacchus identified with Dionysus in some ancient sources linking Eleusinian and Dionysian mysteries. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | reviewed | |
| 2158 | Corycia ENT_CORYCIA | paired_with | Apollo ENT_APOLLO | high | Corycia is the naiad of the Corycian Cave on Parnassus, which was sacred to both Apollo and the Muses; Pausanias Description of Greece 10.32.2 describes the cave as belonging to the Corycian nymphs. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2159 | Corycian Nymphs ENT_CORYCIAN_NYMPHS | paired_with | Apollo ENT_APOLLO | high | Pausanias Description of Greece 10.32.2: the Corycian Cave above Delphi is the sanctuary of the Corycian nymphs and Pan; it was among the most notable cult sites of Apollo's mountain domain. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2160 | Corycian Nymphs ENT_CORYCIAN_NYMPHS | member_of | Corycia ENT_CORYCIA | high | The Corycian Nymphs are the collective of which Corycia is the eponymous individual nymph; they share the same mountain-cave cult on Parnassus. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2180 | Cotys ENT_COTYS | equated_with | Rhea ENT_RHEA | high | Strabo Geography 10.3.15: Cotys (Kotyto) is a Thracian mystery goddess whose ecstatic rites were identified with those of Rhea-Kybele; she was the patron of the Cotyttia festival. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2198 | Anytus ENT_ANYTUS | guides | Despoina ENT_DESPOINA | high | Pausanias Description of Greece 8.37.9: Anytus, one of the Titans, was the guardian and raiser of Despoina in the Arcadian tradition of her birth. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2214 | Eurynomos ENT_EURYNOMOS | dwells_in | Underworld ENT_UNDERWORLD | high | Pausanias Description of Greece 10.28.7: Eurynomos is the underworld daemon described in Polygnotus's painting of the underworld at Delphi; he strips the flesh from the dead. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2226 | Oceanus ENT_OCEANUS | parent_of | Neda ENT_NEDA | high | Pausanias Description of Greece 8.38.3: Neda is a naiad of the Arcadian river; she is an Oceanid daughter of Okeanos and Tethys who nursed the infant Zeus. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2227 | Neda ENT_NEDA | guides | Zeus ENT_ZEUS | high | Pausanias Description of Greece 8.38.3: Neda nursed the infant Zeus at Mount Lykaion in Arcadia; she and Theisoa (or Hagno) were among the Arcadian nymphs who raised him. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved | |
| 2230 | Aganippe ENT_AGANIPPE | paired_with | Muses Heliconian ENT_MUSES_HELICONIAN | high | Pausanias Description of Greece 9.29.5: Aganippe is the spring nymph of the Aganippe spring on Mount Helicon, sacred to the Muses; she and Hippocrene are the two Heliconiad spring-muses. | Pausanias, Description of Greece (c. 143-176 CE); trans. W.H.S. Jones (Loeb Classical Library, Harvard 1918-1935) SRC_PAUSANIAS_DESCRIPTION | approved |
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]);