sources
Data license: CC-BY
1 row where datasetId = 2751 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 |
---|---|---|---|---|---|---|---|---|
15484 | UCDP/PRIO | { "link": "http://ucdp.uu.se/downloads/ & https://www.prio.org/Data/Armed-Conflict/Battle-Deaths/The-Battle-Deaths-Dataset-version-30/", "retrievedDate": null, "additionalInfo": "For the PRIO data, a full list of sources is available at www.prio.org/Data/Armed-Conflict. For the small number of conflicts which are ascribed two different conflict types, we have apportioned the death count evenly between the two.", "dataPublishedBy": "Uppsala Conflict Data Program (UCDP) & Peace Research Institute Oslo (PRIO)", "dataPublisherSource": null } |
2018-04-10 13:09:43 | 2018-04-11 17:45:13 | Global battle-related and 'one-sided violence' deaths since 1946 – PRIO/UCDP 2751 | For the PRIO data, a full list of sources is available at www.prio.org/Data/Armed-Conflict. For the small number of conflicts which are ascribed two different conflict types, we have apportioned the death count evenly between the two. | http://ucdp.uu.se/downloads/ & https://www.prio.org/Data/Armed-Conflict/Battle-Deaths/The-Battle-Deaths-Dataset-version-30/ | Uppsala Conflict Data Program (UCDP) & Peace Research Institute Oslo (PRIO) |
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");