sources
Data license: CC-BY
1 row where datasetId = 5408 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 |
---|---|---|---|---|---|---|---|---|
21243 | Phillips, De Palma, Gonzalez, Contu et al. (2021) | { "link": "https://data.nhm.ac.uk/dataset/bii-bte", "retrievedDate": "2021-11-13", "additionalInfo": "Helen Phillips, Adriana De Palma, Ricardo E Gonzalez, Samantha L L Hill, Luca B\u00f6rger & Andy Purvis (2021): The Biodiversity Intactness Index - country, region and global-level summaries for the year 2000 to 2050 under various scenarios. data.nhm.ac.uk. https://doi.org/10.5519/he1eqmg1\n", "dataPublishedBy": "Natural History Museum Data Portal (data.nhm.ac.uk)." } |
2021-11-13 18:01:10 | 2021-11-13 18:01:10 | Biodiversity Intactness Index - Scenarios - NHM (2021) 5408 | Helen Phillips, Adriana De Palma, Ricardo E Gonzalez, Samantha L L Hill, Luca Börger & Andy Purvis (2021): The Biodiversity Intactness Index - country, region and global-level summaries for the year 2000 to 2050 under various scenarios. data.nhm.ac.uk. https://doi.org/10.5519/he1eqmg1 | https://data.nhm.ac.uk/dataset/bii-bte | Natural History Museum Data Portal (data.nhm.ac.uk). |
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");