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 object_entity_id = "ENT_SUF_TARIQA"
This data as json, CSV (advanced)
Suggested facets: relationship_type, confidence, source_id
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2522 | Fana ENT_SUF_FANA | member_of | Tariqa ENT_SUF_TARIQA | high | Fana is a culminating station of the path. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2523 | Baqa ENT_SUF_BAQA | member_of | Tariqa ENT_SUF_TARIQA | high | Baqa is the path's consummation. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2524 | Marifa ENT_SUF_MARIFA | member_of | Tariqa ENT_SUF_TARIQA | high | Marifa is the knowing attained on the path. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2525 | Dhikr ENT_SUF_DHIKR | member_of | Tariqa ENT_SUF_TARIQA | high | Dhikr is the core practice of the path. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2558 | al-Ghazali ENT_SUF_GHAZALI | teaches | Tariqa ENT_SUF_TARIQA | high | The Ihya maps the stations and disciplines of the path for the mainstream believer. | Abu Hamid al-Ghazali, Ihya Ulum al-Din ("The Revival of the Religious Sciences"), c. 1105 CE SRC_GHAZALI_IHYA | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2559 | al-Qushayri ENT_SUF_QUSHAYRI | teaches | Tariqa ENT_SUF_TARIQA | high | The Risala codified the stations (maqamat) and states (ahwal) of the path. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 2560 | Abd al-Qadir al-Jilani ENT_SUF_JILANI | teaches | Tariqa ENT_SUF_TARIQA | high | Al-Jilani founded the Qadiriyya, the first enduring Sufi order. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | Classical Islam PER_ISL_CLASSICAL |
| 6238 | Tijaniyya ENT_SUF_TIJANIYYA | aligned_with | Tariqa ENT_SUF_TARIQA | high | The Tijaniyya is a tariqa (Sufi path), instantiating the general category of the Sufi order. | Ali Harazim, Jawahir al-Ma'ani (the foundational compendium of Ahmad al-Tijani's teaching, early 19th c.) SRC_TIJANI_JAWAHIR | reviewed | |
| 6242 | Darqawiyya ENT_SUF_DARQAWIYYA | aligned_with | Tariqa ENT_SUF_TARIQA | high | The Darqawiyya is a Shadhili-derived tariqa, instantiating the Sufi-order category. | Mawlay al-Arabi al-Darqawi, al-Rasa'il (Letters of guidance, early 19th c.) SRC_DARQAWI_RASAIL | reviewed | |
| 6244 | Khalwatiyya ENT_SUF_KHALWATIYYA | aligned_with | Tariqa ENT_SUF_TARIQA | high | The Khalwatiyya is a major tariqa, instantiating the Sufi-order category. | Annemarie Schimmel, Mystical Dimensions of Islam (University of North Carolina Press, 1975) SRC_SCHIMMEL_SUFISM | reviewed | |
| 6250 | Abd al-Wahhab al-Sha'rani ENT_SUF_SHARANI | member_of | Tariqa ENT_SUF_TARIQA | medium | Al-Sha'rani was a Shadhili master who founded an Egyptian Shadhili sub-line (Sha'rawiyya). | Abd al-Wahhab al-Sha'rani, al-Tabaqat al-Kubra (Lawaqih al-Anwar; hagiographic lives of the saints, 16th c.) SRC_SHARANI_TABAQAT | 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]);