records

records

Active filters Clear all

No active filters

Filters

West Midlands Police - Crime

Attachments

Click to expand Click to collapse

Dataset schema

Click to expand Click to collapse
Crime ID
               

No description available for this field.

Name (identifier)
crime_id
Type
text
Sample
                       
Date
               

No description available for this field.

Name (identifier)
date
Type
date
Sample
                       
Crime type
One of the crime types listed in the Police.UK FAQ https://www.police.uk/pu/about-police.uk-crime-data/

No description available for this field.

Name (identifier)
crime_type
Type
text
Sample
                       
Last outcome category
A reference to whichever of the outcomes associated with the crime occurred most recently

No description available for this field.

Name (identifier)
last_outcome_category
Type
text
Sample
                       
Longitude
               

No description available for this field.

Name (identifier)
longitude
Type
decimal
Sample
                       
Latitude
               

No description available for this field.

Name (identifier)
latitude
Type
decimal
Sample
                       
Location
               

No description available for this field.

Name (identifier)
location
Type
text
Sample
                       
LSOA code
References to the Lower Layer Super Output Area that the anonymised point falls into, according to the LSOA boundaries provided by the Office for National Statistics.

No description available for this field.

Name (identifier)
lsoa_code
Type
text
Sample
                       
LSOA name
References to the Lower Layer Super Output Area that the anonymised point falls into, according to the LSOA boundaries provided by the Office for National Statistics.

No description available for this field.

Name (identifier)
lsoa_name
Type
text
Sample
                       
geopoint
               

No description available for this field.

Name (identifier)
geopoint
Type
geo point
Sample
                       
Ward Code
               

No description available for this field.

Name (identifier)
ward_code
Type
text
Sample
                       
Ward Name
               

No description available for this field.

Name (identifier)
ward_name
Type
text
Sample
                       
Constituency Code
               

No description available for this field.

Name (identifier)
constituency_code
Type
text
Sample
                       
Constituency Name
               

No description available for this field.

Name (identifier)
constituency_name
Type
text
Sample
                       

JSON Schema

The following JSON object is a standardized description of your dataset's schema. More about JSON schema.

{
  • "title":"west-midlands-police-crime",
  • "type":"object",
  • "oneOf":
    [
    • {
      • "$ref":"#/definitions/west-midlands-police-crime"
      }
    ]
    ,
  • "definitions":
    {
    • "west-midlands-police-crime":
      {
      • "properties":
        {
        • "records":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"#/definitions/west-midlands-police-crime_records"
            }
          }
        }
      }
      ,
    • "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"
          }
        }
        ,
      • "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"
          }
        }
        ,
      • "additionalProperties":false,
      • "oneOf":
        [
        • {
          • "$ref":"#/definitions/namedCrs"
          }
          ,
        • {
          • "$ref":"#/definitions/linkedCrs"
          }
        ]
      }
      ,
    • "namedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "name"
            ]
          }
          ,
        • "properties":
          {
          • "required":
            [
            • "name"
            ]
            ,
          • "additionalProperties":false,
          • "properties":
            {
            • "name":
              {
              • "type":"string"
              }
            }
          }
        }
      }
      ,
    • "linkedObject":
      {
      • "type":"object",
      • "required":
        [
        • "href"
        ]
        ,
      • "properties":
        {
        • "href":
          {
          • "type":"string",
          • "format":"uri"
          }
          ,
        • "type":
          {
          • "type":"string",
          • "description":"Suggested values: proj4, ogjwkt, esriwkt"
          }
        }
      }
      ,
    • "linkedCrs":
      {
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "link"
            ]
          }
          ,
        • "properties":
          {
          • "$ref":"#/definitions/linkedObject"
          }
        }
      }
      ,
    • "geometryCollection":
      {
      • "title":"GeometryCollection",
      • "description":"A collection of geometry objects",
      • "required":
        [
        • "geometries"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "GeometryCollection"
            ]
          }
          ,
        • "geometries":
          {
          • "type":"array",
          • "items":
            {
            • "$ref":"http://json-schema.org/geojson/geometry.json#"
            }
          }
        }
      }
      ,
    • "feature":
      {
      • "title":"Feature",
      • "description":"A Geo JSON feature object",
      • "required":
        [
        • "geometry",
        • "properties"
        ]
        ,
      • "properties":
        {
        • "type":
          {
          • "enum":
            [
            • "Feature"
            ]
          }
          ,
        • "geometry":
          {
          • "oneOf":
            [
            • {
              • "type":"null"
              }
              ,
            • {
              • "$ref":"#/definitions/geometry"
              }
            ]
          }
          ,
        • "properties":
          {
          • "type":
            [
            • "object",
            • "null"
            ]
          }
          ,
        • "id":
          {
            }
          }
        }
        ,
      • "featureCollection":
        {
        • "title":"FeatureCollection",
        • "description":"A Geo JSON feature collection",
        • "required":
          [
          • "features"
          ]
          ,
        • "properties":
          {
          • "type":
            {
            • "enum":
              [
              • "FeatureCollection"
              ]
            }
            ,
          • "features":
            {
            • "type":"array",
            • "items":
              {
              • "$ref":"#/definitions/feature"
              }
            }
          }
        }
        ,
      • "geometry":
        {
        • "title":"geometry",
        • "description":"One geometry as defined by GeoJSON",
        • "type":"object",
        • "required":
          [
          • "type",
          • "coordinates"
          ]
          ,
        • "oneOf":
          [
          • {
            • "title":"Point",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Point"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/position"
                }
              }
            }
            ,
          • {
            • "title":"MultiPoint",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPoint"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/positionArray"
                }
              }
            }
            ,
          • {
            • "title":"LineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "LineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/lineString"
                }
              }
            }
            ,
          • {
            • "title":"MultiLineString",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiLineString"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/lineString"
                  }
                }
              }
            }
            ,
          • {
            • "title":"Polygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "Polygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "$ref":"#/definitions/polygon"
                }
              }
            }
            ,
          • {
            • "title":"MultiPolygon",
            • "properties":
              {
              • "type":
                {
                • "enum":
                  [
                  • "MultiPolygon"
                  ]
                }
                ,
              • "coordinates":
                {
                • "type":"array",
                • "items":
                  {
                  • "$ref":"#/definitions/polygon"
                  }
                }
              }
            }
          ]
          ,
        • "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"
            }
          }
        }
        ,
      • "west-midlands-police-crime_records":
        {
        • "properties":
          {
          • "fields":
            {
            • "type":"object",
            • "properties":
              {
              • "crime_id":
                {
                • "type":"string",
                • "title":"Crime ID",
                • "description":""
                }
                ,
              • "date":
                {
                • "type":"string",
                • "format":"date",
                • "title":"Date",
                • "description":""
                }
                ,
              • "crime_type":
                {
                • "type":"string",
                • "title":"Crime type",
                • "description":"One of the crime types listed in the Police.UK FAQ https://www.police.uk/pu/about-police.uk-crime-data/"
                }
                ,
              • "last_outcome_category":
                {
                • "type":"string",
                • "title":"Last outcome category",
                • "description":"A reference to whichever of the outcomes associated with the crime occurred most recently"
                }
                ,
              • "longitude":
                {
                • "type":"number",
                • "title":"Longitude",
                • "description":""
                }
                ,
              • "latitude":
                {
                • "type":"number",
                • "title":"Latitude",
                • "description":""
                }
                ,
              • "location":
                {
                • "type":"string",
                • "title":"Location",
                • "description":""
                }
                ,
              • "lsoa_code":
                {
                • "type":"string",
                • "title":"LSOA code",
                • "description":"References to the Lower Layer Super Output Area that the anonymised point falls into, according to the LSOA boundaries provided by the Office for National Statistics."
                }
                ,
              • "lsoa_name":
                {
                • "type":"string",
                • "title":"LSOA name",
                • "description":"References to the Lower Layer Super Output Area that the anonymised point falls into, according to the LSOA boundaries provided by the Office for National Statistics."
                }
                ,
              • "geopoint":
                {
                • "type":"array",
                • "minItems":2,
                • "maxItems":2,
                • "items":
                  {
                  • "type":"number"
                  }
                  ,
                • "title":"geopoint",
                • "description":""
                }
                ,
              • "ward_code":
                {
                • "type":"string",
                • "title":"Ward Code",
                • "description":""
                }
                ,
              • "ward_name":
                {
                • "type":"string",
                • "title":"Ward Name",
                • "description":""
                }
                ,
              • "constituency_code":
                {
                • "type":"string",
                • "title":"Constituency Code",
                • "description":""
                }
                ,
              • "constituency_name":
                {
                • "type":"string",
                • "title":"Constituency Name",
                • "description":""
                }
              }
            }
          }
        }
      }
    }

    Similar datasets