sources
Data license: CC-BY
1 row where datasetId = 2828 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 |
---|---|---|---|---|---|---|---|---|
15559 | OECD (2018) | { "link": "Data: https://stats.oecd.org/Index.aspx?DataSetCode=RS_GBL; Technical Paper: http://www.oecd.org/tax/tax-policy/constructing-the-global-revenue-statistics-database.pdf", "retrievedDate": "04/09/2019", "additionalInfo": "In 69 countries, the reporting year of tax revenue coincides with the calendar year, whereas 11 have different reporting years. Where the GDP reporting year differs from the calendar year, annual GDP estimates are calculated by aggregating quarterly GDP estimates corresponding to each country\u2019s fiscal (tax) year.\n\nFor further information on the OECD classification of taxes, see the OECD's Revenue Statistics Interpretative Guide (2017) available at: https://www.oecd.org/tax/tax-policy/oecd-classification-taxes-interpretative-guide.pdf\n\nFor a more extensive discussion of revenue statistics, see the full <a href=\"http://www.oecd.org/tax/tax-policy/revenue-statistics-2522770x.htm\">OECD Revenue Statistics 2018</a> report. ", "dataPublishedBy": "OECD", "dataPublisherSource": "Revenue Statistics publications, national statistics" } |
2018-07-04 10:50:03 | 2018-07-04 10:50:03 | Global Revenue Statistics Database - OECD (2018) 2828 | In 69 countries, the reporting year of tax revenue coincides with the calendar year, whereas 11 have different reporting years. Where the GDP reporting year differs from the calendar year, annual GDP estimates are calculated by aggregating quarterly GDP estimates corresponding to each country’s fiscal (tax) year. For further information on the OECD classification of taxes, see the OECD's Revenue Statistics Interpretative Guide (2017) available at: https://www.oecd.org/tax/tax-policy/oecd-classification-taxes-interpretative-guide.pdf For a more extensive discussion of revenue statistics, see the full <a href="http://www.oecd.org/tax/tax-policy/revenue-statistics-2522770x.htm">OECD Revenue Statistics 2018</a> report. | Data: https://stats.oecd.org/Index.aspx?DataSetCode=RS_GBL; Technical Paper: http://www.oecd.org/tax/tax-policy/constructing-the-global-revenue-statistics-database.pdf | 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");