Entity Periods
Data license: MIT · Data source: jebboone/deitydb
- confidence
- {'description': 'high / medium / low — certainty of the period assignment'}
- rationale
- {'description': 'Justification with source citations'}
2 rows where entity_id = "ENT_NEMESIS"
This data as json, CSV (advanced)
| Link | entity_id | period_id | confidence | rationale | source_id | review_status |
|---|---|---|---|---|---|---|
| ENT_NEMESIS,PER_GRK_ARCHAIC | Nemesis ENT_NEMESIS | Archaic Period PER_GRK_ARCHAIC | high | Retribution; Hesiod Theogony 223; Works and Days 197 | SRC_HESIOD_THEOGONY | reviewed |
| ENT_NEMESIS,PER_GRK_CLASSICAL | Nemesis ENT_NEMESIS | Classical Period PER_GRK_CLASSICAL | high | Classical philosophical concept; Aeschylus; Pindar; Herodotus; sanctuary at Rhamnous | SRC_BURKERT_GREEK_RELIGION | reviewed |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "entity_periods" (
[entity_id] TEXT REFERENCES [entities]([entity_id]),
[period_id] TEXT REFERENCES [periods]([period_id]),
[confidence] TEXT,
[rationale] TEXT,
[source_id] TEXT,
[review_status] TEXT,
PRIMARY KEY ([entity_id], [period_id])
);
CREATE INDEX [idx_entity_periods_period_id]
ON [entity_periods] ([period_id]);
CREATE INDEX [idx_entity_periods_entity_id]
ON [entity_periods] ([entity_id]);