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)'}
5 rows where object_entity_id = "ENT_ISL_ALLAH"
This data as json, CSV (advanced)
Suggested facets: relationship_type, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 993 | Iblis ENT_ISL_IBLIS | opposes | Allah ENT_ISL_ALLAH | high | Iblis rebels against Allah. | Qur’an SRC_QURAN | reviewed | |
| 3078 | Hamalat al-Arsh ENT_ISL_HAMALAT_ARSH | aligned_with | Allah ENT_ISL_ALLAH | high | The Throne-bearers carry the Throne of God and glorify him. | Qur’an SRC_QURAN | reviewed | |
| 5492 | The Ninety-Nine Names of God (al-Asma al-Husna) ENT_ISL_ASMA_AL_HUSNA | embodies | Allah ENT_ISL_ALLAH | high | The ninety-nine Beautiful Names are the names and attributes of the one God, describing and belonging to Allah. | Classical Sunni Islamic tradition (the schools of law; the devotional enumeration of the Ninety-Nine Names) SRC_ISLAMIC_TRADITION | reviewed | |
| 6549 | Tawhid (the Druze doctrine of divine unity) ENT_DRZ_TAWHID | reception_of | Allah ENT_ISL_ALLAH | high | Druze tawhid develops the Islamic affirmation of God's absolute unity (Allah) in a distinctive transcendent direction. | Nejla M. Abu-Izzeddin, The Druzes: A New Study of Their History, Faith and Society (Brill, 1984) SRC_ABU_IZZEDDIN_DRUZES | reviewed | |
| 6952 | Allah-Muhammad-Ali (the Alevi triad) ENT_ALV_TRINITY | reception_of | Allah ENT_ISL_ALLAH | high | The triad's Hak (the Truth/God) is the Alevi reception of Allah (existing ENT_ISL_ALLAH). | Markus Dressler, Writing Religion: The Making of Turkish Alevi Islam (Oxford UP, 2013) SRC_DRESSLER_WRITING | 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]);