sources
Data license: CC-BY
1 row where datasetId = 5168 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 |
---|---|---|---|---|---|---|---|---|
17898 | Household expenditure on Housing, water, electricity, gas and other fuels as a share of GDP - UN | { "link": "http://data.un.org/Data.aspx?d=SNA&f=group_code%3a302%3bitem_code%3a4", "retrievedDate": "11/09/2020", "additionalInfo": "The UN collects National Accounts data from individual countries. Within the 'Individual consumption expenditure of households, NPISHs, and general government at current prices' tables, it provides a breakdown of household final expenditure by purpose, according to the COICOP classification (Classification of Individual Consumption According to Purpose). Category 4 relates to Housing, water, electricity, gas and other fuels, which includes actual and imputed rent, as well expenditure on the utilities indicated.", "dataPublishedBy": "UN", "dataPublisherSource": "National Accounts" } |
2020-09-11 13:50:45 | 2020-09-11 13:50:45 | Household expenditure on Housing, water, electricity, gas and other fuels as a share of GDP - UN 5168 | The UN collects National Accounts data from individual countries. Within the 'Individual consumption expenditure of households, NPISHs, and general government at current prices' tables, it provides a breakdown of household final expenditure by purpose, according to the COICOP classification (Classification of Individual Consumption According to Purpose). Category 4 relates to Housing, water, electricity, gas and other fuels, which includes actual and imputed rent, as well expenditure on the utilities indicated. | http://data.un.org/Data.aspx?d=SNA&f=group_code%3a302%3bitem_code%3a4 | UN |
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");