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)'}
2 rows where subject_entity_id = "ENT_ITA_SILVANUS"
This data as json, CSV (advanced)
| relationship_id ▼ | subject_entity_id | relationship_type | object_entity_id | confidence | rationale | source_id | review_status | period_id |
|---|---|---|---|---|---|---|---|---|
| 2464 | Silvanus ENT_ITA_SILVANUS | aligned_with | Pan ENT_PAN | medium | Silvanus and Pan share the structural function of deity of uncultivated, boundary wildlands, and both are associated with shepherds and the rustic world beyond the city. Virgil's Eclogues place them in equivalent roles: "Silvanus and Pan and the sisterhood of Naiads" (Ecl. 10.24-26). Ancient writers sometimes grouped them together as rural deities. However, unlike Faunus/Pan, the identification of Silvanus with Pan is less systematic — Silvanus has a distinctly Italic character (boundary guardian, property deity) that Pan lacks. Confidence medium: structural parallel and Virgilian grouping, not explicit identification. | Virgil, Aeneid (19 BCE) SRC_VIRGIL_AENEID | reviewed | Archaic Italic (c. 900–509 BCE) PER_ITA_ARCHAIC |
| 2465 | Silvanus ENT_ITA_SILVANUS | aligned_with | Faunus ENT_ITA_FAUNUS | medium | Silvanus and Faunus are the two principal Italic deities of the wildlands, often grouped together in Roman texts as complementary figures of the rural, uncultivated world. Faunus presides over the prophetic voices and pastoral wildlands; Silvanus guards the forest boundaries and woodlands. Ovid (Fasti 5.99-102) places them in parallel in the context of rural Italian religion. Their cults are structurally analogous (both have no formal temple of the highest grade in the city center; both receive purely votive cult in the countryside) and their functional domains overlap in the silva/saltus zone. | Ovid, Fasti SRC_OVID_FASTI | reviewed | Archaic Italic (c. 900–509 BCE) PER_ITA_ARCHAIC |
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]);