Entity Sources
Data license: MIT · Data source: jebboone/deitydb
- evidence_type
- {'description': 'e.g. Direct attestation, Secondary analysis, Epigraphic, Numismatic'}
- source_note
- {'description': 'Specific passage citations and notes on how this source attests the entity'}
2 rows where entity_id = "ENT_SAINT_DENIS"
This data as json, CSV (advanced)
| Link | entity_id | source_id | evidence_type | source_note |
|---|---|---|---|---|
| ENT_SAINT_DENIS,SRC_FARMER_SAINTS,scholarly attestation | Denis of Paris ENT_SAINT_DENIS | David Hugh Farmer, The Oxford Dictionary of Saints (Oxford University Press, 5th ed. 2011) SRC_FARMER_SAINTS | scholarly attestation | Farmer, The Oxford Dictionary of Saints. |
| ENT_SAINT_DENIS,SRC_GOLDEN_LEGEND,direct attestation | Denis of Paris ENT_SAINT_DENIS | Jacobus de Voragine, Golden Legend SRC_GOLDEN_LEGEND | direct attestation | Life recorded in the Golden Legend (Jacobus de Voragine). |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "entity_sources" (
[entity_id] TEXT REFERENCES [entities]([entity_id]),
[source_id] TEXT REFERENCES [sources]([source_id]),
[evidence_type] TEXT,
[source_note] TEXT,
PRIMARY KEY ([entity_id], [source_id], [evidence_type])
);
CREATE INDEX [idx_entity_sources_source_id]
ON [entity_sources] ([source_id]);
CREATE INDEX [idx_entity_sources_entity_id]
ON [entity_sources] ([entity_id]);