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)'}
9 rows where source_id = "SRC_JAMI_NAFAHAT"
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 |
|---|---|---|---|---|---|---|---|---|
| 6038 | Baha al-Din Naqshband ENT_SUF_NAQSHBAND | member_of | Naqshbandiyya ENT_SUF_NAQSHBANDI | high | Eponymous founder of the Naqshbandiyya. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6039 | Khwaja Ubayd Allah Ahrar ENT_SUF_KHWAJA_AHRAR | member_of | Naqshbandiyya ENT_SUF_NAQSHBANDI | high | Leading Naqshbandi master of the Timurid era. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6040 | Abd al-Rahman Jami ENT_SUF_JAMI | member_of | Naqshbandiyya ENT_SUF_NAQSHBANDI | high | Naqshbandi poet and hagiographer. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6044 | Sadr al-Din al-Qunawi ENT_SUF_QUNAWI | taught_by | Ibn al-Arabi ENT_SUF_IBN_ARABI | high | Stepson and chief disciple of Ibn al-Arabi. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6045 | Sadr al-Din al-Qunawi ENT_SUF_QUNAWI | reception_of | Ibn al-Arabi ENT_SUF_IBN_ARABI | high | Systematized Ibn al-Arabi's doctrine of wahdat al-wujud. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6046 | Fakhr al-Din Iraqi ENT_SUF_IRAQI | taught_by | Sadr al-Din al-Qunawi ENT_SUF_QUNAWI | medium | Drew his Lama'at from Qunawi's expositions of Ibn al-Arabi. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6047 | Fakhr al-Din Iraqi ENT_SUF_IRAQI | reception_of | Ibn al-Arabi ENT_SUF_IBN_ARABI | high | His Lama'at versifies Ibn al-Arabi's metaphysics of love. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6056 | Khwaja Ubayd Allah Ahrar ENT_SUF_KHWAJA_AHRAR | reception_of | Baha al-Din Naqshband ENT_SUF_NAQSHBAND | high | Carried forward the Naqshbandi path of Baha al-Din. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | reviewed | |
| 6057 | Abd al-Rahman Jami ENT_SUF_JAMI | taught_by | Khwaja Ubayd Allah Ahrar ENT_SUF_KHWAJA_AHRAR | medium | Affiliated to the Naqshbandiyya through Khwaja Ahrar. | Jami, Nafahat al-Uns (Breaths of Fellowship, 1478) SRC_JAMI_NAFAHAT | 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]);