sources
Data license: CC-BY
1 row where datasetId = 3245 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 |
---|---|---|---|---|---|---|---|---|
16749 | Fochesato and Bowles (2013 and 2017) | { "dataPublishedBy": "Mattia Fochesato and Samuel Bowles. 2013. \u2018Wealth Inequality from Prehistory to the Present: Data, Sources and Methods.\u2019 Dynamics of Wealth Inequality Project, Behavioral Sciences Program, Santa Fe Institute; Mattia Fochesato and Samuel Bowles. 2017. \u2018Technology, Institutions and Wealth Inequality in the Very Long Run\u2019. Santa Fe Institute" } |
2019-03-06 13:28:26 | 2019-03-06 13:28:26 | Figure 19.1_Wealth inequality 3245 | Mattia Fochesato and Samuel Bowles. 2013. ‘Wealth Inequality from Prehistory to the Present: Data, Sources and Methods.’ Dynamics of Wealth Inequality Project, Behavioral Sciences Program, Santa Fe Institute; Mattia Fochesato and Samuel Bowles. 2017. ‘Technology, Institutions and Wealth Inequality in the Very Long Run’. Santa Fe Institute |
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");