sources
Data license: CC-BY
1 row where datasetId = 4166 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 |
---|---|---|---|---|---|---|---|---|
16994 | Reaction to Terrorism - Gallup (2019) | { "link": "https://news.gallup.com/poll/4909/terrorism-united-states.aspx", "retrievedDate": "16/07/19", "additionalInfo": "Share of US respondents who said they were \"less willing\" to do certain activities as a result of terrorist events.\n\nThey were asked: \"As a result of the events relating to terrorism in recent years, would you say that now you are less willing to --, or not?\"\n\nData for 2001 was sampled on 2001 Sep 14-15\nData for 2002 was sampled on 2002 Mar 8-9\nData for 2006 was sampled on 2006 Aug 18-20\nData for 2011 was sampled on 2011 Jul 15-17\nData for 2017 was sampled on 2017 Jun 7-11", "dataPublishedBy": "Gallup", "dataPublisherSource": "Survey" } |
2019-07-16 11:54:47 | 2019-07-16 11:54:47 | Reaction to Terrorism - Gallup (2019) 4166 | Share of US respondents who said they were "less willing" to do certain activities as a result of terrorist events. They were asked: "As a result of the events relating to terrorism in recent years, would you say that now you are less willing to --, or not?" Data for 2001 was sampled on 2001 Sep 14-15 Data for 2002 was sampled on 2002 Mar 8-9 Data for 2006 was sampled on 2006 Aug 18-20 Data for 2011 was sampled on 2011 Jul 15-17 Data for 2017 was sampled on 2017 Jun 7-11 | https://news.gallup.com/poll/4909/terrorism-united-states.aspx | Gallup |
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");