sources
Data license: CC-BY
1 row where datasetId = 973 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 |
---|---|---|---|---|---|---|---|---|
6832 | GPEI (2017) | { "link": "http://polioeradication.org/polio-today/preparing-for-a-polio-free-world/certification/ http://polioeradication.org/where-we-work/polio-free-countries/", "retrievedDate": "17/10/2017", "additionalInfo": "The definition of WHO Regions can be found here: http://www.who.int/about/regions/en/ \n\nBecause the certification of being polio-free is done by the WHO by region and not by country (and only three years after the last case of polio was recorded), you see three polio statuses: endemic, polio-free (WHO Region not yet certified) and polio-free with the WHO Region of the country also certified polio-free.", "dataPublishedBy": "Global Polio Eradication Initiative (2017)", "dataPublisherSource": "The initiative collects its own data on polio cases and reports the WHO's certification as well." } |
2017-10-17 14:14:16 | 2017-11-02 13:04:39 | Global year of last polio case plus certification status - GPEI (2017) 973 | The definition of WHO Regions can be found here: http://www.who.int/about/regions/en/ Because the certification of being polio-free is done by the WHO by region and not by country (and only three years after the last case of polio was recorded), you see three polio statuses: endemic, polio-free (WHO Region not yet certified) and polio-free with the WHO Region of the country also certified polio-free. | http://polioeradication.org/polio-today/preparing-for-a-polio-free-world/certification/ http://polioeradication.org/where-we-work/polio-free-countries/ | Global Polio 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");