sources
Data license: CC-BY
1 row where datasetId = 5303 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 |
---|---|---|---|---|---|---|---|---|
18023 | Vanderslott & Marks (2021). Charting mandatory childhood vaccination policies worldwide. Vaccine. | { "link": "https://www.sciencedirect.com/science/article/pii/S0264410X21005478", "additionalInfo": "This is a live dataset that relies on crowdsourcing to note policy changes. If you are aware of any new policies or policy changes for any country please do get in touch at: [email protected].", "dataPublishedBy": "Vanderslott, S., & Marks, T. (2021). Charting mandatory vaccination policies worldwide. <i>Vaccine</i>." } |
2021-05-04 13:12:02 | 2021-05-04 13:12:02 | Childhood vaccination policies (Vanderslott et al. 2021) 5303 | This is a live dataset that relies on crowdsourcing to note policy changes. If you are aware of any new policies or policy changes for any country please do get in touch at: [email protected]. | https://www.sciencedirect.com/science/article/pii/S0264410X21005478 | Vanderslott, S., & Marks, T. (2021). Charting mandatory vaccination policies worldwide. <i>Vaccine</i>. |
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");