sources
Data license: CC-BY
1 row where datasetId = 5387 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 |
---|---|---|---|---|---|---|---|---|
20631 | Duarte et al. (2020). Rebuilding marine life. Nature. | { "link": "https://www.nature.com/articles/s41586-020-2146-7", "additionalInfo": "Duarte et al. (2020) compiled the share of marine mammal populations increasing, decreasing or showing no change across the world's oceans based on original studies from Lortze et al. (2017); and Magera et al. (2013).\n\nLotze, H. K., Mills Flemming, J., Magera, A. Critical factors to marine mammal recovery. Conservation Biology 31, 1301-1311 (2017).\n\nMagera, A. M. et al. Recovery trends in marine mammal populations. PLoS ONE 8(10): e77908 (2013).", "dataPublishedBy": "Duarte, C. M., Agusti, S., Barbier, E., Britten, G. L., Castilla, J. C., Gattuso, J. P., ... & Worm, B. (2020). Rebuilding marine life. Nature, 580(7801), 39-51." } |
2021-09-28 10:31:28 | 2021-09-28 10:31:28 | Change in marine mammal populations (Duarte et al. 2020) 5387 | Duarte et al. (2020) compiled the share of marine mammal populations increasing, decreasing or showing no change across the world's oceans based on original studies from Lortze et al. (2017); and Magera et al. (2013). Lotze, H. K., Mills Flemming, J., Magera, A. Critical factors to marine mammal recovery. Conservation Biology 31, 1301-1311 (2017). Magera, A. M. et al. Recovery trends in marine mammal populations. PLoS ONE 8(10): e77908 (2013). | https://www.nature.com/articles/s41586-020-2146-7 | Duarte, C. M., Agusti, S., Barbier, E., Britten, G. L., Castilla, J. C., Gattuso, J. P., ... & Worm, B. (2020). Rebuilding marine life. Nature, 580(7801), 39-51. |
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");