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 object_entity_id = "ENT_SPEECH"
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 |
|---|---|---|---|---|---|---|---|---|
| 434 | Hu ENT_EGY_HU | embodies | Speech ENT_SPEECH | high | Hu personifies authoritative utterance. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 435 | Thoth ENT_EGY_THOTH | patron_of | Speech ENT_SPEECH | medium | Thoth is associated with writing, knowledge, and sacred/authoritative expression. | Richard H. Wilkinson, The Complete Gods and Goddesses of Ancient Egypt SRC_WILKINSON_EGYPTIAN_GODS | reviewed | |
| 547 | Gabriel ENT_ISR_GABRIEL | transmits | Speech ENT_SPEECH | medium | Gabriel communicates divine messages. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 765 | Logos ENT_GNO_LOGOS | embodies | Speech ENT_SPEECH | medium | Logos as word/reason overlaps with sacred speech and ordering utterance. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 766 | Logos ENT_VAL_LOGOS | embodies | Speech ENT_SPEECH | medium | Logos as word/reason overlaps with sacred speech and ordering utterance. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 767 | Logos ENT_HER_LOGOS | embodies | Speech ENT_SPEECH | medium | Logos as word/reason overlaps with sacred speech and ordering utterance. | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 826 | Ogma ENT_CEL_OGMA | patron_of | Speech ENT_SPEECH | medium | Ogma is associated with eloquence. | Proinsias Mac Cana, Celtic Mythology SRC_MACCANA_CELTIC_MYTH | reviewed | |
| 1800 | Catherine of Alexandria ENT_SAINT_CATHERINE_ALEX | patron_of | Speech ENT_SPEECH | high | Golden Legend (Jacobus de Voragine): Catherine of Alexandria is celebrated for confounding fifty pagan philosophers in public debate; she is the patron of scholars, theologians, and orators. | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | approved | |
| 1837 | Pheme ENT_PHEME | embodies | Speech ENT_SPEECH | high | Pheme (Rumour/Fame) personifies spoken reputation and fame; equivalent to Roman Fama. | Theoi Daemones/personifications index SRC_THEOI_DAIMONES | approved | |
| 2058 | Daphne ENT_DAPHNE | embodies | Speech ENT_SPEECH | medium | Daphne is associated with the laurel (daphne), the tree of prophecy and poetic inspiration sacred to Apollo; the Delphic Pythia chewed laurel leaves. | 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]);