sources
Data license: CC-BY
1 row where datasetId = 2936 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
15657 | Correlates of War; Conflict Catalogue, PRIO, UCDP | { "link": null, "retrievedDate": "September 2018", "additionalInfo": "For more details on the construction and sources of these series, see our data appendix here: https://ourworldindata.org/uploads/2018/09/Notes-on-five-sources-of-the-world-conflict-death-rate-since-1989.pdf", "dataPublishedBy": "Correlates of War; Conflict Catalogue, PRIO, UCDP", "dataPublisherSource": null } |
2018-09-11 13:52:33 | 2018-09-11 13:59:31 | World conflict deaths (various sources) 2936 | For more details on the construction and sources of these series, see our data appendix here: https://ourworldindata.org/uploads/2018/09/Notes-on-five-sources-of-the-world-conflict-death-rate-since-1989.pdf | Correlates of War; Conflict Catalogue, PRIO, UCDP |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");