sources
Data license: CC-BY
1 row where datasetId = 5534 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 |
---|---|---|---|---|---|---|---|---|
21932 | Nuclear Weapons Tests – Arms Control Association (2020) | { "link": "https://www.armscontrol.org/factsheets/nucleartesttally", "retrievedDate": "February 24, 2022", "additionalInfo": "This datasets provides the number of nuclear weapons tests by country using data from the Arms Control Association (2020).\n\nYou can download the code and complete dataset, including supplementary variables, from GitHub: https://github.com/owid/notebooks/tree/main/BastianHerre/nuclear_weapons", "dataPublishedBy": "Arms Control Association" } |
2022-02-24 14:49:07 | 2022-02-24 14:49:07 | Nuclear weapons tests – Arms Control Association (2020) 5534 | This datasets provides the number of nuclear weapons tests by country using data from the Arms Control Association (2020). You can download the code and complete dataset, including supplementary variables, from GitHub: https://github.com/owid/notebooks/tree/main/BastianHerre/nuclear_weapons | https://www.armscontrol.org/factsheets/nucleartesttally | Arms Control Association |
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");