sources
Data license: CC-BY
1 row where datasetId = 4118 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 |
---|---|---|---|---|---|---|---|---|
16947 | Reporters sans Frontieres (2022) | { "link": "https://rsf.org/en/index", "retrievedDate": "March 21, 2022", "additionalInfo": "This dataset provides information on press freedom, using data from the Reporters sans Frontieres' World Press Freedom Index.\n\nYou can download the code and complete dataset, including supplementary variables, from GitHub: https://github.com/owid/notebooks/tree/main/BastianHerre/human_rights", "dataPublishedBy": "Reporters sans Frontieres", "dataPublisherSource": "Expert assessments and data on violence against journalists." } |
2019-05-13 11:13:53 | 2023-05-30 08:46:58 | World Press Freedom Index - Reporters sans Frontieres (2022) 4118 | This dataset provides information on press freedom, using data from the Reporters sans Frontieres' World Press Freedom Index. You can download the code and complete dataset, including supplementary variables, from GitHub: https://github.com/owid/notebooks/tree/main/BastianHerre/human_rights | https://rsf.org/en/index | Reporters sans Frontieres |
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");