sources
Data license: CC-BY
1 row where datasetId = 4099 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 |
---|---|---|---|---|---|---|---|---|
16929 | Corporate Tax Statistics Database (CTSD) - OECD (2019) | { "link": "https://stats.oecd.org/Index.aspx?DataSetCode=CTS_CIT", "retrievedDate": "04/05/2019", "additionalInfo": "Data is taken from the OECD's Corporate Tax Statistics Database (CTSD). The database compiles data relating to four main categories: i) corporate tax revenues; ii) corporate effective tax rates; iii) statutory corporate income tax rates; and iv) tax incentives related to innovation. \n\nFurther information on the CTSD is available on the <a href=\"http://www.oecd.org/tax/tax-policy/corporate-tax-statistics-database.htm\">OECD's website</a>.", "dataPublishedBy": "OECD", "dataPublisherSource": "Tax rates of non-OECD jurisdictions were provided by country representatives of members of the Inclusive Framework on BEPS, and tax rates of OECD jurisdictions are from <a href=\"https://stats.oecd.org/Index.aspx?DataSetCode=TABLE_II1\">Table II.1</a> Statutory Corporate Income Tax Rates of the OECD Tax Database." } |
2019-05-04 13:43:24 | 2019-05-04 13:43:24 | Corporate income tax (CIT) - Corporate Tax Statistics Database (CTSD) - OECD (2019) 4099 | Data is taken from the OECD's Corporate Tax Statistics Database (CTSD). The database compiles data relating to four main categories: i) corporate tax revenues; ii) corporate effective tax rates; iii) statutory corporate income tax rates; and iv) tax incentives related to innovation. Further information on the CTSD is available on the <a href="http://www.oecd.org/tax/tax-policy/corporate-tax-statistics-database.htm">OECD's website</a>. | https://stats.oecd.org/Index.aspx?DataSetCode=CTS_CIT | OECD |
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");