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)'}
11 rows where subject_entity_id = "ENT_ASCLEPIUS"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, rationale, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 100 | Asclepius ENT_ASCLEPIUS | parent_of | Aceso ENT_ACESO | medium | Asclepian healing family tradition. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 124 | Asclepius ENT_ASCLEPIUS | parent_of | Hygieia ENT_HYGIEIA | medium | Asclepian healing family tradition. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 125 | Asclepius ENT_ASCLEPIUS | parent_of | Iaso ENT_IASO | medium | Asclepian healing family tradition. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 131 | Asclepius ENT_ASCLEPIUS | parent_of | Panacea ENT_PANACEA | medium | Asclepian healing family tradition. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 175 | Asclepius ENT_ASCLEPIUS | parent_of | Machaon ENT_MACHAON | medium | Machaon is a son of Asclepius in heroic healing tradition. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 185 | Asclepius ENT_ASCLEPIUS | parent_of | Podalirius ENT_PODALIRIUS | medium | Podalirius is a son of Asclepius in heroic healing tradition. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 329 | Asclepius ENT_ASCLEPIUS | parent_of | Apollo ENT_APOLLO | high | Asclepius is son of Apollo and part of the Apollonian healing complex. | Theoi Greek Gods category index SRC_THEOI_GODS | reviewed | |
| 1513 | Asclepius ENT_ASCLEPIUS | reception_of | Eshmun ENT_PHO_ESHMUN | high | Asclepius as the Greek reception of the Sidonian Eshmun healing deity; the Eshmun sanctuary at Sidon was renamed Asklepion; Philo of Byblos documents the identification. | Glenn Markoe, Phoenicians (London: British Museum Press / University of California Press, 2000) SRC_MARKOE_PHOENICIANS | reviewed | Classical Period PER_GRK_CLASSICAL |
| 1998 | Asclepius ENT_ASCLEPIUS | reception_of | Glycon ENT_GLYCON | medium | Lucian Alexander the False Prophet: Glycon was promoted as a new incarnation of Asclepius by Alexander of Abonuteichos (2nd c. CE); the serpent oracle was presented as a manifestation of Asclepius in a new form. | Pseudo-Apollodorus, Library (Bibliotheca) (1st-2nd century CE); trans. Robin Hard (Oxford World's Classics, OUP 2008) SRC_APOLLODORUS_LIBRARY | approved | |
| 2068 | Asclepius ENT_ASCLEPIUS | spouse_of | Epione ENT_EPIONE | high | Epione ("She Who Soothes") is the wife of Asclepius and personification of pain relief; their union is attested in the Asclepian cult tradition. | Theoi Daemones/personifications index SRC_THEOI_DAIMONES | approved | |
| 2258 | Asclepius ENT_ASCLEPIUS | patron_of | Telesphorus ENT_TELESPHORUS | high | Telesphorus ("he who brings completion/recovery") is a Graeco-Roman healing daimon who accompanies Asclepius; he is the personification of convalescence, depicted as a hooded dwarf standing beside the healer god. Theoi Daimones. | Theoi Daemones/personifications index SRC_THEOI_DAIMONES | 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]);