sources
Data license: CC-BY
1 row where datasetId = 980 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 |
---|---|---|---|---|---|---|---|---|
6839 | Child Marriage - UNICEF Global Databases (2016) | { "link": null, "retrievedDate": "2017-10-24", "additionalInfo": "\t\r\n\u2013 The source notes that in some instances observations differ from the standard definition or refer to only part of a country. \r\n\r\n\u2013 The dates associated to each observation correspond to the end of the survey used as underlying source\r\n\r\n\r\n", "dataPublishedBy": "UNICEF; Data and Analytics Section; Division of Data, Research and Policy", "dataPublisherSource": " DHS, MICS and other nationally representative surveys." } |
2017-10-24 18:52:19 | 2017-11-27 14:02:21 | Child Marriage – UNICEF (2017) 980 | – The source notes that in some instances observations differ from the standard definition or refer to only part of a country. – The dates associated to each observation correspond to the end of the survey used as underlying source | UNICEF; Data and Analytics Section; Division of Data, Research and Policy |
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");