sources
Data license: CC-BY
1 row where datasetId = 4110 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 |
---|---|---|---|---|---|---|---|---|
16939 | Endemic and threatened invertebrate species (IUCN, 2020) | { "link": "https://www.iucnredlist.org/resources/summary-statistics (Table 8b)", "retrievedDate": "25/03/2021", "additionalInfo": "Data denotes the number of endemic invertebrate species within a given organism group by country. Endemic species are those which are known to naturally occur in only one country. \n\nAlso available is the number of these endemic species which are categorised as 'threatened'. 'Threatened' species are those in any of the three Red List categories: Critically Endangered, Endangered, or Vulnerable. They are considered high or greater risk of extinction in the wild.\n\nThis data is only given for the more comprehensively assessed species groups (i.e., where >80% of the species in the group have been assessed).", "dataPublishedBy": "IUCN Red List" } |
2019-05-08 10:01:15 | 2019-05-08 10:01:15 | Endemic and threatened invertebrate species by country (IUCN, 2020) 4110 | Data denotes the number of endemic invertebrate species within a given organism group by country. Endemic species are those which are known to naturally occur in only one country. Also available is the number of these endemic species which are categorised as 'threatened'. 'Threatened' species are those in any of the three Red List categories: Critically Endangered, Endangered, or Vulnerable. They are considered high or greater risk of extinction in the wild. This data is only given for the more comprehensively assessed species groups (i.e., where >80% of the species in the group have been assessed). | https://www.iucnredlist.org/resources/summary-statistics (Table 8b) | 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");