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 source_id = "SRC_WILKES_ILLYRIANS"
This data as json, CSV (advanced)
Suggested facets: subject_entity_id, relationship_type, object_entity_id, confidence
| 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 | |
| 7499 | Vidasus ENT_ILL_VIDASUS | consort_of | Thana ENT_ILL_THANA | high | Vidasus and Thana are regularly paired as a divine couple in the Topusko votive inscriptions. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7500 | Thana ENT_ILL_THANA | consort_of | Vidasus ENT_ILL_VIDASUS | high | Thana is the consort of Vidasus, paired together in the Topusko cult of woodland deities. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7502 | Bindus ENT_ILL_BINDUS | equated_with | Neptune ENT_ROM_NEPTUNE | high | Bindus is invoked in Iapodian inscriptions as Bindus Neptunus, an ancient interpretatio Romana identifying him with Neptune. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | reviewed | |
| 7503 | Vidasus ENT_ILL_VIDASUS | equated_with | Silvanus ENT_ITA_SILVANUS | high | Vidasus is identified with the Roman/Italic Silvanus in the Topusko inscriptions, an attested interpretatio Romana of the woodland god. | John J. Wilkes, The Illyrians (Blackwell, 1992) SRC_WILKES_ILLYRIANS | 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 |
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]);