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)'}
6 rows where object_entity_id = "ENT_ROM_DIANA"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 3459 | Abnoba ENT_CEL_ABNOBA | syncretized_with | Diana ENT_ROM_DIANA | high | Worshipped as Diana Abnoba. | Corpus Inscriptionum Latinarum (Latin votive and dedicatory inscriptions) SRC_CIL | reviewed | |
| 3460 | Arduinna ENT_CEL_ARDUINNA | syncretized_with | Diana ENT_ROM_DIANA | high | Worshipped as Diana Arduinna. | Corpus Inscriptionum Latinarum (Latin votive and dedicatory inscriptions) SRC_CIL | reviewed | |
| 7504 | Thana ENT_ILL_THANA | equated_with | Diana ENT_ROM_DIANA | high | Thana, the woodland and hunt goddess paired with Vidasus, is identified with the Roman Diana via interpretatio Romana. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7588 | Reitia ENT_VEN_REITIA | aligned_with | Diana ENT_ROM_DIANA | medium | Under Romanization the Este sanctuary cult of Reitia was assimilated toward Diana (Artemis' Roman counterpart). | Aldo L. Prosdocimi, studies on the Venetic language and pantheon (Lingue e dialetti dell'Italia antica; 'Le religioni dell'Italia antica') SRC_PROSDOCIMI_VENETIC | reviewed | |
| 7618 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | aligned_with | Diana ENT_ROM_DIANA | high | The Maiden/huntress aspect of the Triple Goddess aligns with Diana, central to the Romantic 'Dianic' witch-cult lineage absorbed by Wicca. | Doreen Valiente, Witchcraft for Tomorrow (London: Robert Hale, 1978) SRC_VALIENTE_WFT | reviewed | |
| 8029 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | reception_of | Diana ENT_ROM_DIANA | medium | Moon-goddess of the Graves "White Goddess" construction adopted by Wicca; Graves, The White Goddess. | Robert Graves, The White Goddess: A Historical Grammar of Poetic Myth (Faber & Faber, 1948) SRC_GRAVES_WHITE_GODDESS | reviewed | Modern Wicca / Pagan Witchcraft PER_WICCA |
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]);