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 subject_entity_id = "ENT_ISR_MICHAEL"
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 |
|---|---|---|---|---|---|---|---|---|
| 542 | Michael ENT_ISR_MICHAEL | patron_of | Protection ENT_PROTECTION | high | Michael is a protective heavenly prince. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 551 | Michael ENT_ISR_MICHAEL | patron_of | War ENT_WAR | medium | DDD supports Michael as angelic figure associated with martial/warrior function; normalized from broad aligned_with to functional patron_of without asserting embodiment or identity. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 558 | Michael ENT_ISR_MICHAEL | member_of | Angels ENT_ANGELS | high | Michael is an angelic prince. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 568 | Michael ENT_ISR_MICHAEL | opposes | Satan ENT_ISR_SATAN | medium | Michael and Satan become opponents in later apocalyptic and Christian reception. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 573 | Michael ENT_ISR_MICHAEL | patron_of | Sovereignty ENT_SOVEREIGNTY | medium | Michael acts as a heavenly prince under divine authority. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 579 | Michael ENT_ISR_MICHAEL | opposes | Belial ENT_ISR_BELIAL | medium | Michael and Belial represent opposed heavenly/adversarial forces in Second Temple-style dualistic frameworks. | Dictionary of Deities and Demons in the Bible SRC_DDD_BIBLE | reviewed | |
| 1090 | Michael ENT_ISR_MICHAEL | opposes | Beelzeboul ENT_LAT_BEELZEBOUL | medium | Michael functions as an angelic authority opposed to demonic powers in Solomonic and related angelological traditions. | F. C. Conybeare, “The Testament of Solomon,” Jewish Quarterly Review 11 (1898): 1–45 SRC_TESTAMENT_SOLOMON | reviewed | |
| 1391 | Michael ENT_ISR_MICHAEL | reception_of | Amesha Spentas ENT_ZOR_AMESHA_SPENTAS | low | Emergence of named archangels (here: Michael as representative) as structural parallel to Amesha Spentas; both systems place named divine councillors around the high god with specific cosmic domains. Low confidence: structural parallel, not proven transmission. | Mary Boyce, Zoroastrians SRC_BOYCE_ZOROASTRIANS | reviewed | Second Temple Period PER_ISR_SECOND_TEMPLE |
| 1420 | Michael ENT_ISR_MICHAEL | received_as | Mikail ENT_ISL_MIKAIL | high | Michael (Hebrew Mikha'el, "who is like God?") is received in Islam as Mikail, named alongside Jibril in Quran 2:98: "Whoever is an enemy to Allah and His angels and His messengers and Gabriel and Michael — then indeed, Allah is an enemy to the disbelievers." Same archangel, directly named in the Quran. | Qur’an SRC_QURAN | reviewed | Early Islam PER_ISL_EARLY |
| 2627 | Michael ENT_ISR_MICHAEL | guides | Pistis Sophia ENT_PS_PISTIS_SOPHIA | medium | Michael and Gabriel are sent to bear Pistis Sophia up out of the Chaos on their hands. | Pistis Sophia (Askew Codex), c. 3rd-4th c. CE, Egypt SRC_PISTIS_SOPHIA | reviewed | Gnostic and Neoplatonic (2nd–4th c.) PER_GNO_2ND_4TH |
| 2804 | Michael ENT_ISR_MICHAEL | opposes | Princes of the Nations ENT_ISR_PRINCES_NATIONS | high | Michael, prince of Israel, stands against the angelic princes of the nations (Daniel 10). | The Hebrew Bible / Tanakh (primary text; Masoretic Text tradition; reference editions: Biblia Hebraica Stuttgartensia / Biblia Hebraica Quinta; citations by book, chapter, and verse) SRC_HEBREW_BIBLE | reviewed | |
| 4264 | Michael ENT_ISR_MICHAEL | member_of | The Seven Planetary Angels of the Grimoire Tradition ENT_SOL_PLANETARY_ANGELS | medium | The canonical archangel Michael is the Sun member of the grimoire seven-planetary-angel set. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4265 | Michael ENT_ISR_MICHAEL | presides_over | Sun ENT_SUN | medium | Michael governs the sphere and operations of the Sun in the grimoire planetary scheme. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | 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]);