sources
Data license: CC-BY
1 row where datasetId = 5744 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 |
---|---|---|---|---|---|---|---|---|
26741 | World Bank Poverty and Inequality Platform (2022) | { "link": "https://pip.worldbank.org/", "retrievedDate": "2022-10-03", "additionalInfo": "This is a calculation from PIP data to get the number of surveys in the past decade, the sum of surveys for the current year and the 9 years before.", "dataPublishedBy": "World Bank Poverty and Inequality Platform", "dataPublisherSource": "World Bank. Data are based on primary household survey data obtained from government statistical agencies and World Bank country departments." } |
2022-09-01 01:34:59 | 2023-06-19 14:10:44 | Number of surveys in the past decade (World Bank PIP) 5744 | This is a calculation from PIP data to get the number of surveys in the past decade, the sum of surveys for the current year and the 9 years before. | https://pip.worldbank.org/ | World Bank Poverty and Inequality Platform |
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");