sources
Data license: CC-BY
1 row where datasetId = 567 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 |
---|---|---|---|---|---|---|---|---|
2204 | 'Flight distance record' on Wikipedia | { "link": "https://en.wikipedia.org/wiki/Flight_distance_record", "retrievedDate": "2017-07-11", "additionalInfo": "This data has been sourced from the compilation of flight distance records on Wikipedia. References to the individual sources for each record can be found at this link.\n\nOnly non-commercial powered aircraft are included in this dataset, which contains only those flights taken without mid-flight refueling.\n\nWhere more than one record was set in any given year, only the highest of the given year has been included here.", "dataPublishedBy": "", "dataPublisherSource": null } |
2017-07-11 12:10:33 | 2023-03-08 13:39:55 | Non-commercial flight distance records - Wikipedia 567 | This data has been sourced from the compilation of flight distance records on Wikipedia. References to the individual sources for each record can be found at this link. Only non-commercial powered aircraft are included in this dataset, which contains only those flights taken without mid-flight refueling. Where more than one record was set in any given year, only the highest of the given year has been included here. | https://en.wikipedia.org/wiki/Flight_distance_record |
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");