sources
Data license: CC-BY
1 row where datasetId = 1852 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 |
---|---|---|---|---|---|---|---|---|
13163 | Marco et al. (2017) | { "link": "http://ssrn.com/abstract=2616724", "retrievedDate": "2017-11-30", "additionalInfo": "", "dataPublishedBy": "Marco, Alan C. and Carley, Michael and Jackson, Steven and Myers, Amanda, The USPTO Historical Patent Data Files: Two Centuries of Innovation (June 1, 2015). Available at SSRN: https://ssrn.com/abstract=2616724 or http://dx.doi.org/10.2139/ssrn.2616724", "dataPublisherSource": null } |
2017-11-30 17:49:06 | 2023-05-25 12:39:08 | USA patents granted - US Patent & Trademark Office 1852 | http://ssrn.com/abstract=2616724 | Marco, Alan C. and Carley, Michael and Jackson, Steven and Myers, Amanda, The USPTO Historical Patent Data Files: Two Centuries of Innovation (June 1, 2015). Available at SSRN: https://ssrn.com/abstract=2616724 or http://dx.doi.org/10.2139/ssrn.2616724 |
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");