sources
Data license: CC-BY
1 row where datasetId = 5436 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 |
---|---|---|---|---|---|---|---|---|
21271 | Wikipedia (wikipedia.org/wiki/Biosafety_level) | { "link": "https://en.wikipedia.org/wiki/Biosafety_level#Biosafety_level_4", "retrievedDate": "1 March 2022", "additionalInfo": "Biosafety level 4 (BSL-4) is the highest level of biosafety precautions, and is appropriate for work with pathogens that could easily be aerosol-transmitted within the laboratory, and cause severe to fatal diseases for which there are no available vaccines or treatments.\n\nThis data is obtained from Wikipedia (https://en.wikipedia.org/wiki/Biosafety_level#Biosafety_level_4) and might be incomplete; you can help by adding missing items on the Wikipedia page.", "dataPublishedBy": "Wikipedia (wikipedia.org/wiki/Biosafety_level)" } |
2021-12-27 10:28:56 | 2021-12-27 10:28:56 | Biosafety level 4 facilities 5436 | Biosafety level 4 (BSL-4) is the highest level of biosafety precautions, and is appropriate for work with pathogens that could easily be aerosol-transmitted within the laboratory, and cause severe to fatal diseases for which there are no available vaccines or treatments. This data is obtained from Wikipedia (https://en.wikipedia.org/wiki/Biosafety_level#Biosafety_level_4) and might be incomplete; you can help by adding missing items on the Wikipedia page. | https://en.wikipedia.org/wiki/Biosafety_level#Biosafety_level_4 | Wikipedia (wikipedia.org/wiki/Biosafety_level) |
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");