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)'}
7 rows where subject_entity_id = "ENT_WIC_TRIPLE_GODDESS"
This data as json, CSV (advanced)
Suggested facets: relationship_type, object_entity_id, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 7605 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | member_of | The Wiccan Pantheon (hub) ENT_WIC_PANTHEON | high | The Triple Goddess is the principal female deity of the Wiccan pantheon hub. | Doreen Valiente, Witchcraft for Tomorrow (London: Robert Hale, 1978) SRC_VALIENTE_WFT | reviewed | |
| 7610 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | emanates_from | The Dryghtyn (the One) ENT_WIC_DRYGHTYN | medium | The Goddess is understood within the tradition as a manifestation emanating from the supreme Dryghtyn. | Doreen Valiente, Witchcraft for Tomorrow (London: Robert Hale, 1978) SRC_VALIENTE_WFT | reviewed | |
| 7617 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | aligned_with | Hecate ENT_HECATE | high | The Crone aspect of the Wiccan Triple Goddess is identified with the classical lunar/chthonic Hecate. | Doreen Valiente, Witchcraft for Tomorrow (London: Robert Hale, 1978) SRC_VALIENTE_WFT | 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 | |
| 7619 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | aligned_with | Selene ENT_SELENE | medium | The lunar Mother aspect of the Triple Goddess aligns with the Greek moon goddess Selene, the full-moon face of the triad. | Doreen Valiente, Witchcraft for Tomorrow (London: Robert Hale, 1978) SRC_VALIENTE_WFT | reviewed | |
| 8028 | The Triple Goddess (Maiden, Mother, Crone) ENT_WIC_TRIPLE_GODDESS | reception_of | Hecate ENT_HECATE | high | Classical triple-form goddess underlying the Wiccan Maiden-Mother-Crone; Hutton, The Triumph of the Moon. | Ronald Hutton, The Triumph of the Moon: A History of Modern Pagan Witchcraft (Oxford: OUP, 1999) SRC_HUTTON_TRIUMPH | reviewed | Modern Wicca / Pagan Witchcraft PER_WICCA |
| 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]);