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)'}
13 rows where object_entity_id = "ENT_ARAB_KAABA_IDOLS"
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 |
|---|---|---|---|---|---|---|---|---|
| 4311 | Isāf ENT_ARAB_ISAF | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Idol stationed at the Kaʿba/al-Safa per Ibn al-Kalbi. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4312 | Nāʾila ENT_ARAB_NAILA | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Idol stationed at the Kaʿba/al-Marwa per Ibn al-Kalbi. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4315 | Manāf ENT_ARAB_MANAF | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | medium | Meccan deity attested via theophoric ʿAbd Manaf. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4317 | Dhu'l-Khalasa ENT_ARAB_DHUL_KHALASA | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Major Arabian sanctuary-idol ('the Yemeni Kaʿba') per Ibn al-Kalbi. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4319 | Ruda ENT_ARAB_RUDA | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | medium | Widely attested Arabian deity grouped among the pre-Islamic gods. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4321 | Nuhm ENT_ARAB_NUHM | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | medium | Tribal deity of Muzayna, attested via ʿAbd Nuhm. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4322 | al-Fals ENT_ARAB_AL_FALS | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Sanctuary-idol of Tayyiʾ on Jabal Aja per Ibn al-Kalbi. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4324 | Saʿd ENT_ARAB_SAD | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Rock-idol of Banu Milkan receiving blood offerings per Ibn al-Kalbi. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4326 | Quzaḥ ENT_ARAB_QUZAH | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | medium | Deity of the Muzdalifa hill rites near Mecca. | Robert G. Hoyland, Arabia and the Arabs: From the Bronze Age to the Coming of Islam (Routledge, 2001) SRC_HOYLAND_ARABIA | reviewed | |
| 4328 | Suwāʿ ENT_ARAB_SUWA | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Named in Qurʾan 71:23; located among the Hudhayl by Ibn al-Kalbi. | Qur’an SRC_QURAN | reviewed | |
| 4330 | Yaʿūq ENT_ARAB_YAUQ | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Named in Qurʾan 71:23; horse-idol of Hamdan per Ibn al-Kalbi. | Qur’an SRC_QURAN | reviewed | |
| 4332 | Yagūth ENT_SAB_YAGHUTH | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Named in Qurʾan 71:23 among the antediluvian idols; the Yemeni lion-god also venerated in the Arabian sanctuaries. | Qur’an SRC_QURAN | reviewed | |
| 4333 | Nasr ENT_SAB_NASR | member_of | The Idols of Pre-Islamic Arabia ENT_ARAB_KAABA_IDOLS | high | Named in Qurʾan 71:23 among the antediluvian idols; the Himyaritic vulture-god also counted among the Arabian gods. | Qur’an SRC_QURAN | 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]);