sources
Data license: CC-BY
1 row where datasetId = 134 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 |
---|---|---|---|---|---|---|---|---|
65 | RAND Database of Worldwide Terrorism Incidents | { "link": "http://www.rand.org/nsrd/projects/terrorism-incidents.html", "retrievedDate": "21/09/2015", "additionalInfo": "Several changes were made to the coding of terrorist incidents:\n\nAzores added to Portugal\nCanary Islands added to Spain\nChechnya added to Russia\nCroatians added to Croatia\nNorthern Ireland added to United Kingdom\nSri Lanka (Ceylon) added to Sri Lanka\nSouth Vietnam added to Vietnam\nTranskei added to South Africa\nTrucial Oman States added to United Arab Emirates\nZimbabwe (Rhodesia) added to Zimbabwe\nWest Bank/Gaza coded to Palestine", "dataPublishedBy": "RAND Corporation", "dataPublisherSource": "RAND Corporation" } |
2015-09-21 20:29:14 | 2017-11-02 13:04:39 | RAND Database of Worldwide Terrorism Incidents 134 | Several changes were made to the coding of terrorist incidents: Azores added to Portugal Canary Islands added to Spain Chechnya added to Russia Croatians added to Croatia Northern Ireland added to United Kingdom Sri Lanka (Ceylon) added to Sri Lanka South Vietnam added to Vietnam Transkei added to South Africa Trucial Oman States added to United Arab Emirates Zimbabwe (Rhodesia) added to Zimbabwe West Bank/Gaza coded to Palestine | http://www.rand.org/nsrd/projects/terrorism-incidents.html | RAND Corporation |
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");