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)'}
11 rows where object_entity_id = "ENT_ILL_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 |
|---|---|---|---|---|---|---|---|---|
| 7488 | Medaurus ENT_ILL_MEDAURUS | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | high | Medaurus, rider-god of Risinium, belongs to the Illyrian pantheon hub. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7489 | Redon ENT_ILL_REDON | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | high | Redon, sea/travel god of Lissus, belongs to the Illyrian pantheon hub. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7490 | Bindus ENT_ILL_BINDUS | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | high | Bindus, water-god of the Iapodes, belongs to the Illyrian pantheon hub. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7491 | Tadenus ENT_ILL_TADENUS | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | medium | Tadenus, local Dalmatian spring deity, belongs to the Illyrian pantheon hub. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7492 | Vidasus ENT_ILL_VIDASUS | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | high | Vidasus, woodland god of Topusko, belongs to the Illyrian pantheon hub. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7493 | Thana ENT_ILL_THANA | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | high | Thana, hunt/woodland goddess of Topusko, belongs to the Illyrian pantheon hub. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7494 | Eia ENT_ILL_EIA | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | medium | Eia, north-Adriatic tutelary goddess, belongs to the Illyrian pantheon hub. | Aleksandar Stipcevic, The Illyrians: History and Culture (Noyes Press, 1977) SRC_STIPCEVIC_ILLYRIANS | reviewed | |
| 7495 | En (Enji) ENT_ILL_EN | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | medium | En/Enji, reconstructed Illyrian fire-god, belongs to the Illyrian pantheon hub. | Aleksandar Stipcevic, The Illyrians: History and Culture (Noyes Press, 1977) SRC_STIPCEVIC_ILLYRIANS | reviewed | |
| 7496 | Dei-Paturos ENT_ILL_DEIPATUROS | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | medium | Dei-Paturos, Illyrian-Thracian sky/father god, belongs to the Illyrian pantheon hub. | Aleksandar Stipcevic, The Illyrians: History and Culture (Noyes Press, 1977) SRC_STIPCEVIC_ILLYRIANS | reviewed | |
| 7497 | Sentona ENT_ILL_SENTONA | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | medium | Sentona, Liburnian goddess of travel/wellbeing, belongs to the Illyrian pantheon hub. | Aleksandar Stipcevic, The Illyrians: History and Culture (Noyes Press, 1977) SRC_STIPCEVIC_ILLYRIANS | reviewed | |
| 7498 | Anzotica ENT_ILL_ANZOTICA | member_of | Illyrian Pantheon ENT_ILL_PANTHEON | medium | Anzotica, Liburnian love-goddess of Aenona, belongs to the Illyrian pantheon hub. | Aleksandar Stipcevic, The Illyrians: History and Culture (Noyes Press, 1977) SRC_STIPCEVIC_ILLYRIANS | 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]);