records
Deprivation in Leicester 2019
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"deprivation-in-leicester-2019",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/deprivation-in-leicester-2019"
}
] - "definitions":{
- "deprivation-in-leicester-2019":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/deprivation-in-leicester-2019_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "deprivation-in-leicester-2019_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "lsoa_code":,{
- "type":"string",
- "title":"LSOA code",
- "description":""
} - "lsoa_name":,{
- "type":"string",
- "title":"LSOA name",
- "description":""
} - "lad_code":,{
- "type":"string",
- "title":"LAD_code",
- "description":""
} - "lad_name":,{
- "type":"string",
- "title":"LAD_name",
- "description":""
} - "imd2019_score":,{
- "type":"number",
- "title":"IMD2019_score",
- "description":""
} - "imd2019_rank":,{
- "type":"integer",
- "title":"IMD2019_rank",
- "description":""
} - "imd2019_decile":,{
- "type":"integer",
- "title":"IMD2019_decile",
- "description":""
} - "imd2019_income_score":,{
- "type":"number",
- "title":"IMD2019_Income_score",
- "description":""
} - "imd2019_income_rank":,{
- "type":"integer",
- "title":"IMD2019_Income_rank",
- "description":""
} - "imd2019_income_decile":,{
- "type":"integer",
- "title":"IMD2019_Income_decile",
- "description":""
} - "imd2019_employ_score":,{
- "type":"number",
- "title":"IMD2019_Employ_score",
- "description":""
} - "imd2019_employ_rank":,{
- "type":"integer",
- "title":"IMD2019_Employ_rank",
- "description":""
} - "imd2019_employ_decile":,{
- "type":"integer",
- "title":"IMD2019_Employ_decile",
- "description":""
} - "imd2019_educ_score":,{
- "type":"number",
- "title":"IMD2019_Educ_score",
- "description":""
} - "imd2019_educ_rank":,{
- "type":"integer",
- "title":"IMD2019_Educ_rank",
- "description":""
} - "imd2019_educ_decile":,{
- "type":"integer",
- "title":"IMD2019_Educ_decile",
- "description":""
} - "imd2019_health_score":,{
- "type":"number",
- "title":"IMD2019_Health_score",
- "description":""
} - "imd2019_health_rank":,{
- "type":"integer",
- "title":"IMD2019_Health_rank",
- "description":""
} - "imd2019_health_decile":,{
- "type":"integer",
- "title":"IMD2019_Health_decile",
- "description":""
} - "imd2019_crime_score":,{
- "type":"number",
- "title":"IMD2019_Crime_score",
- "description":""
} - "imd2019_crime_rank":,{
- "type":"integer",
- "title":"IMD2019_Crime_rank",
- "description":""
} - "imd2019_crime_decile":,{
- "type":"integer",
- "title":"IMD2019_Crime_decile",
- "description":""
} - "imd2019_hous_score":,{
- "type":"number",
- "title":"IMD2019_Hous_score",
- "description":""
} - "imd2019_hous_rank":,{
- "type":"integer",
- "title":"IMD2019_Hous_rank",
- "description":""
} - "imd2019_hous_decile":,{
- "type":"integer",
- "title":"IMD2019_Hous_decile",
- "description":""
} - "imd2019_livenv_score":,{
- "type":"number",
- "title":"IMD2019_LivEnv_score",
- "description":""
} - "imd2019_livenv_rank":,{
- "type":"integer",
- "title":"IMD2019_LivEnv_rank",
- "description":""
} - "imd2019_livenv_decile":,{
- "type":"integer",
- "title":"IMD2019_LivEnv_decile",
- "description":""
} - "imd2019_idaci_score":,{
- "type":"number",
- "title":"IMD2019_IDACI_score",
- "description":""
} - "imd2019_idaci_rank":,{
- "type":"integer",
- "title":"IMD2019_IDACI_rank",
- "description":""
} - "imd2019_idaci_decile":,{
- "type":"integer",
- "title":"IMD2019_IDACI_decile",
- "description":""
} - "imd2019_idaopi_score":,{
- "type":"number",
- "title":"IMD2019_IDAOPI_score",
- "description":""
} - "imd2019_idaopi_rank":,{
- "type":"integer",
- "title":"IMD2019_IDAOPI_rank",
- "description":""
} - "imd2019_idaopi_decile":,{
- "type":"integer",
- "title":"IMD2019_IDAOPI_decile",
- "description":""
} - "imd2019_cypsub_score":,{
- "type":"number",
- "title":"IMD2019_CYPSub_score",
- "description":""
} - "imd2019_cypsub_rank":,{
- "type":"integer",
- "title":"IMD2019_CYPSub_rank",
- "description":""
} - "imd2019_cypsub_decile":,{
- "type":"integer",
- "title":"IMD2019_CYPSub_decile",
- "description":""
} - "imd2019_adskillssub_score":,{
- "type":"number",
- "title":"IMD2019_AdSkillsSub_score",
- "description":""
} - "imd2019_adskillssub_rank":,{
- "type":"integer",
- "title":"IMD2019_AdSkillsSub_rank",
- "description":""
} - "imd2019_adskillssub_decile":,{
- "type":"integer",
- "title":"IMD2019_AdSkillsSub_decile",
- "description":""
} - "imd2019_geobarsub_score":,{
- "type":"number",
- "title":"IMD2019_GeoBarSub_score",
- "description":""
} - "imd2019_geobarsub_rank":,{
- "type":"integer",
- "title":"IMD2019_GeoBarSub_rank",
- "description":""
} - "imd2019_geobarsub_decile":,{
- "type":"integer",
- "title":"IMD2019_GeoBarSub_decile",
- "description":""
} - "imd2019_wbarsub_score":,{
- "type":"number",
- "title":"IMD2019_WBarSub_score",
- "description":""
} - "imd2019_wbarsub_rank":,{
- "type":"integer",
- "title":"IMD2019_WBarSub_rank",
- "description":""
} - "imd2019_wbarsub_decile":,{
- "type":"integer",
- "title":"IMD2019_WBarSub_decile",
- "description":""
} - "imd2019_indoorssub_score":,{
- "type":"number",
- "title":"IMD2019_IndoorsSub_score",
- "description":""
} - "imd2019_indoorssub_rank":,{
- "type":"integer",
- "title":"IMD2019_IndoorsSub_rank",
- "description":""
} - "imd2019_indoorssub_decile":,{
- "type":"integer",
- "title":"IMD2019_IndoorsSub_decile",
- "description":""
} - "imd2019_outdoorssub_score":,{
- "type":"number",
- "title":"IMD2019_OutdoorsSub_score",
- "description":""
} - "imd2019_outdoorssub_rank":,{
- "type":"integer",
- "title":"IMD2019_OutdoorsSub_rank",
- "description":""
} - "imd2019_outdoorssub_decile":,{
- "type":"integer",
- "title":"IMD2019_OutdoorsSub_decile",
- "description":""
} - "pop_2015":,{
- "type":"string",
- "title":"Pop_2015",
- "description":""
} - "pop_0015_2015":,{
- "type":"integer",
- "title":"Pop_0015_2015",
- "description":""
} - "pop_1659_2015":,{
- "type":"integer",
- "title":"Pop_1659_2015",
- "description":""
} - "pop_o60_2015":,{
- "type":"integer",
- "title":"Pop_o60_2015",
- "description":""
} - "pop_185964_2015_emp":,{
- "type":"integer",
- "title":"Pop_185964_2015_emp",
- "description":""
} - "pop_0015_2017est":,{
- "type":"integer",
- "title":"Pop_0015_2017est",
- "description":""
} - "pop_1659_2017est":,{
- "type":"integer",
- "title":"Pop_1659_2017est",
- "description":""
} - "pop_60_2017est":,{
- "type":"integer",
- "title":"Pop_60+_2017est",
- "description":""
} - "pop_total_2017_estimate":,{
- "type":"integer",
- "title":"Population total - 2017 estimate",
- "description":""
} - "ward_name":,{
- "type":"string",
- "title":"Ward name",
- "description":""
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo Shape",
- "description":""
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":""
}
} - "lsoa_code":
}
} - "fields":
} - "properties":
} - "deprivation-in-leicester-2019":
}