sources
Data license: CC-BY
1 row where datasetId = 914 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 |
---|---|---|---|---|---|---|---|---|
6724 | World Health Organization, Report of Selected Vaccine Preventable Diseases (2017) | { "link": "http://polioeradication.org/where-we-work/polio-free-countries/", "retrievedDate": "10/09/2017", "additionalInfo": "In three countries polio remains endemic today: Afghanistan, Nigeria and Pakistan. \n\nSwitzerland's data point was missing in the original dataset and was obtained from the WHO (2017) time series dataset \"Reported Cases of Selected Vaccine Preventable Diseases (VPDs)\" which can be found under point \"3.1 Reported incidence time series\" here: http://www.who.int/immunization/monitoring_surveillance/data/en/ \n\nSomalia was listed twice in the GPEI table, so again the WHO (2017) dataset cited above was consulted to make out which year was in fact the correct information. \n\nTimor's datapoint originally read \"pre 1985\" and was replaced with 1985 for this visualization.", "dataPublishedBy": "Global Poverty Eradication Initiative (2017)", "dataPublisherSource": "The GPEI website does not specify the source(s) of their table." } |
2017-09-10 16:01:59 | 2017-11-02 13:04:39 | Year of last recorded wild poliomyelitis virus - WHO (GPEI) (2017) 914 | In three countries polio remains endemic today: Afghanistan, Nigeria and Pakistan. Switzerland's data point was missing in the original dataset and was obtained from the WHO (2017) time series dataset "Reported Cases of Selected Vaccine Preventable Diseases (VPDs)" which can be found under point "3.1 Reported incidence time series" here: http://www.who.int/immunization/monitoring_surveillance/data/en/ Somalia was listed twice in the GPEI table, so again the WHO (2017) dataset cited above was consulted to make out which year was in fact the correct information. Timor's datapoint originally read "pre 1985" and was replaced with 1985 for this visualization. | http://polioeradication.org/where-we-work/polio-free-countries/ | Global Poverty Eradication Initiative (2017) |
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");