sources
Data license: CC-BY
1 row where datasetId = 4228 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 |
---|---|---|---|---|---|---|---|---|
17056 | Female mean age of childbearing (years) | { "link": "http://data.un.org/Data.aspx?d=PopDiv&f=variableID%3A195", "retrievedDate": "11-10-2019", "additionalInfo": "Female mean age of childbearing (years).\n\nThe mean of an age schedule of age-specific birth rates. The age-specific birth rates may refer either to a birth cohort or a time period.\n\nOriginal dataset is given in 5 year intervals:1950-1955,\t1955-1960, 1960-1965, 1965-1970, 1970-1975, 1975-1980, 1980-1985, 1985-1990, 1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015, 2015-2020. In the uploaded dataset the first year of the interval is indicated.\n\nUnited Nations, Department of Economic and Social Affairs, Population Division (2019).", "dataPublishedBy": "United Nations Population Division" } |
2019-10-11 14:11:52 | 2019-10-11 14:11:52 | Female mean age of childbearing (years) 4228 | Female mean age of childbearing (years). The mean of an age schedule of age-specific birth rates. The age-specific birth rates may refer either to a birth cohort or a time period. Original dataset is given in 5 year intervals:1950-1955, 1955-1960, 1960-1965, 1965-1970, 1970-1975, 1975-1980, 1980-1985, 1985-1990, 1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015, 2015-2020. In the uploaded dataset the first year of the interval is indicated. United Nations, Department of Economic and Social Affairs, Population Division (2019). | http://data.un.org/Data.aspx?d=PopDiv&f=variableID%3A195 | United Nations Population Division |
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");