sources
Data license: CC-BY
1 row where datasetId = 316 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 |
---|---|---|---|---|---|---|---|---|
424 | OECD based on Royuela et al. (2014) | { "link": "http://dx.doi.org/10.1787/888933207870", "retrievedDate": "28/10/2016", "additionalInfo": "Each observation corresponds to a different sub-national region. France, for example, is divided in 22 different regions. The source notes that these regions correspond in most cases to the principal sub-national unit of government (states or provinces)\u00a0", "dataPublishedBy": "OECD (2015), In It Together: Why Less Inequality Benefits All, OECD Publishing, Paris.", "dataPublisherSource": "Royuela, V., P. Veneri and R. Ramos (2014), \u201cIncome Inequality, Urban Size and Economic Growth in OECD" } |
2016-10-28 21:35:55 | 2017-11-02 13:04:39 | Subnational inequality - OECD based on Royuela et al. (2014)) 316 | Each observation corresponds to a different sub-national region. France, for example, is divided in 22 different regions. The source notes that these regions correspond in most cases to the principal sub-national unit of government (states or provinces) | http://dx.doi.org/10.1787/888933207870 | OECD (2015), In It Together: Why Less Inequality Benefits All, OECD Publishing, Paris. |
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");