sources
Data license: CC-BY
1 row where datasetId = 5659 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 |
---|---|---|---|---|---|---|---|---|
22719 | Claassen (2022) | { "link": "http://chrisclaassen.com/data.html", "retrievedDate": "July 12, 2022", "additionalInfo": "This dataset provides information on citizens' satisfaction with democracy, using data from Claassen (2022).\n\nYou can download the code and complete dataset, including supplementary variables, from GitHub: https://github.com/owid/notebooks/tree/main/BastianHerre/democracy", "dataPublishedBy": "Claassen, Christopher, and Pedro Magalh\u00e3es. 2022. Effective Government and Evaluations of Democracy. Comparative Political Studies 55(5): 869-894." } |
2022-07-18 16:14:21 | 2022-07-18 16:14:21 | Democratic satisfaction - Claassen 5659 | This dataset provides information on citizens' satisfaction with democracy, using data from Claassen (2022). You can download the code and complete dataset, including supplementary variables, from GitHub: https://github.com/owid/notebooks/tree/main/BastianHerre/democracy | http://chrisclaassen.com/data.html | Claassen, Christopher, and Pedro Magalhães. 2022. Effective Government and Evaluations of Democracy. Comparative Political Studies 55(5): 869-894. |
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");