sources
Data license: CC-BY
1 row where datasetId = 242 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 |
---|---|---|---|---|---|---|---|---|
209 | Tanzi & Schuknecht (2000) | { "link": "https://link.springer.com/article/10.1023%2FA%3A1017578302202?LI=true", "retrievedDate": "30/09/2017", "additionalInfo": "The underlying sources for Tanzi & Schuknecht (2000) include: League of Nations Statistical Yearbook (various years), Mitchell (1962), OECD Education at a Glance (1996), UNESCO World Education Report (1993), UNDP Human Development Report (1996), UN World Economics Survey (various years). To the extent that the authors do not specify which sources were prioritised for each year/country, it is not possible for us to reliably extend the time series with newer data. For instance, the OECD Education at a Glance report (1998), which presents estimates for the years 1990 and 1995, suggests discrepancies with the values reported by Tanzi & Schuknecht (2000) for 1993.", "dataPublishedBy": "Vito and Schuknecht (2000) Public Spending in the 20th Century A Global Perspective", "dataPublisherSource": "Census data, long-term statistical data" } |
2016-06-22 23:34:24 | 2017-11-02 13:04:39 | Public Expenditure on Education OECD - Tanzi & Schuknecht (2000) 242 | The underlying sources for Tanzi & Schuknecht (2000) include: League of Nations Statistical Yearbook (various years), Mitchell (1962), OECD Education at a Glance (1996), UNESCO World Education Report (1993), UNDP Human Development Report (1996), UN World Economics Survey (various years). To the extent that the authors do not specify which sources were prioritised for each year/country, it is not possible for us to reliably extend the time series with newer data. For instance, the OECD Education at a Glance report (1998), which presents estimates for the years 1990 and 1995, suggests discrepancies with the values reported by Tanzi & Schuknecht (2000) for 1993. | https://link.springer.com/article/10.1023%2FA%3A1017578302202?LI=true | Vito and Schuknecht (2000) Public Spending in the 20th Century A Global Perspective |
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");