sources
Data license: CC-BY
1 row where datasetId = 5310 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 |
---|---|---|---|---|---|---|---|---|
18030 | (Kohl 2017) | { "link": "https://sites.google.com/view/sebastiankohl/data", "retrievedDate": "20/05/2021", "additionalInfo": "Historical data on homeownership rates, collated from official sources and earlier research by Sebastian Kohl. ", "dataPublishedBy": "Kohl, S. 2017. Homeownership, Renting, and Society.", "dataPublisherSource": "Official sources and previous research studies" } |
2021-05-20 14:29:32 | 2021-05-20 14:29:32 | Homeownership rates (Kohl 2017) 5310 | Historical data on homeownership rates, collated from official sources and earlier research by Sebastian Kohl. | https://sites.google.com/view/sebastiankohl/data | Kohl, S. 2017. Homeownership, Renting, and Society. |
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");