-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuk-police.yaml
809 lines (808 loc) · 24.4 KB
/
uk-police.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
openapi: 3.0.3
info:
title: UK Police - OpenAPI 3.0
description: |-
The API provides a rich data source for information related to UK Police activities.
### Parameters:
- The `date` parameter takes date in the format (YYYY-MM). It limits results to a specific month. The latest month will be shown by default if omitted.
- The `poly` parameter takes lat/lng pairs which define the boundary of the custom area in this format '[lat],[lng]:[lat],[lng]:[lat],[lng]'. The first and last coordinates need not be the same. If a custom area contains more than 10,000 crimes, the API will return a 503 status code.
- Crimes, stop-andsearches, and outcomes are mapped to specific locations on the map. Valid IDs are returned by some methods which return location information. Use these ids for `location_id` parameter.
version: 1.0.11
servers:
- url: https://data.police.uk/api
tags:
- name: Force
- name: Crime
- name: Neighbourhood
- name: Stop and search
paths:
/crimes-street-dates:
get:
summary: Data availability
description: Get the latest dates where data is available for each jurisdiction
operationId: availability
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
date:
type: string
example: 2023-02
stop-and-search:
type: array
items:
type: string
example: ["bedfordshire", "btp", "cambridgeshire"]
/forces:
get:
tags:
- Force
summary: List forces
description: A list of all the police forces available via the API except the British Transport Police
operationId: listForces
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: string
example: avon-and-somerset
name:
type: string
example: Avon and Somerset Constabulary
/forces/{id}:
get:
tags:
- Force
summary: Get single force
description: Get a single force by id
operationId: getForceById
parameters:
- name: id
in: path
description: force id
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: object
properties:
description:
type: string
url:
type: string
description: website of the specific force
engagement_methods:
type: array
description: different methods for engagin with the specific police force
items:
type: object
telephone:
type: string
example: 101
id:
type: string
example: leicestershire
name:
type: string
example: Leicestershire Police
'404':
description: Force not found
/forces/{id}/people:
get:
tags:
- Force
summary: List senior officers
description: List senior officers of a specific police force
operationId: listSeniors
parameters:
- name: id
in: path
description: force id
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Officer'
/crime-categories:
get:
tags:
- Crime
summary: Crime categories list
description: Returns a list of valid categories for a given dataset date
operationId: listCrimeCats
parameters:
- name: date
in: query
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
url:
type: string
description: Unique identifier of the category
example: bicycle-theft
name:
type: string
description: Name of the category
example: Bicycle theft
/crimes-street/{category}:
get:
tags:
- Crime
summary: Street-level crimes
description: Crimes at street-level; either within a 1 mile radius of a single point, or within a custom area
operationId: getCrimesInArea
parameters:
- name: category
in: path
description: category of the crime
required: true
schema:
type: string
- name: lat
in: query
schema:
type: number
- name: lng
in: query
schema:
type: number
- name: poly
in: query
schema:
type: string
- name: date
in: query
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Crime'
'404':
description: Not found
/outcomes-at-location:
get:
tags:
- Crime
summary: Outcomes in certian area
description: Outcomes at street-level; either at a specific location, within a 1 mile radius of a single point, or within a custom area.
operationId: getOutcomesInArea
parameters:
- name: location_id
in: query
schema:
type: integer
- name: lat
in: query
schema:
type: number
- name: lng
in: query
schema:
type: number
- name: poly
in: query
schema:
type: string
- name: date
in: query
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
category:
type: object
description: Outcome category
properties:
code:
type: string
example: no-further-action
name:
type: string
example: Investigation complete; no suspect identified
date:
type: string
description: date of the outcome
person_id:
type: integer
description: An identifier for the suspect/offender, where available.
crime:
$ref: '#/components/schemas/Crime'
/crimes-at-location:
get:
tags:
- Crime
summary: Crimes at specific location
description: Returns just the crimes which occurred at the specified location, rather than those within a radius. If given latitude and longitude, finds the nearest pre-defined location and returns the crimes which occurred there.
operationId: getCrimesByLocation
parameters:
- name: location_id
in: query
schema:
type: integer
- name: lat
in: query
schema:
type: number
- name: lng
in: query
schema:
type: number
- name: date
in: query
schema:
type: string
responses:
"200":
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Crime'
'404':
description: Not found
/crimes-no-location:
get:
tags:
- Crime
summary: Crimes with no location
description: Returns a list of crimes that could not be mapped to a location
operationId: getCrimesNoLocation
parameters:
- name: category
in: query
description: crime category
schema:
type: string
- name: force
in: query
description: force id
schema:
type: string
- name: date
in: query
schema:
type: string
responses:
'200':
description: Successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Crime'
'404':
description: Not found
/{forceId}/neighbourhoods:
get:
tags:
- Neighbourhood
summary: Neighbourhoods of force
description: List of teams/neighbourhoods for a force
operationId: listTeamsByForce
parameters:
- name: forceId
in: path
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: string
description: Police force specific team identifier
example: NC04
name:
type: string
description: Name for the neighbourhood
example: City Centre
/{forceId}/{teamId}:
get:
tags:
- Neighbourhood
summary: Specific police team/neighbourhood
description: Get single team/neighbourhood
operationId: getTeam
parameters:
- name: forceId
in: path
required: true
schema:
type: string
- name: teamId
in: path
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: object
'404':
description: Not found
/{forceId}/{teamId}/boundary:
get:
tags:
- Neighbourhood
summary: Specific neighbourhood boundary
description: A list of latitude/longitude pairs that make up the boundary of a neighbourhood.
operationId: getNeighbourhoodBoundary
parameters:
- name: forceId
in: path
required: true
schema:
type: string
- name: teamId
in: path
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
latitude:
type: string
longitude:
type: string
'404':
description: Not found
/{forceId}/{teamId}/people:
get:
tags:
- Neighbourhood
summary: Specific neighbourhood team
description: A list of police team members in a specific neighbourhood.
operationId: getNeighbourhoodTeam
parameters:
- name: forceId
in: path
required: true
schema:
type: string
- name: teamId
in: path
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Officer'
'404':
description: Not found
/{forceId}/{teamId}/events:
get:
tags:
- Neighbourhood
summary: Specific neighbourhood events
description: A list of events in a specific neighbourhood.
operationId: getNeighbourhoodEvents
parameters:
- name: forceId
in: path
required: true
schema:
type: string
- name: teamId
in: path
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
contact_details:
type: object
description: Contact details for the event (if available)
description:
type: string
description: Description of the event
title:
type: string
description: Title of the event
address:
type: string
description: Address of the event
type:
type: string
description: Type of event
start_date:
type: string
description: Start of the event in ISO date format
end_date:
type: string
description: End of the event in ISO date format
'404':
description: Not found
/{forceId}/{teamId}/priorities:
get:
tags:
- Neighbourhood
summary: Specific neighbourhood priorities
description: A list of priorities in a specific neighbourhood.
operationId: getNeighbourhoodPriorities
parameters:
- name: forceId
in: path
required: true
schema:
type: string
- name: teamId
in: path
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
action:
type: string
description: Action taken to address the priority
issue-date:
type: string
description: When the priority was agreed upon
action-date:
type: string
description: When action was last taken
issue:
type: string
description: An issue raised with the police
'404':
description: Not found
/locate-neighbourhood:
get:
tags:
- Neighbourhood
summary: Locate neighbourhood
description: Find the neighbourhood policing team responsible for a particular area.
operationId: findNeighbourhood
parameters:
- name: q
in: query
description: A Latitude & Longitude, e.g. 51.500617,-0.124629
required: true
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
type: object
properties:
force:
type: string
description: Unique force identifier
neighbourhood:
type: string
description: Force specific team identifier
'404':
description: Not found
/stops-street:
get:
tags:
- Stop and search
summary: Stop-and-searches at street-level
description: Stop-and-searches at street-level; either within a 1 mile radius of a single point, or within a custom area.
operationId: getStopsByArea
parameters:
- name: lat
in: query
schema:
type: number
- name: lng
in: query
schema:
type: number
- name: poly
in: query
schema:
type: string
- name: date
in: query
schema:
type: string
responses:
'200':
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Stop'
'404':
description: Not found
/stops-at-location:
get:
tags:
- Stop and search
summary: Stop-and-searches at specific location
description: Stop and searches at a particular location.
operationId: getStopsByLocation
parameters:
- name: location_id
in: query
schema:
type: integer
- name: date
in: query
schema:
type: string
responses:
"200":
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Stop'
'404':
description: Not found
/stops-no-location:
get:
tags:
- Stop and search
summary: Stop-and-searches at no specific location
description: Stop and searches that could not be mapped to a location.
operationId: getStopsNoLocation
parameters:
- name: location_id
in: query
schema:
type: integer
- name: date
in: query
schema:
type: string
responses:
"200":
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Stop'
'404':
description: Not found
/stops-force:
get:
tags:
- Stop and search
summary: Stop-and-searches at no specific location
description: Stop and searches that could not be mapped to a location.
operationId: getStopsByForce
parameters:
- name: force
in: query
description: force Id
schema:
type: integer
- name: date
in: query
schema:
type: string
responses:
"200":
description: successful operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Stop'
'404':
description: Not found
components:
schemas:
Crime:
type: object
properties:
category:
type: string
location_type:
type: string
description: The type of the location. Either 'Force' or 'BTP'. Force indicates a normal police force location; BTP indicates a British Transport Police location. BTP locations fall within normal police force boundaries.
location:
$ref: '#/components/schemas/Location'
context:
type: string
outcome_status:
type: object
properties:
category:
type: string
description: Category of outcome
example: Under investigation
date:
type: string
example: 2023-02
persistent_id:
type: string
example: 188de6f512fb5f8de782f2977b6413e1798043fd58a648bf9bb7ba0ab7628341
id:
type: integer
description: Crime id
example: 108221039
location_subtype:
type: string
description: For BTP locations, the type of location at which this crime was recorded.
month:
type: string
example: 2023-02
Officer:
type: object
properties:
bio:
type: string
description: Team member biography (if available)
contact_details:
type: object
description: Contact details for the team member
name:
type: string
description: Name of the person
example: Simon Cole
rank:
type: string
description: Force rank
example: Chief Constable
Location:
type: object
properties:
latitude:
type: string
description: approximate latitude of the crime location
street:
type: object
properties:
id:
type: integer
description: Street id
name:
type: string
description: Human-readable summary of the location
example: On or near Gower Street
longitude:
type: string
description: approximate longitude of the crime location
Stop:
type: object
properties:
type:
type: string
description: Whether this was a 'Person search', a 'Vehicle search', or a 'Person and Vehicle search'
involved_person:
type: string
description: Whether a person was searched in this incident (derived from type; true if anything but 'Vehicle search')
datetime:
type: string
description: When the stop and search took place. Note that some forces only provide dates for their stop and searches, so you might see a disproportionate number of incidents occuring at midnight.
operation:
type: string
description: Whether this stop and search was part of a policing operation
operation_name:
type: string
description: The name of the operation this stop and search was part of
location:
$ref: '#/components/schemas/Location'
gender:
type: string
description: Human-readable gender of the person stopped, if applicable and provided
age_range:
type: string
description: The age range of the person stopped at the time the stop occurred
self_defined_ethnicity:
type: string
description: The self-defined ethnicity of the person stopped
officer_defined_ethnicity:
type: string
description: The officer-defined ethnicity of the person stopped
legislation:
type: string
description: The power used to carry out the stop and search
object_of_search:
type: string
description: The reason the stop and search was carried out
outcome:
type: string
description: The outcome of the stop. false if nothing was found, an empty string if no outcome was provided.
outcome_linked_to_object_of_search:
type: string
description: Whether the outcome was related to the reason the stop and search was carried out, as a boolean value (or null if not provided)
removal_of_more_than_outer_clothing:
type: string
description: Whether the person searched had more than their outer clothing removed, as a boolean value (or null if not provided)