sources
Data license: CC-BY
1 row where datasetId = 4186 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 |
---|---|---|---|---|---|---|---|---|
17014 | Social expenditure by social policy area (SOCX) - OECD Stats (2019) | { "link": "https://stats.oecd.org/Index.aspx?datasetcode=SOCX_AGG", "retrievedDate": "15/10/19", "additionalInfo": "The OECD Social Expenditure Database groups benefits with a social purpose into 9 policy areas: old age, survivors, incapacity-related benefits, health, family, active labour market policies, unemployment, housing, and other social policy areas. \n\nSocial spending on each of these areas is expressed as a percentage of a country's GDP. \n\nFor further information see the <a href=\"http://www.oecd.org/social/soc/SOCX_Manuel_2019.pdf\">2019 SOCX manual</a>.\n", "dataPublishedBy": "OECD.Stat - The OECD Social Expenditure Database", "dataPublisherSource": "National statistical agencies." } |
2019-08-15 13:34:19 | 2019-08-15 13:34:19 | Social expenditure by social policy area - OECD SOCX (2019) 4186 | The OECD Social Expenditure Database groups benefits with a social purpose into 9 policy areas: old age, survivors, incapacity-related benefits, health, family, active labour market policies, unemployment, housing, and other social policy areas. Social spending on each of these areas is expressed as a percentage of a country's GDP. For further information see the <a href="http://www.oecd.org/social/soc/SOCX_Manuel_2019.pdf">2019 SOCX manual</a>. | https://stats.oecd.org/Index.aspx?datasetcode=SOCX_AGG | OECD.Stat - The OECD Social Expenditure Database |
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");