sources
Data license: CC-BY
1 row where datasetId = 371 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 |
---|---|---|---|---|---|---|---|---|
489 | Vaccine Confidence Project, Larson et al (2016) | { "link": "http://www.sciencedirect.com/science/article/pii/S235239641630398X", "retrievedDate": "15/02/2016", "additionalInfo": "Possible answers for all questions were those on the five-point Likert scale (strongly agree, tend to agree, do not know, tend to disagree, strongly disagree).", "dataPublishedBy": "Larson et al (2016) \u2013 The State of Vaccine Confidence 2016: Global Insights Through a 67-Country Survey.", "dataPublisherSource": "This data was collected through a WIN/Gallup International Association survey. The WIN/GIA Annual Survey has been conducted annually since 1977. In 2015, when this dataset was produced, it was conducted in collaboration with the Vaccine Confidence Project at the London School of Hygiene & Tropical Medicine. A total of 65,819 persons were interviewed in 67 countries." } |
2017-03-27 00:00:42 | 2017-11-16 11:29:09 | State of Vaccine Confidence - Larson et al (2016) 371 | Possible answers for all questions were those on the five-point Likert scale (strongly agree, tend to agree, do not know, tend to disagree, strongly disagree). | http://www.sciencedirect.com/science/article/pii/S235239641630398X | Larson et al (2016) – The State of Vaccine Confidence 2016: Global Insights Through a 67-Country Survey. |
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");