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 object_entity_id = "ENT_PLANETARY_SPHERES"
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 |
|---|---|---|---|---|---|---|---|---|
| 681 | Hebdomad ENT_OPH_HEBDOMAD | belongs_to_realm | Planetary Spheres ENT_PLANETARY_SPHERES | medium | The seven archons are commonly interpreted through planetary/cosmic sphere symbolism. | Bentley Layton, The Gnostic Scriptures SRC_LAYTON_GNOSTIC | reviewed | |
| 755 | Decans ENT_LAT_DECANS | belongs_to_realm | Planetary Spheres ENT_PLANETARY_SPHERES | medium | Decans belong to astral/time-governing cosmology. | Greek Magical Papyri SRC_GREEK_MAGICAL_PAPYRI | reviewed | |
| 756 | Planetary Rulers ENT_LAT_PLANETARY_RULERS | rules | Planetary Spheres ENT_PLANETARY_SPHERES | high | Planetary rulers govern or correspond to planetary spheres. | Greek Magical Papyri SRC_GREEK_MAGICAL_PAPYRI | reviewed | |
| 910 | Seven Planets ENT_MAN_PLANETS | belongs_to_realm | Planetary Spheres ENT_PLANETARY_SPHERES | high | Seven planets correspond to lower planetary/cosmic powers. | Ginza Rba SRC_GINZA_RBA | reviewed | |
| 4219 | The Seven Planetary Spirits of the Picatrix ENT_AST_PLANETARY_SPIRITS | aligned_with | Planetary Spheres ENT_PLANETARY_SPHERES | high | The seven Picatrix planetary spirits are the living powers of the seven classical planetary spheres. | Picatrix (Ghayat al-Hakim), trans. Greer & Warnock; ed. Pingree SRC_PICATRIX | reviewed | |
| 4229 | Spirit of Saturn (Zuhal) ENT_AST_SATURN_SPIRIT | aligned_with | Planetary Spheres ENT_PLANETARY_SPHERES | medium | No Kronos/Saturn deity exists in the DB; the Saturn spirit is anchored to its classical sphere. | Picatrix (Ghayat al-Hakim), trans. Greer & Warnock; ed. Pingree SRC_PICATRIX | reviewed | |
| 4250 | The Thirty-Six Decans (Wujuh) of the Zodiac ENT_AST_DECANS | aligned_with | Planetary Spheres ENT_PLANETARY_SPHERES | medium | The decans are subdivisions of the zodiacal sphere governed by the planets. | Picatrix (Ghayat al-Hakim), trans. Greer & Warnock; ed. Pingree SRC_PICATRIX | reviewed | |
| 4252 | The Seven Planetary Angels of the Grimoire Tradition ENT_SOL_PLANETARY_ANGELS | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | The seven planetary angels collectively govern the seven planetary spheres in the Latin astral-magic scheme. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4255 | Cassiel ENT_SOL_CASSIEL | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | Cassiel presides over the sphere of Saturn. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4257 | Sachiel ENT_SOL_SACHIEL | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | Sachiel presides over the sphere of Jupiter. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4262 | Samael (Angel of Mars) ENT_SOL_SAMAEL_MARS | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | Samael presides over the sphere of Mars. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4267 | Raphael ENT_ISR_RAPHAEL | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | Raphael governs the sphere of Mercury. | Liber Razielis (Latin, compiled for Alfonso X) SRC_LIBER_RAZIELIS | reviewed | |
| 4279 | The Angelic Kings of the Air (Liber Juratus) ENT_SOL_LIBER_JURATUS_KINGS | presides_over | Planetary Spheres ENT_PLANETARY_SPHERES | medium | The Liber Juratus kings of the air are correlated with the days/planets and the cardinal directions. | Liber Juratus Honorii (The Sworn Book of Honorius), ed. Hedegard SRC_LIBER_JURATUS | 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]);