sources
Data license: CC-BY
1 row where datasetId = 5386 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 |
---|---|---|---|---|---|---|---|---|
20630 | Schjins et al. (2021). Five centuries of cod catches in Eastern Canada. | { "link": "https://academic.oup.com/icesjms/advance-article/doi/10.1093/icesjms/fsab153/6359257", "additionalInfo": "This measures estimates of North Atlantic cod (Gadus morhua) catch off Newfoundland and Labrador, Eastern Canada. The stock defined by this assessment includes all cod caught within NAFO-delineated Divisions 2J3KL.", "dataPublishedBy": "Schijns, R., Froese, R., Hutchings, J. A., Pauly, D., & Raicevich, S. (2021). Five centuries of cod catches in Eastern Canada. ICES Journal of Marine Science." } |
2021-09-27 13:40:39 | 2021-09-27 13:40:39 | North Atlantic cod catch (Schijns et al. 2021) 5386 | This measures estimates of North Atlantic cod (Gadus morhua) catch off Newfoundland and Labrador, Eastern Canada. The stock defined by this assessment includes all cod caught within NAFO-delineated Divisions 2J3KL. | https://academic.oup.com/icesjms/advance-article/doi/10.1093/icesjms/fsab153/6359257 | Schijns, R., Froese, R., Hutchings, J. A., Pauly, D., & Raicevich, S. (2021). Five centuries of cod catches in Eastern Canada. ICES Journal of Marine Science. |
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");