sources
Data license: CC-BY
1 row where datasetId = 655 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 |
---|---|---|---|---|---|---|---|---|
2805 | Child Labour in US - Long (1958) | { "link": "http://econpapers.repec.org/bookchap/nbrnberbk/long58-1.htm", "retrievedDate": "31/07/2017", "additionalInfo": "The incidence of child labour in males and females aged 10-13 has been taken directly from the source; this is available for both rural and urban demographics individually.\n\nTo calculate the incidence of child labour across both sexes combined, we have weighted gender-specific incidences based on the male:female ratio in the total population for this age bracket (these are based on reported gender ratios, which may incur rounding errors). The same weighting application of population in rural vs. urban areas has been carried out to provide a combined rural & urban figure of incidence.", "dataPublishedBy": "Long, C. D. (1958) The labor force under changing income and employment. Princeton, N.J.: Princeton University Press", "dataPublisherSource": "Data has been derived based on published figures on child labour and population figures in the United States by Long (1958)" } |
2017-07-31 17:18:16 | 2017-11-02 13:04:39 | Child Labor in US - Long (1958) 655 | The incidence of child labour in males and females aged 10-13 has been taken directly from the source; this is available for both rural and urban demographics individually. To calculate the incidence of child labour across both sexes combined, we have weighted gender-specific incidences based on the male:female ratio in the total population for this age bracket (these are based on reported gender ratios, which may incur rounding errors). The same weighting application of population in rural vs. urban areas has been carried out to provide a combined rural & urban figure of incidence. | http://econpapers.repec.org/bookchap/nbrnberbk/long58-1.htm | Long, C. D. (1958) The labor force under changing income and employment. Princeton, N.J.: Princeton University Press |
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");