sources
Data license: CC-BY
1 row where datasetId = 5391 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 |
---|---|---|---|---|---|---|---|---|
20635 | UK Department for Environment, Food & Rural Affairs; and United States Department of Agriculture (USDA) | { "additionalInfo": "UK egg production statistics are sourced from the UK Department for Environment, Food & Rural Affairs (DEFRA): https://www.gov.uk/government/statistics/egg-statistics\n\nUS egg production statistics are sourced from the United States Department of Agriculture (USDA), made available here: https://osf.io/z2gxn/\n\nUK free-range eggs are given as the sum of organic and non-organic free-range eggs, which are reported separately in the original DEFRA dataset.\n\nUS percentages are based on the share of egg-laying hens, rather than actual egg output.", "dataPublishedBy": "UK Department for Environment, Food & Rural Affairs; and United States Department of Agriculture (USDA)" } |
2021-10-09 19:25:02 | 2021-10-09 19:25:02 | Free-range eggs (DEFRA and USDA) 5391 | UK egg production statistics are sourced from the UK Department for Environment, Food & Rural Affairs (DEFRA): https://www.gov.uk/government/statistics/egg-statistics US egg production statistics are sourced from the United States Department of Agriculture (USDA), made available here: https://osf.io/z2gxn/ UK free-range eggs are given as the sum of organic and non-organic free-range eggs, which are reported separately in the original DEFRA dataset. US percentages are based on the share of egg-laying hens, rather than actual egg output. | UK Department for Environment, Food & Rural Affairs; and United States Department of Agriculture (USDA) |
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");