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_NAB_PANTHEON"
This data as json, CSV (advanced)
Suggested facets: confidence
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 4286 | Dushara ENT_ARA_DUSHARA | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Dushara is the supreme dynastic god of the Nabataeans, attested at Petra, Bostra and Hegra. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4287 | Al-Lat ENT_ARA_ALLAT | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Allat is a leading Nabataean goddess, attested at Iram and across the Hawran. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4288 | Al-Uzza ENT_ARA_AL_UZZA | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Al-Uzza is the principal goddess at Petra (Temple of the Winged Lions). | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4289 | Manat ENT_ARA_MANAT | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Manat, as Manotu, is invoked in Nabataean tomb inscriptions at Hegra. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4290 | Hubal ENT_ARA_HUBAL | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | medium | Hubal is named with Dushara and Manotu in the Hegra tomb-curse inscriptions. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4295 | Shai al-Qaum ENT_NAB_SHAI_AL_QAUM | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Nabataean tutelary god attested in dedications at Palmyra. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4298 | Aʿra ENT_NAB_ARA | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Aʿra is the tutelary god of Bostra. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4301 | al-Kutbaʾ ENT_NAB_AL_KUTBA | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Attested at Petra, Hegra and Sinai. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4304 | Manotu ENT_NAB_MANOTU | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Invoked in the Hegra tomb inscriptions. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | reviewed | |
| 4308 | al-ʿUzza of Petra ENT_NAB_AL_UZZA_PETRA | member_of | The Nabataean Pantheon ENT_NAB_PANTHEON | high | Chief goddess of Petra. | John F. Healey, The Religion of the Nabataeans: A Conspectus (Leiden: Brill, 2001) SRC_HEALEY_NABATAEAN_RELIGION | 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]);