sources
Data license: CC-BY
1 row where datasetId = 5166 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 |
---|---|---|---|---|---|---|---|---|
17896 | Actual and imputed rent as share of GDP – OECD | { "link": "https://stats.oecd.org/Index.aspx?DataSetCode=SNA_TABLE6A#", "retrievedDate": "11/09/2020", "additionalInfo": "The OECD collects National Accounts data from member states and a limited number of non-member states. Within the 'Final consumption expenditure of households' tables, it provides a breakdown of household final expenditure by purpose, according to the COICOP classification (Classification of Individual Consumption According to Purpose). This includes actual and imputed rent. Imputed rent is an estimate of the rent foregone by home owners in living in their own property, rather than renting it out.", "dataPublishedBy": "OECD", "dataPublisherSource": "National Accounts of individual countries" } |
2020-09-11 10:53:06 | 2020-09-11 10:53:06 | Households' actual and imputed rent as share of GDP – OECD 5166 | The OECD collects National Accounts data from member states and a limited number of non-member states. Within the 'Final consumption expenditure of households' tables, it provides a breakdown of household final expenditure by purpose, according to the COICOP classification (Classification of Individual Consumption According to Purpose). This includes actual and imputed rent. Imputed rent is an estimate of the rent foregone by home owners in living in their own property, rather than renting it out. | https://stats.oecd.org/Index.aspx?DataSetCode=SNA_TABLE6A# | 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");