sources
Data license: CC-BY
1 row where datasetId = 943 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 |
---|---|---|---|---|---|---|---|---|
6802 | Sexual Violence - UNICEF Global Databases (2017) | { "link": "https://data.unicef.org/topic/child-protection/violence/sexual-violence/", "retrievedDate": "28/11/2017", "additionalInfo": "The source notes that in some instances observations differ from the standard definition or refer to only part of a country. ", "dataPublishedBy": "UNICEF; Data and Analytics Section; Division of Data, Research and Policy", "dataPublisherSource": "DHS, MICS and other nationally representative surveys." } |
2017-09-29 20:28:30 | 2017-11-28 20:01:48 | Sexual Violence – UNICEF (2017) 943 | The source notes that in some instances observations differ from the standard definition or refer to only part of a country. | https://data.unicef.org/topic/child-protection/violence/sexual-violence/ | 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");