sources
Data license: CC-BY
1 row where datasetId = 5439 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 |
---|---|---|---|---|---|---|---|---|
21274 | International Pollutants Elimination Network (IPEN) | { "link": "http://www.ipen.org", "additionalInfo": "The International Pollutants\u00a0Elimination Network (IPEN) have collated studies on the concentration of lead in paint sold across low and middle-income countries. More than 100 studies have been conducted across 59 countries, involving the testing of more than 4,000 solvent-based paints.\n\nThese studies report the share of paints that have a lead concentration great than 90 parts per million (ppm); 600ppm and 10,000ppm of the dry weight of paint. \n\nLead paint is thought to be a significant contributor to lead poisoning; many countries have therefore implemented a regulatory limit of 90ppm or 600ppm for sold paints.", "dataPublishedBy": "International Pollutants\u00a0Elimination Network (IPEN)" } |
2022-01-06 14:56:10 | 2022-01-06 14:56:10 | Lead concentrations in paint (IPEN, 2021) 5439 | The International Pollutants Elimination Network (IPEN) have collated studies on the concentration of lead in paint sold across low and middle-income countries. More than 100 studies have been conducted across 59 countries, involving the testing of more than 4,000 solvent-based paints. These studies report the share of paints that have a lead concentration great than 90 parts per million (ppm); 600ppm and 10,000ppm of the dry weight of paint. Lead paint is thought to be a significant contributor to lead poisoning; many countries have therefore implemented a regulatory limit of 90ppm or 600ppm for sold paints. | http://www.ipen.org | International Pollutants Elimination Network (IPEN) |
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");