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_ASX_PANTHEON"
This data as json, CSV (advanced)
Suggested facets: confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 7411 | Woden ENT_ASX_WODEN | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | high | Woden is the chief deity of the reconstructed Anglo-Saxon pantheon (Pollington). | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7412 | Thunor ENT_ASX_THUNOR | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | high | Thunor is a core Anglo-Saxon god attested in place-names and the weekday. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7413 | Tiw ENT_ASX_TIW | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | high | Tiw is a core Anglo-Saxon god attested in place-names and the weekday. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7414 | Frige ENT_ASX_FRIGE | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | high | Frige is the principal Anglo-Saxon goddess, attested in the weekday Friday. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7415 | Eostre ENT_ASX_EOSTRE | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | medium | Eostre is attested by Bede as an Anglo-Saxon goddess (month Eosturmonath). | Bede, De temporum ratione (The Reckoning of Time), c. 725 CE SRC_BEDE_DTR | reviewed | |
| 7416 | Hreda ENT_ASX_HREDA | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | medium | Hreda is attested by Bede as an Anglo-Saxon goddess (month Hredmonath). | Bede, De temporum ratione (The Reckoning of Time), c. 725 CE SRC_BEDE_DTR | reviewed | |
| 7417 | Seaxneat ENT_ASX_SEAXNEAT | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | medium | Seaxneat heads the East Saxon royal genealogy as a divine ancestor. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7418 | Ing ENT_ASX_ING | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | medium | Ing is named in the Old English Rune Poem as an Anglo-Saxon deity. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7419 | Wuldor ENT_ASX_WULDOR | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | low | Wuldor is a glory-god inferred for the Anglo-Saxon pantheon from lexis and place-names. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed | |
| 7420 | Erce ENT_ASX_ERCE | member_of | Anglo-Saxon Pantheon ENT_ASX_PANTHEON | medium | Erce is the earth-mother invoked in the Anglo-Saxon Aecerbot charm. | Stephen Pollington, The Elder Gods: The Otherworld of Early England (2011) SRC_POLLINGTON_ELDER_GODS | reviewed |
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]);