sources
Data license: CC-BY
1 row where datasetId = 2675 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 |
---|---|---|---|---|---|---|---|---|
14901 | Human Development Report (2015) | { "link": "http://hdr.undp.org/en/data#", "retrievedDate": "23/03/2018", "additionalInfo": "All observations for 1995 use 'share of seats in parliament' that refers to 1997.", "dataPublishedBy": "UN Development Programme", "dataPublisherSource": "Relies on data from the UN's MMEIG which includes WHO, UNICEF, UNFPA, and the World Bank as well as the UN Department of Economic and Social Affairs, UNESCO, IPU, ILO" } |
2018-03-23 10:52:19 | 2018-03-23 11:04:44 | Gender Inequality Index - Human Development Report (2015) 2675 | All observations for 1995 use 'share of seats in parliament' that refers to 1997. | http://hdr.undp.org/en/data# | UN Development Programme |
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");