sources
Data license: CC-BY
1 row where datasetId = 120 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 |
---|---|---|---|---|---|---|---|---|
49 | United Nations Peacekeeping | { "link": "https://peacekeeping.un.org/en/data", "retrievedDate": "2022-02-24", "additionalInfo": "All data is taken directly from the United Nations, with the exception of the historical size of the peacekeeping force (1947-1991), which is instead taken from the Global Policy Forum. Available at: https://www.globalpolicy.org/security-council/peacekeeping/peacekeeping-data.html\n\nThe data for the size and breakdown of the peacekeeping force from the United Nations is taken as the value reported in the December report at the end of the year (with the exception of 1998, which is taken in November).\n\nFor example, summaries from 2010 onwards are given here: https://peacekeeping.un.org/sites/default/files/00-front_page_msr_december_2021.pdf. We have taken figures from December in that report as the figures for a given year.", "dataPublishedBy": "United Nations & Global Policy Forum", "dataPublisherSource": "United Nations" } |
2015-09-08 17:51:27 | 2017-11-02 13:04:39 | United Nations Peacekeeping 120 | All data is taken directly from the United Nations, with the exception of the historical size of the peacekeeping force (1947-1991), which is instead taken from the Global Policy Forum. Available at: https://www.globalpolicy.org/security-council/peacekeeping/peacekeeping-data.html The data for the size and breakdown of the peacekeeping force from the United Nations is taken as the value reported in the December report at the end of the year (with the exception of 1998, which is taken in November). For example, summaries from 2010 onwards are given here: https://peacekeeping.un.org/sites/default/files/00-front_page_msr_december_2021.pdf. We have taken figures from December in that report as the figures for a given year. | https://peacekeeping.un.org/en/data | United Nations & Global Policy Forum |
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");