sources
Data license: CC-BY
1 row where datasetId = 437 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 |
---|---|---|---|---|---|---|---|---|
559 | United Nations World Tourism Organization - World Tourism Barometer (2019) | { "link": "http://mkt.unwto.org/barometer", "retrievedDate": "10/05/2019", "additionalInfo": "The UNWTO World Tourism Barometer monitors short-term tourism trends on a regular basis to provide global tourism stakeholders with up-to-date analysis on international tourism.\n\n", "dataPublishedBy": "Our World In Data merged data presented by the United Nations World Tourism Organization (UNWTO) in the Tourism Barometer", "dataPublisherSource": "Census data" } |
2017-04-24 21:52:44 | 2017-11-06 16:59:27 | Tourism data by World Region - UNWTO (2019) 437 | The UNWTO World Tourism Barometer monitors short-term tourism trends on a regular basis to provide global tourism stakeholders with up-to-date analysis on international tourism. | http://mkt.unwto.org/barometer | Our World In Data merged data presented by the United Nations World Tourism Organization (UNWTO) in the Tourism Barometer |
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");