sources
Data license: CC-BY
1 row where datasetId = 5251 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 |
---|---|---|---|---|---|---|---|---|
17980 | Government of Israel | { "link": "https://data.gov.il/dataset/covid-19/resource/89f61e3a-4866-4bbf-bcc1-9734e5fee58e", "additionalInfo": "Our data on confirmed COVID-19 cases in Israel is imported from <a href=\"https://data.gov.il/dataset/covid-19\">the official website of the Israeli government</a>, which makes available a set of files on COVID-19 statistics in open access. <strong>This data is updated weekly.</strong>", "dataPublishedBy": "Government of Israel" } |
2021-02-08 11:00:49 | 2021-02-08 11:00:49 | COVID-19 - Israel: confirmed cases by age 5251 | Our data on confirmed COVID-19 cases in Israel is imported from <a href="https://data.gov.il/dataset/covid-19">the official website of the Israeli government</a>, which makes available a set of files on COVID-19 statistics in open access. <strong>This data is updated weekly.</strong> | https://data.gov.il/dataset/covid-19/resource/89f61e3a-4866-4bbf-bcc1-9734e5fee58e | Government of Israel |
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");