sources
Data license: CC-BY
1 row where datasetId = 438 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 |
---|---|---|---|---|---|---|---|---|
560 | World Value Survey (2014) | { "link": "http://www.worldvaluessurvey.org/", "retrievedDate": "27/07/2016", "additionalInfo": "The data in the World Value Survey comes from surveys conducted in waves. The years in the dataset correspond to the end year in the corresponding wave. For example, observations from surveys in the wave 1981-1984 are dated 1984.\n\nThe dataset includes observations for Egypt. However, we have excluded these observations from our analysis. This is because the survey for Egypt in the wave labeled 2014 is from 2012, which was a year characterized by extreme political instability.", "dataPublishedBy": "World Value Survey (Longitudinal Multiple-Wave file, version 2015)", "dataPublisherSource": "Household surveys (representative at the national level)" } |
2017-04-24 23:58:32 | 2017-11-02 13:04:39 | Life satisfaction – World Value Survey (2014) 438 | The data in the World Value Survey comes from surveys conducted in waves. The years in the dataset correspond to the end year in the corresponding wave. For example, observations from surveys in the wave 1981-1984 are dated 1984. The dataset includes observations for Egypt. However, we have excluded these observations from our analysis. This is because the survey for Egypt in the wave labeled 2014 is from 2012, which was a year characterized by extreme political instability. | http://www.worldvaluessurvey.org/ | World Value Survey (Longitudinal Multiple-Wave file, version 2015) |
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");