sources
Data license: CC-BY
1 row where datasetId = 5280 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 |
---|---|---|---|---|---|---|---|---|
18007 | Scheffers, B. R., Oliveira, B. F., Lamb, I., & Edwards, D. P. (2019). Global wildlife trade across the tree of life. Science. | { "link": "https://science.sciencemag.org/content/366/6461/71", "retrievedDate": "23rd March 2021", "additionalInfo": "Scheffers et al. (2019) quantify the number and share of vertebrate species that are traded, either locally, nationally or internationally.\n\nThis data is also available, broken down by the share of traded species that are used as pets or as products (such as for meat, medicines, body parts, trophy hunts etc.). Note these shares may sum to more than 100% since many species are traded as both pets and for their products.", "dataPublishedBy": "Scheffers, B. R., Oliveira, B. F., Lamb, I., & Edwards, D. P. (2019). Global wildlife trade across the tree of life. Science, 366(6461), 71-76." } |
2021-03-23 16:26:25 | 2021-03-23 16:26:25 | Wildlife trade (Scheffers et al. 2019) 5280 | Scheffers et al. (2019) quantify the number and share of vertebrate species that are traded, either locally, nationally or internationally. This data is also available, broken down by the share of traded species that are used as pets or as products (such as for meat, medicines, body parts, trophy hunts etc.). Note these shares may sum to more than 100% since many species are traded as both pets and for their products. | https://science.sciencemag.org/content/366/6461/71 | Scheffers, B. R., Oliveira, B. F., Lamb, I., & Edwards, D. P. (2019). Global wildlife trade across the tree of life. Science, 366(6461), 71-76. |
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");