sources
Data license: CC-BY
1 row where datasetId = 3177 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 |
---|---|---|---|---|---|---|---|---|
16681 | Aviation accidents and casualties by flight phase (ASN, 2019) | { "link": "https://aviation-safety.net/statistics/phase/", "retrievedDate": "10th January 2019", "additionalInfo": "The total number of aviation accidents and fatalities by flight phase (take-off, climbing, en-route, approach and landing). The figures include corporate jet and military transport accidents.", "dataPublishedBy": "Aviation Safety Network (ASN)" } |
2019-01-10 22:47:02 | 2019-01-10 22:47:02 | Aviation accidents and fatalities by flight phase (ASN, 2019) 3177 | The total number of aviation accidents and fatalities by flight phase (take-off, climbing, en-route, approach and landing). The figures include corporate jet and military transport accidents. | https://aviation-safety.net/statistics/phase/ | Aviation Safety Network (ASN) |
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");