sources
Data license: CC-BY
1 row where datasetId = 2873 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 |
---|---|---|---|---|---|---|---|---|
15601 | Education at a Glance 2017: OECD Indicators (2017) | { "link": "https://www.oecd-ilibrary.org/education/education-at-a-glance-2017_eag-2017-en", "retrievedDate": "08/08/2018", "additionalInfo": "The year of reference is 2015 for all countries except: Denmark (2014), Finland (2014), Belgium (2014), Italy (2013), Canada (2014), Netherlands (2014), Japan (2012), Spain (2014), France (2013), Luxembourg (2014), Poland (2014), and Lithuania (2014). \n\nEarnings are net of income tax only for: Latvia, Ireland, and Mexico.\n\nFor further details, see Table A6.1 in the <a href=\"https://www.oecd-ilibrary.org/docserver/eag-2017-en.pdf?expires=1533729082&id=id&accname=guest&checksum=78D200C9AD96EA2A893AEC34BFB793F8\" rel=\"noopener\" target=\"_blank\">Education at a Glance 2017</a> report.", "dataPublishedBy": "OECD", "dataPublisherSource": "National data sources" } |
2018-08-08 11:46:23 | 2018-08-08 15:51:27 | Relative earnings of adults, by educational attainment - Education at a Glance 2017: OECD Indicators (2017) 2873 | The year of reference is 2015 for all countries except: Denmark (2014), Finland (2014), Belgium (2014), Italy (2013), Canada (2014), Netherlands (2014), Japan (2012), Spain (2014), France (2013), Luxembourg (2014), Poland (2014), and Lithuania (2014). Earnings are net of income tax only for: Latvia, Ireland, and Mexico. For further details, see Table A6.1 in the <a href="https://www.oecd-ilibrary.org/docserver/eag-2017-en.pdf?expires=1533729082&id=id&accname=guest&checksum=78D200C9AD96EA2A893AEC34BFB793F8" rel="noopener" target="_blank">Education at a Glance 2017</a> report. | https://www.oecd-ilibrary.org/education/education-at-a-glance-2017_eag-2017-en | OECD |
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");