sources
Data license: CC-BY
1 row where datasetId = 247 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 |
---|---|---|---|---|---|---|---|---|
226 | J. Doyne Farmer and François Lafond (2016) | { "link": "The original research paper is open access available at: http://www.sciencedirect.com/science/article/pii/S0048733315001699", "retrievedDate": "The authors of the dataset provided the data to Max Roser on 7 July 2016", "additionalInfo": null, "dataPublishedBy": "This dataset is from J. Doyne Farmer and Fran\u00e7ois Lafond (2016) \u2013 How predictable is technological progress? In Research Policy Volume 45, Issue 3, April 2016, Pages 647\u2013665 http://www.sciencedirect.com/science/article/pii/S0048733315001699", "dataPublisherSource": null } |
2016-07-08 12:44:08 | 2017-11-02 13:04:39 | Learning costs, J. Doyne Farmer and François Lafond (2016) 247 | The original research paper is open access available at: http://www.sciencedirect.com/science/article/pii/S0048733315001699 | This dataset is from J. Doyne Farmer and François Lafond (2016) – How predictable is technological progress? In Research Policy Volume 45, Issue 3, April 2016, Pages 647–665 http://www.sciencedirect.com/science/article/pii/S0048733315001699 |
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");