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)'}
12 rows where source_id = "SRC_BARANDIARAN"
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 |
|---|---|---|---|---|---|---|---|---|
| 5733 | Mari ENT_BSQ_MARI | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | Mari is the supreme deity of the Basque mythological pantheon. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5734 | Sugaar (Sugoi) ENT_BSQ_SUGAAR | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | Sugaar belongs to the Basque mythological pantheon. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5735 | Mairu ENT_BSQ_MAIRU | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | The Mairu giants belong to Basque mythology. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5736 | Basajaun ENT_BSQ_BASAJAUN | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | Basajaun is a being of the Basque mythological corpus. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5737 | Basandere ENT_BSQ_BASANDERE | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | Basandere is a being of the Basque mythological corpus. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5738 | Gaueko ENT_BSQ_GAUEKO | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | Gaueko is a spirit of the Basque mythological corpus. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5739 | Eate ENT_BSQ_EATE | member_of | Basque Pantheon ENT_BSQ_PANTHEON | medium | Eate is a storm spirit of the Basque corpus, though lightly attested. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5740 | Tartalo ENT_BSQ_TARTALO | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | Tartalo is a giant of Basque folklore. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5741 | Lamia (Lamiak) ENT_BSQ_LAMIA | member_of | Basque Pantheon ENT_BSQ_PANTHEON | high | The Lamiak are water spirits of Basque mythology. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5742 | Urtzi (Ortzi) ENT_BSQ_URTZI | member_of | Basque Pantheon ENT_BSQ_PANTHEON | low | Urtzi is included among Basque sky-concepts though its status as a deity is disputed. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5743 | Mari ENT_BSQ_MARI | consort_of | Sugaar (Sugoi) ENT_BSQ_SUGAAR | high | Sugaar is traditionally the serpent consort of Mari, the central divine pair of Basque mythology. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | reviewed | |
| 5744 | Mari ENT_BSQ_MARI | presides_over | Destruction ENT_DESTRUCTION | medium | Mari governs storms, hail and weather destruction visited on those who break her taboos. | José Miguel de Barandiarán, Mitología Vasca SRC_BARANDIARAN | 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]);