sources
Data license: CC-BY
1 row where datasetId = 235 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 |
---|---|---|---|---|---|---|---|---|
201 | World Happiness Report (2022) | { "link": "https://worldhappiness.report/ed/2022/#appendices-and-data", "retrievedDate": "2022-05-12", "additionalInfo": "Life evaluation was measured by the individual answers to the Cantril ladder question: \u201cPlease imagine a ladder, with steps numbered from 0 at the bottom to 10 at the top. The top of the ladder represents the best possible life for you and the bottom of the ladder represents the worst possible life for you. On which step of the ladder would you say you personally feel you stand at this time?\u201d\n\nThe value shown in a given year is the average of that year and the previous and following year. For example, the value given for 2020 is an average of the values for 2019-2021.\n\nThis dataset should be next updated by the source in April 2023. We will update it on Our World in Data soon after the new version is published. At the link above you can directly access the source page and see the latest available data.", "dataPublishedBy": "World Happiness Report 2022", "dataPublisherSource": "Gallup World Poll surveys (life evaluation question)" } |
2016-05-28 00:52:34 | 2017-11-02 13:04:39 | World Happiness Report (2022) 235 | Life evaluation was measured by the individual answers to the Cantril ladder question: “Please imagine a ladder, with steps numbered from 0 at the bottom to 10 at the top. The top of the ladder represents the best possible life for you and the bottom of the ladder represents the worst possible life for you. On which step of the ladder would you say you personally feel you stand at this time?” The value shown in a given year is the average of that year and the previous and following year. For example, the value given for 2020 is an average of the values for 2019-2021. This dataset should be next updated by the source in April 2023. We will update it on Our World in Data soon after the new version is published. At the link above you can directly access the source page and see the latest available data. | https://worldhappiness.report/ed/2022/#appendices-and-data | World Happiness Report 2022 |
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");