sources
Data license: CC-BY
1 row where datasetId = 355 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 |
---|---|---|---|---|---|---|---|---|
463 | People experiencing homelessness in the USA (PIT), by shelter status - HUD (2016) | { "link": "https://www.hudexchange.info/resource/3031/pit-and-hic-data-since-2007/", "retrievedDate": "20/02/2017", "additionalInfo": "HUD's description of the report:\r\n\r\n\"This report outlines the key findings of the 2016 Point-In-Time (PIT) count and Housing Inventory Count (HIC) conducted in January 2016. Specifically, this report provides 2016 national, state, and CoC-level PIT and HIC estimates of homelessness, as well as estimates of chronically homeless persons, homeless veterans, and homeless children and youth\".\r\n\r\nAll HUD reports are available at https://www.hudexchange.info/programs/hdx/guides/ahar/#reports", "dataPublishedBy": "The U.S. Department of Housing and Urban Development (HUD Exchange)", "dataPublisherSource": "The Annual Homeless Assessment Report (AHAR), HUD report to the U.S. Congress, November 2016" } |
2017-02-20 22:09:57 | 2017-11-13 17:33:22 | People experiencing homelessness in the USA (PIT) by sheltering status - HUD (2016) 355 | HUD's description of the report: "This report outlines the key findings of the 2016 Point-In-Time (PIT) count and Housing Inventory Count (HIC) conducted in January 2016. Specifically, this report provides 2016 national, state, and CoC-level PIT and HIC estimates of homelessness, as well as estimates of chronically homeless persons, homeless veterans, and homeless children and youth". All HUD reports are available at https://www.hudexchange.info/programs/hdx/guides/ahar/#reports | https://www.hudexchange.info/resource/3031/pit-and-hic-data-since-2007/ | The U.S. Department of Housing and Urban Development (HUD Exchange) |
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");