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 subject_entity_id = "ENT_ISL_ISA"
This data as json, CSV (advanced)
Suggested facets: relationship_type, source_id, review_status
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 1758 | ʿĪsā ibn Maryam ENT_ISL_ISA | patron_of | Healing ENT_HEALING | high | Quran 3:49: "I will heal the blind and the leper, and bring the dead to life, by God's permission." | Qur’an SRC_QURAN | approved | |
| 1759 | ʿĪsā ibn Maryam ENT_ISL_ISA | reveals | Revelation ENT_REVELATION | high | Quran 57:27: God gave ʿĪsā the Injīl (Gospel) as revealed scripture; 5:46 confirms him as bearer of the Injīl. | Qur’an SRC_QURAN | approved | |
| 1760 | ʿĪsā ibn Maryam ENT_ISL_ISA | reception_of | Jesus Christ ENT_JESUS_CHRIST | high | Quran 3:45-49; 19:16-33: the Quranic ʿĪsā ibn Maryam draws on and reinterprets the Jesus tradition while rejecting divinity; the figure shares virgin birth, miracles, and the Injīl but reframes them within Islamic monotheism. | Qur’an SRC_QURAN | approved | |
| 5126 | ʿĪsā ibn Maryam ENT_ISL_ISA | member_of | The Prophets of Islam (Anbiya) ENT_ISL_PROPHETS | high | Prophet and messenger (Surah Al 'Imran). | Encyclopaedia of Islam entries SRC_ISLAM_EI2 | reviewed | |
| 5132 | ʿĪsā ibn Maryam ENT_ISL_ISA | member_of | Ulu al-Azm ENT_ISL_ULU_AL_AZM | high | One of the five Ulu al-Azm. | Encyclopaedia of Islam entries SRC_ISLAM_EI2 | 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]);