sources
Data license: CC-BY
1 row where datasetId = 5532 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 |
---|---|---|---|---|---|---|---|---|
21930 | Correlates of War Project - National Material Capabilities | { "link": "https://correlatesofwar.org/data-sets/national-material-capabilities", "retrievedDate": "24 February 2022", "additionalInfo": "The National Material Capabilities dataset of the Correlates of War (CoW) project contains annual values for the total population, urban population, iron and steel production, energy consumption, military personnel, and military expenditure of all state members since 1816.", "dataPublishedBy": "Singer, J. David, Stuart Bremer, and John Stuckey. (1972). \"Capability Distribution, Uncertainty, and Major Power War, 1820-1965.\" in Bruce Russett (ed) Peace, War, and Numbers, Beverly Hills: Sage, 19-48." } |
2022-02-24 09:58:20 | 2022-02-24 09:58:20 | Correlates of War (CoW) - National Material Capabilities 5532 | The National Material Capabilities dataset of the Correlates of War (CoW) project contains annual values for the total population, urban population, iron and steel production, energy consumption, military personnel, and military expenditure of all state members since 1816. | https://correlatesofwar.org/data-sets/national-material-capabilities | Singer, J. David, Stuart Bremer, and John Stuckey. (1972). "Capability Distribution, Uncertainty, and Major Power War, 1820-1965." in Bruce Russett (ed) Peace, War, and Numbers, Beverly Hills: Sage, 19-48. |
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");