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)'}
10 rows where object_entity_id = "ENT_HRN_PLANETARY_SEVEN"
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 |
|---|---|---|---|---|---|---|---|---|
| 6624 | Shamash (the Sun) of Harran ENT_HRN_SHAMASH_SUN | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Shamash/Sun is one of the seven planetary deities of the Harranian heptad (Green; Fihrist). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6625 | Sin (the Moon) of Harran [Sabian cult-phase] ENT_HRN_SIN_MOON | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Sin/Moon is the supreme member of the Harranian planetary heptad (Green). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6626 | Kronos (Saturn) of Harran ENT_HRN_KRONOS_SATURN | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Kronos/Saturn is one of the seven planetary deities of Harran (Green; Fihrist). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6627 | Zeus (Jupiter / Bel) of Harran ENT_HRN_ZEUS_JUPITER | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Zeus/Jupiter is one of the seven planetary deities of Harran (Green; Fihrist). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6628 | Ares (Mars / Nergal) of Harran ENT_HRN_ARES_MARS | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Ares/Mars is one of the seven planetary deities of Harran (Green; Fihrist). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6629 | Aphrodite (Venus / Ishtar) of Harran ENT_HRN_APHRODITE_VENUS | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Aphrodite/Venus is one of the seven planetary deities of Harran (Green; Fihrist). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6630 | Hermes-Nabu (Mercury) of Harran ENT_HRN_HERMES_MERCURY | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | Hermes-Nabu/Mercury is one of the seven planetary deities of Harran (Green; Fihrist). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6656 | Agathodaimon as Harranian Prophet-Sage ENT_HRN_AGATHODAIMON | member_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | low | Agathodaimon is grouped with the Harranian prophetic/teaching tradition surrounding the planetary cult; weak roster linkage to the cult-hub (Fihrist tradition; Green). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | reviewed | |
| 6659 | The Planetary Ascent of the Soul (Harranian) ENT_HRN_PLANETARY_ASCENT | associated_with | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | The soul's ascent passes through the spheres of the seven planetary deities, binding the doctrine to the cult-heptad (Green). | Corpus Hermeticum SRC_CORPUS_HERMETICUM | reviewed | |
| 6661 | The Planetary Temples of Harran (Buyut al-Kawakib) ENT_HRN_TEMPLES | dwelling_of | The Seven Planetary Deities of Harran (al-Aṣnām al-Sabʿa) ENT_HRN_PLANETARY_SEVEN | high | The planetary temples of Harran were each dedicated to one of the seven planetary deities, in distinctive geometric forms keyed to each planet (Fihrist; Green). | Tamara M. Green, The City of the Moon God: Religious Traditions of Harran SRC_GREEN_MOON_GOD | 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]);