sources
Data license: CC-BY
1 row where datasetId = 2972 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 |
---|---|---|---|---|---|---|---|---|
15690 | Luttmer (2011) | { "link": "http://restud.oxfordjournals.org/content/78/3/1042.short", "retrievedDate": null, "additionalInfo": "The firm level employee data is contained within the supplementary data available from the link above. It is in the folder for Figure I.", "dataPublishedBy": "Luttmer, E. G. J., (2011) On the mechanics of firm growth. Review of Economic Studies, 78, 1042-1068 ", "dataPublisherSource": null } |
2018-09-21 09:08:52 | 2018-09-21 09:10:37 | TE-7.1 2972 | The firm level employee data is contained within the supplementary data available from the link above. It is in the folder for Figure I. | http://restud.oxfordjournals.org/content/78/3/1042.short | Luttmer, E. G. J., (2011) On the mechanics of firm growth. Review of Economic Studies, 78, 1042-1068 |
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");