Entity Functions
Data license: MIT · Data source: jebboone/deitydb
3 rows where function_name = "divination"
This data as json, CSV (advanced)
| Link | entity_id | function_name | confidence | rationale | source_id | review_status |
|---|---|---|---|---|---|---|
| ENT_APOLLO,divination | Apollo ENT_APOLLO | divination | high | Apollo governs major oracular divination, especially Delphi. | SRC_THEOI_GODS | candidate_verified_name |
| ENT_CALCHAS,divination | Calchas ENT_CALCHAS | divination | high | Calchas is a seer and diviner. | SRC_THEOI_GODS | candidate_verified_name |
| ENT_MELAMPUS,divination | Melampus ENT_MELAMPUS | divination | high | Melampus is a seer and diviner. | SRC_THEOI_GODS | candidate_verified_name |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "entity_functions" (
[entity_id] TEXT REFERENCES [entities]([entity_id]),
[function_name] TEXT REFERENCES [functions]([function_name]),
[confidence] TEXT,
[rationale] TEXT,
[source_id] TEXT,
[review_status] TEXT,
PRIMARY KEY ([entity_id], [function_name])
);
CREATE INDEX [idx_entity_functions_function_name]
ON [entity_functions] ([function_name]);
CREATE INDEX [idx_entity_functions_entity_id]
ON [entity_functions] ([entity_id]);