sources
Data license: CC-BY
1 row where datasetId = 5282 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 |
---|---|---|---|---|---|---|---|---|
18009 | IUCN Red List (2022) | { "link": "https://www.iucnredlist.org/resources/summary-statistics; https://nc.iucnredlist.org/redlist/content/attachment_files/2021-3_RL_Stats_Table_1a_v2.pdf ; https://nc.iucnredlist.org/redlist/content/attachment_files/2022-1_RL_Stats_Table_1a.pdf", "retrievedDate": "2022-12-08", "additionalInfo": "The IUCN Red List has assessed only a small share of the total known species in the world. This means the number of species threatened with extinction is likely to be a significant underestimate of the total number of species at risk.\n\nThis is particularly true for understudied groups such as insects, plants and fungi.\n\nThe share of known species threatened with extinction is only available for a few taxonomic groups where more than 80% of species have been assessed.\n\n'Threatened' species are those that are categorized as 'Critically endangered', 'Endangered' or 'Vulnerable' on the IUCN Red List.\n\nThis dataset should be next updated by the source in December 2022. We will update it on Our World in Data soon after the new version is published. At the link above you can directly access the source page and see the latest available data.\n\nThe 'mushrooms' taxonomic group includes brackets, rusts, smuts and, jelly fungi.", "dataPublishedBy": "IUCN Red List" } |
2021-03-25 09:53:06 | 2021-03-25 09:53:06 | Threatened and evaluated species (IUCN Red List) 5282 | The IUCN Red List has assessed only a small share of the total known species in the world. This means the number of species threatened with extinction is likely to be a significant underestimate of the total number of species at risk. This is particularly true for understudied groups such as insects, plants and fungi. The share of known species threatened with extinction is only available for a few taxonomic groups where more than 80% of species have been assessed. 'Threatened' species are those that are categorized as 'Critically endangered', 'Endangered' or 'Vulnerable' on the IUCN Red List. This dataset should be next updated by the source in December 2022. We will update it on Our World in Data soon after the new version is published. At the link above you can directly access the source page and see the latest available data. The 'mushrooms' taxonomic group includes brackets, rusts, smuts and, jelly fungi. | https://www.iucnredlist.org/resources/summary-statistics; https://nc.iucnredlist.org/redlist/content/attachment_files/2021-3_RL_Stats_Table_1a_v2.pdf ; https://nc.iucnredlist.org/redlist/content/attachment_files/2022-1_RL_Stats_Table_1a.pdf | IUCN Red List |
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");