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)'}
14 rows where source_id = "SRC_THEOI_NYMPHS"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2183 | Aphrodite ENT_APHRODITE | parent_of | Beroe ENT_BEROE | medium | Nonnus Dionysiaca 41.49-155: Beroe, eponymous nymph of the city Berytus (Beirut), is daughter of Aphrodite and Adonis in this late-antique source. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2184 | Hermes ENT_HERMES | opposes | Chelone ENT_CHELONE | high | The myth of Chelone: she refused to attend the wedding of Zeus and Hera, and Hermes punished her by transforming her into a tortoise (chelone), condemned to carry her house on her back. Theoi Nymphs. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2185 | Leimakides ENT_LEIMAKIDES | member_of | Nymphs ENT_NYMPHS | medium | Leimakides (Meadow Nymphs) are a subset of the broader nymph category; they inhabit the meadows and are grouped among the nymphs generally. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2186 | Napaeae ENT_NAPAEAE | member_of | Nymphs ENT_NYMPHS | medium | Napaeae (Valley Nymphs) are nymphs of glens and valleys; they are grouped among the broad collective of Greek nymphs. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2190 | Oceanus ENT_OCEANUS | parent_of | Nesoi ENT_NESOI | medium | The Nesoi (Island Nymphs) are associated with the ocean that surrounds the islands; Oceanus and Tethys, as parents of all water entities, are the conventional genealogical source for the collective Nesoi. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2201 | Hamadryads ENT_HAMADRYADS | member_of | Dryads ENT_DRYADS | high | Hamadryads (nymphs bound to specific trees, dying with them) are a subset of the Dryads (tree-nymphs) collectively; the distinction appears in Apollonius of Rhodes and later mythographers. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2202 | Dryads ENT_DRYADS | dwells_in | Earth ENT_EARTH | high | Dryads are tree spirits who dwell within trees and forests; they inhabit the wooded parts of the terrestrial realm (earth) as their natural domain. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2231 | Salmacis ENT_SALMACIS | paired_with | Hermaphroditus ENT_HERMAPHRODITUS | high | Ovid Metamorphoses 4.285-388 (drawing on Hellenistic source): Salmacis the naiad fell in love with Hermaphroditus; they were merged into one dual-gendered being in her pool. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2232 | Oceanus ENT_OCEANUS | parent_of | Naiads ENT_NAIADS | high | The Naiads (freshwater nymphs) derive collectively from Okeanos and Tethys as the primordial parents of all river and freshwater spirits; they are a subset of the Okeanian water spirits. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2233 | Crenaiae ENT_CRENAIAE | member_of | Naiads ENT_NAIADS | medium | Crenaiae (fountain/spring nymphs) are a subgroup of the Naiads who dwell specifically in springs and fountains. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2234 | Heleionomai ENT_HELEIONOMAI | member_of | Naiads ENT_NAIADS | medium | Heleionomai (marsh nymphs) are a subgroup of the Naiads who inhabit swamps and marshy areas. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2235 | Limnades ENT_LIMNADES | member_of | Naiads ENT_NAIADS | medium | Limnades (lake nymphs) are a subgroup of the Naiads who dwell in lakes and still waters. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2236 | Pegaeae ENT_PEGAEAE | member_of | Naiads ENT_NAIADS | medium | Pegaeae (spring-source nymphs) are a subgroup of the Naiads who dwell at the sources of springs. | Theoi Nymphs index SRC_THEOI_NYMPHS | approved | |
| 2237 | Potameides ENT_POTAMEIDES | member_of | Naiads ENT_NAIADS | medium | Potameides (river nymphs) are a subgroup of the Naiads who dwell in rivers and streams, not springs or lakes. | Theoi Nymphs index SRC_THEOI_NYMPHS | 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]);