sources
Data license: CC-BY
1 row where datasetId = 916 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 |
---|---|---|---|---|---|---|---|---|
6726 | Incidence Report of Selected Vaccine Preventable Diseases (VPDs) - WHO (2017) | { "link": "http://www.who.int/entity/immunization/monitoring_surveillance/data/incidence_series.xls?ua=1. https://esa.un.org/unpd/wpp/DVD/Files/1_Indicators%20(Standard)/EXCEL_FILES/1_Population/WPP2017_POP_F01_1_TOTAL_POPULATION_BOTH_SEXES.xlsx", "retrievedDate": "11/09/2017", "additionalInfo": "The Polio case data from the WHO (2017) were divided by the UN Population estimates (which were reported in thousands). The result was then divided by one thousand to obtain the number of polio cases per one million population.", "dataPublishedBy": "World Health Organization (2017). United Nations (2017)", "dataPublisherSource": "UNICEF and WHO's Joint Reporting Form (JRP) on Immunization, Vaccines and Biologicals (further explanations here: http://www.who.int/immunization/monitoring_surveillance/routine/reporting/en/). The United Nations DESA Population Division latest \"World Population Prospects\" Report from 2017 includes each country's yearly total population estimates from 1950 onwards, which is based on country's Census data." } |
2017-09-11 07:46:20 | 2017-11-15 17:07:53 | Number of polio cases per one million population - WHO (2017) 916 | The Polio case data from the WHO (2017) were divided by the UN Population estimates (which were reported in thousands). The result was then divided by one thousand to obtain the number of polio cases per one million population. | http://www.who.int/entity/immunization/monitoring_surveillance/data/incidence_series.xls?ua=1. https://esa.un.org/unpd/wpp/DVD/Files/1_Indicators%20(Standard)/EXCEL_FILES/1_Population/WPP2017_POP_F01_1_TOTAL_POPULATION_BOTH_SEXES.xlsx | World Health Organization (2017). United Nations (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");