sources
Data license: CC-BY
1 row where datasetId = 2984 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 |
---|---|---|---|---|---|---|---|---|
394 | Transaction Costs - OECD Economic Outlook (2007) | { "link": "http://www.oecd-ilibrary.org/economics/economic-globalisation_9789264111905-en", "retrievedDate": "18/08/2015", "additionalInfo": "Sea fright corresponds to average international freight charges per tonne. Passenger air transport corresponds to average airline revenue per passenger mile until 2000 spliced to US import air passenger fares afterwards. International calls\u00a0correspond to cost of a three-minute call from New York to London.", "dataPublishedBy": "OECD Insights - Economic Globalisation: Origins and Consequences", "dataPublisherSource": "OECD (2007), OECD Economic Outlook, Vol. 2007/1, OECD Publishing." } |
2016-09-08 00:20:09 | 2017-11-06 16:22:16 | Transport and communication costs, OECD Economic Outlook (2007) 2984 | Sea fright corresponds to average international freight charges per tonne. Passenger air transport corresponds to average airline revenue per passenger mile until 2000 spliced to US import air passenger fares afterwards. International calls correspond to cost of a three-minute call from New York to London. | http://www.oecd-ilibrary.org/economics/economic-globalisation_9789264111905-en | OECD Insights - Economic Globalisation: Origins and Consequences |
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");