sources
Data license: CC-BY
1 row where datasetId = 2480 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 |
---|---|---|---|---|---|---|---|---|
14683 | WHO (2017) and UN Population Division (2017) | { "link": "http://apps.who.int/gho/data/node.home and https://esa.un.org/unpd/wpp/Download/Standard/Population/", "retrievedDate": "22 February 2018", "additionalInfo": null, "dataPublishedBy": "WHO's Global Health Observatory and UN Population Division", "dataPublisherSource": "Organization's own records" } |
2018-02-23 08:40:03 | 2018-02-23 08:40:03 | The world's number and share of vaccinated one-year-olds 2480 | http://apps.who.int/gho/data/node.home and https://esa.un.org/unpd/wpp/Download/Standard/Population/ | WHO's Global Health Observatory and UN Population Division |
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");