sources
Data license: CC-BY
1 row where datasetId = 295 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 |
---|---|---|---|---|---|---|---|---|
398 | Piketty (2014) | { "link": "http://piketty.pse.ens.fr/en/capital21c2", "retrievedDate": "20/09/2016", "additionalInfo": "Data on tax revenues include all taxes, fees, social contributions, and other payments that citizens mush pay under penalty of law.\n\nData on top marginal tax rates includes general income tax supplements, but excludes all other taxes and social contributions (e.g. NHS in the UK)", "dataPublishedBy": "Piketty, T. (2014). Capital in the 21st Century. Cambridge: Harvard University Press", "dataPublisherSource": "Various sources (see link for details)" } |
2016-09-20 22:31:00 | 2017-11-02 13:04:39 | Tax Revenue – Piketty (2014) 295 | Data on tax revenues include all taxes, fees, social contributions, and other payments that citizens mush pay under penalty of law. Data on top marginal tax rates includes general income tax supplements, but excludes all other taxes and social contributions (e.g. NHS in the UK) | http://piketty.pse.ens.fr/en/capital21c2 | Piketty, T. (2014). Capital in the 21st Century. Cambridge: Harvard University Press |
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");