sources
Data license: CC-BY
1 row where datasetId = 224 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 |
---|---|---|---|---|---|---|---|---|
190 | UN Population Division (Fertility) (2015 revision) | { "link": "http://esa.un.org/unpd/wpp/Download/Standard/Fertility/", "retrievedDate": "19/05/2016", "additionalInfo": "The data for a particular refers to the 5 years preceding that year. E.g. 2015 refers to 2010-2015 in the original data.", "dataPublishedBy": "United Nations \u2013 Population Division. Published in the World Population Prospects; 2015 revision.", "dataPublisherSource": null } |
2016-05-20 14:58:20 | 2017-11-20 10:35:44 | Fertility - UN Population Division (2015 revision) 224 | The data for a particular refers to the 5 years preceding that year. E.g. 2015 refers to 2010-2015 in the original data. | http://esa.un.org/unpd/wpp/Download/Standard/Fertility/ | United Nations – Population Division. Published in the World Population Prospects; 2015 revision. |
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");