sources
Data license: CC-BY
1 row where datasetId = 3225 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 |
---|---|---|---|---|---|---|---|---|
16729 | UNESCO (2019) and World Bank (2019) | { "link": "http://data.uis.unesco.org", "retrievedDate": "28 February 2019", "additionalInfo": "This dataset used the UNESCO data on household and government expenditure on education as a share of GDP, added the shares together and multiplied it with GDP per capita (PPP in constant 2011 international $ as provided by the World Bank). ", "dataPublishedBy": "UNESCO (2019)", "dataPublisherSource": "Household level surveys" } |
2019-02-28 15:51:57 | 2019-02-28 15:51:57 | Public and private education expenditure - UNESCO (2019) 3225 | This dataset used the UNESCO data on household and government expenditure on education as a share of GDP, added the shares together and multiplied it with GDP per capita (PPP in constant 2011 international $ as provided by the World Bank). | http://data.uis.unesco.org | UNESCO (2019) |
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");