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_KAI"
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 |
|---|---|---|---|---|---|---|---|---|
| 3495 | Baal-Saphon ENT_PHO_BAAL_SAPHON | cult_form_of | Baal Hadad ENT_CAN_BAAL | high | A Phoenician cult-form of Baal Hadad of Mount Saphon. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 3637 | Baalat Gebal ENT_PHO_BAALAT_GEBAL | aligned_with | Astarte ENT_CAN_ASTARTE | medium | Baalat Gebal, the Lady of Byblos, akin to Astarte. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 3638 | Shadrapa ENT_PHO_SHADRAPA | patron_of | Healing ENT_HEALING | high | Shadrapa, "Shed has healed," a healing god. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 3639 | Sid ENT_PHO_SID | embodies | War ENT_WAR | medium | Sid, a hunt and war god. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5991 | Pumay ENT_PHO_PUMAY | member_of | The Phoenician Pantheon ENT_PHO_PANTHEON | high | Pumay (behind Pumayyaton/Pygmalion of Kition) is a Cypro-Phoenician deity; the single safe attested link given his uncertain function. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5992 | Baalat Gebal ENT_PHO_BAALAT_GEBAL | member_of | The Phoenician Pantheon ENT_PHO_PANTHEON | high | Lady of Byblos, head of the Byblos civic pantheon. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5993 | Baalat Gebal ENT_PHO_BAALAT_GEBAL | equated_with | Hathor ENT_EGY_HATHOR | low | Egyptianizing iconography at Byblos led to her identification with Hathor. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5994 | Baal-Saphon ENT_PHO_BAAL_SAPHON | member_of | The Phoenician Pantheon ENT_PHO_PANTHEON | high | Baal-Saphon is a Phoenician storm/sea cult-form; pantheon membership raises his degree without a false equation. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5995 | Sakon ENT_PHO_SAKON | member_of | The Phoenician Pantheon ENT_PHO_PANTHEON | high | Sakon is an obscure Phoenician deity; pantheon membership is the safe additional link. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5996 | Shadrapa ENT_PHO_SHADRAPA | member_of | The Phoenician Pantheon ENT_PHO_PANTHEON | high | Shadrapa ('Shed has healed') is a Phoenician/Punic healing god. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5997 | Shadrapa ENT_PHO_SHADRAPA | equated_with | Bacchus/Liber ENT_ROM_BACCHUS | medium | In Punic Africa Shadrapa was equated with Liber/Dionysus (Latino-Punic dedications at Lepcis Magna). | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | reviewed | |
| 5998 | Sid ENT_PHO_SID | member_of | The Phoenician Pantheon ENT_PHO_PANTHEON | high | Sid (eponym of Sardinia, temple of Antas) is a Punic hunt/war god. | Kanaanäische und Aramäische Inschriften (KAI), ed. Donner & Röllig SRC_KAI | 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]);