sources
Data license: CC-BY
1 row where datasetId = 5005 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 |
---|---|---|---|---|---|---|---|---|
17736 | Agri-Environmental Indicators: Livestock Patterns | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "13-Feb-2020", "additionalInfo": "The main indicator is the rate of livestock units per (ha) of agricultural land area. Supporting indicators are the stocks and the share of each livestock type over all major livestock types (all expressed in LSU).", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2020)", "dataPublisherSource": "Data are derived from the FAOSTAT domains Production/ Live Animals (QA) and Inputs / Land Use (RL). Livestock Units (LSU) coefficients are derived from FAO publication \"Guidelines for the preparation of livestock sector reviews\" (FAO, 2011)." } |
2020-02-14 01:34:13 | 2020-02-14 01:34:13 | Agri-Environmental Indicators: Livestock Patterns 5005 | The main indicator is the rate of livestock units per (ha) of agricultural land area. Supporting indicators are the stocks and the share of each livestock type over all major livestock types (all expressed in LSU). | http://www.fao.org/faostat/en/?#data/ | Food and Agriculture Organization of the United Nations (FAO) (2020) |
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");