sources
Data license: CC-BY
1 row where datasetId = 189 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 |
---|---|---|---|---|---|---|---|---|
138 | Hollyer et al. (2014) | { "link": "http://hrvtransparency.org/", "retrievedDate": "April 19, 2022", "additionalInfo": "This dataset provides information on government transparency, as per the index by Hollyer et al. (2014).\n\nA government is considered more transparent if it provides data on many measures included in the World Governance Indicators to the World Bank, even if other countries do not.", "dataPublishedBy": "Hollyer, James, Peter Rosendorff, and James Vreeland. 2014. Measuring Transparency. Political Analysis 22(4): 413-434.", "dataPublisherSource": "World Bank economic data." } |
2016-03-03 23:50:36 | 2017-11-16 12:51:25 | Government Transparency index - Hollyer et al. (2014) 189 | This dataset provides information on government transparency, as per the index by Hollyer et al. (2014). A government is considered more transparent if it provides data on many measures included in the World Governance Indicators to the World Bank, even if other countries do not. | http://hrvtransparency.org/ | Hollyer, James, Peter Rosendorff, and James Vreeland. 2014. Measuring Transparency. Political Analysis 22(4): 413-434. |
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");