generated from PeopleForBikes/bna-mechanics-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
openapi.yaml
1654 lines (1626 loc) · 48.5 KB
/
openapi.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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: "BNA REST API"
description: "Provides a way to retrieve the BNA results programmatically."
version: "1.0.0"
contact:
name: The BNA Mechanics team
url: https://peopleforbikes.github.io/
servers:
- url: "https://api.peopleforbikes.xyz"
description: Staging API
- url: "https://localhost:3000"
description: Local development API
tags:
- name: city
- name: price
- name: rating
paths:
/ratings:
get:
operationId: getRatings
summary: Get city rating summaries
description: Get city rating summaries.
tags:
- rating
responses:
200:
$ref: "#/components/responses/rating_summaries"
parameters:
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/page_size"
post:
operationId: postRatings
summary: Create new city rating
description: Create a new city rating
tags:
- rating
requestBody:
description: Create bna
content:
application/json:
schema:
$ref: "#/components/schemas/bna_post"
responses:
201:
$ref: "#/components/responses/rating"
403:
$ref: "#/components/responses/forbidden"
security:
- Authorize: []
/ratings/analyses:
get:
operationId: getRatingsAnalyses
summary: "Get the city rating analys details"
description: "Get the city rating analys details"
tags:
- rating
responses:
200:
$ref: "#/components/responses/analyses"
403:
$ref: "#/components/responses/forbidden"
parameters:
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/page_size"
security:
- Authorize: []
post:
operationId: postRatingsAnalyses
summary: Submit a new city to analyze
description: Submit a new city to analyze
tags:
- rating
requestBody:
description: Create a new analysis performed by the brokenspoke-analyzer
content:
application/json:
schema:
$ref: "#/components/schemas/analysis_post"
responses:
201:
$ref: "#/components/responses/analysis"
400:
$ref: "#/components/responses/bad_request"
security:
- Authorize: []
/ratings/analyses/{analysis_id}:
get:
operationId: getAnalysis
summary: Get the summary of a specific analysis
description: Get the summary of a specific analysis .
tags:
- rating
parameters:
- $ref: "#/components/parameters/analysis_id"
responses:
200:
$ref: "#/components/responses/analysis"
400:
$ref: "#/components/responses/bad_request"
403:
$ref: "#/components/responses/forbidden"
404:
$ref: "#/components/responses/not_found"
security:
- Authorize: []
patch:
operationId: patchAnalysis
summary: Update an analysis
description: Update an analysis
tags:
- rating
requestBody:
description: Update a new analysis performed by the brokenspoke-analyzer
content:
application/json:
schema:
$ref: "#/components/schemas/analysis_patch"
responses:
200:
$ref: "#/components/responses/analysis"
400:
$ref: "#/components/responses/bad_request"
403:
$ref: "#/components/responses/forbidden"
404:
$ref: "#/components/responses/not_found"
security:
- Authorize: []
parameters:
- $ref: "#/components/parameters/analysis_id"
/ratings/{rating_id}:
get:
operationId: getRating
summary: Get a specific city rating summary
description: Get a specific city rating summary.
tags:
- rating
responses:
200:
$ref: "#/components/responses/rating"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
parameters:
- $ref: "#/components/parameters/rating_id"
- $ref: "#/components/parameters/component"
/ratings/{rating_id}/city:
get:
operationId: getRatingCity
summary: Get a specific city rating summary and its associated city details
description: Get a specific city rating summary and its associated city details.
tags:
- rating
responses:
200:
$ref: "#/components/responses/rating_summary_with_city"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
parameters:
- $ref: "#/components/parameters/rating_id"
/cities:
get:
operationId: getCities
summary: Get city details
description: Get the details of all cities where an BNA analysis was performed.
tags:
- city
responses:
200:
$ref: "#/components/responses/cities"
parameters:
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/page_size"
post:
operationId: postCity
summary: Create a new city
description: Create a new city.
tags:
- city
requestBody:
description: Create a new city.
content:
application/json:
schema:
$ref: "#/components/schemas/city_post"
responses:
201:
$ref: "#/components/responses/city"
400:
$ref: "#/components/responses/bad_request"
parameters:
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/page_size"
security:
- Authorize: [write]
/cities/submissions:
get:
operationId: getCitySubmissions
summary: Get the cities that were submitted for analysis
description: Get the cities that were submitted for analysis.
tags:
- city
responses:
200:
$ref: "#/components/responses/submissions"
parameters:
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/page_size"
post:
operationId: postCitySubmission
summary: Submit a new city for analysis
description: Submit a new city for analysis.
tags:
- city
requestBody:
description: Create a new analysis to be performed by the brokenspoke-analyzer
content:
application/json:
schema:
$ref: "#/components/schemas/submission_post"
responses:
201:
$ref: "#/components/responses/submission"
400:
$ref: "#/components/responses/bad_request"
/cities/submissions/{submission_id}:
get:
operationId: getCitySubmission
summary: Get the details of a specific sumission
description: Get the details of a specific sumission.
tags:
- city
responses:
200:
$ref: "#/components/responses/submission"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
patch:
operationId: patchCitySubmissions
summary: Update the details of a specific sumission
description: Update the details of a specific sumission.
tags:
- city
requestBody:
description: Update the details of a specific sumission.
content:
application/json:
schema:
$ref: "#/components/schemas/submission_patch"
responses:
200:
$ref: "#/components/responses/submission"
400:
$ref: "#/components/responses/bad_request"
403:
$ref: "#/components/responses/forbidden"
404:
$ref: "#/components/responses/not_found"
security:
- Authorize: []
parameters:
- $ref: "#/components/parameters/submission_id"
/cities/{country}/{region}/{name}:
get:
operationId: getCity
summary: Get the details of specific city
description: >
Get the details of a specific city where an BNA analysis was computed.
tags:
- city
responses:
200:
$ref: "#/components/responses/city"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
parameters:
- $ref: "#/components/parameters/country"
- $ref: "#/components/parameters/region"
- $ref: "#/components/parameters/name"
/cities/{country}/{region}/{name}/ratings:
get:
operationId: getCityRatings
summary: >
Get the details of a specific city with all the analysis that were performed
against it
description: >
Get the details of a specific city with all the analysis that were performed
against it.
tags:
- city
responses:
200:
$ref: "#/components/responses/city_with_ratings"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
parameters:
- $ref: "#/components/parameters/country"
- $ref: "#/components/parameters/region"
- $ref: "#/components/parameters/name"
/cities/{country}/{region}/{name}/census:
get:
operationId: getCityCensus
summary: >
Get the details of a specific city with its associated census information.
description: >
Get the details of a specific city with its associated census information.
tags:
- city
responses:
200:
$ref: "#/components/responses/city_with_census"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
post:
operationId: patchCityCensus
summary: Create census information for a specific city.
description: Create census information for a specific city.
tags:
- city
requestBody:
description: Create the census information for a specific city.
content:
application/json:
schema:
$ref: "#/components/schemas/census_post"
responses:
201:
$ref: "#/components/responses/city_with_census"
400:
$ref: "#/components/responses/bad_request"
404:
$ref: "#/components/responses/not_found"
security:
- Authorize: []
parameters:
- $ref: "#/components/parameters/country"
- $ref: "#/components/parameters/region"
- $ref: "#/components/parameters/name"
/ratings/enqueue:
post:
operationId: postRatingEnqueue
summary: Enqueue a city to process
description: Enqueue a city to process.
tags:
- rating
requestBody:
description: Create a new city to enqueue.
content:
application/json:
schema:
$ref: "#/components/schemas/enqueue_post"
responses:
201:
$ref: "#/components/responses/enqueue"
400:
$ref: "#/components/responses/bad_request"
403:
$ref: "#/components/responses/forbidden"
security:
- Authorize: []
/price/fargate:
get:
operationId: getPricesFargate
summary: "Get all the AWS Fargate prices used to compute analysis costs."
description: "Get all the AWS Fargate prices used to compute analysis costs."
tags:
- price
responses:
200:
$ref: "#/components/responses/fargate_prices"
/price/fargate/{fargate_price_id}:
get:
operationId: getPriceFargate
summary: "Get a AWS Fargate price used to compute the cost of an analysis."
description: "Get a AWS Fargate price used to compute the cost of analysis cost."
tags:
- price
parameters:
- $ref: "#/components/parameters/fargate_price_id"
responses:
200:
$ref: "#/components/responses/fargate_price"
404:
$ref: "#/components/responses/not_found"
components:
schemas:
analysis:
type: object
properties:
cost:
type: string
format: decimal
description: "Cost of an analysis in USD"
example: "6.8941"
nullable: true
end_time:
type: string
format: date-time
description: "Date and time"
nullable: true
fargate_price_id:
type: integer
description: "Fargate price identifier"
example: 1
nullable: true
fargate_task_arn:
type: string
description: "The ARN of the Fargate task that performed the analysis"
example: >
arn:aws:ecs:us-west-2:123456789012:task/bna/29f979fc9fca402d94b014aa23d2f6e0
nullable: true
results_posted:
type: boolean
nullable: true
s3_bucket:
type: string
description: "the path of the S3 bucket where the results were stored"
example: "united states/new mexico/santa rosa/24.05.4"
nullable: true
sqs_message:
type: string
description: "Copy of the JSON message that was sent for processing"
example: >-
{"country":"United States","city":"santa rosa","region":"new mexico",
"fips_code":"3570670"}
nullable: true
start_time:
type: string
format: date-time
description: "Date and time"
nullable: true
state_machine_id:
$ref: "#/components/schemas/state_machine_id"
status:
$ref: "#/components/schemas/analysis_status"
step:
$ref: "#/components/schemas/step"
torn_down:
type: boolean
description: >
Flag indicating wether the resources were torn down or not at the end of the
analysis
nullable: true
required:
- state_machine_id
analysis_patch:
type: object
properties:
cost:
type: number
format: double
description: "Cost of an analysis in USD"
example: 6.8941
nullable: true
end_time:
type: string
format: date-time
description: "Date and time"
nullable: true
fargate_task_arn:
type: string
description: "The ARN of the Fargate task that performed the analysis"
example: >
arn:aws:ecs:us-west-2:123456789012:task/bna/29f979fc9fca402d94b014aa23d2f6e0
nullable: true
results_posted:
type: boolean
nullable: true
s3_bucket:
type: string
description: "the path of the S3 bucket where the results were stored"
example: "united states/new mexico/santa rosa/24.05.4"
nullable: true
sqs_message:
type: string
description: "Copy of the JSON message that was sent for processing"
example: >-
{"country":"United States","city":"santa rosa","region":"new mexico",
"fips_code":"3570670"}
nullable: true
start_time:
type: string
format: date-time
description: "Date and time"
nullable: true
status:
$ref: "#/components/schemas/analysis_status"
step:
$ref: "#/components/schemas/step"
torn_down:
type: boolean
description: >
Flag indicating wether the resources were torn down or not at the end of the
analysis
nullable: true
analysis_post:
type: object
properties:
cost:
type: number
format: double
description: "Cost of an analysis in USD"
example: 6.8941
nullable: true
end_time:
type: string
format: date-time
description: "Date and time"
nullable: true
fargate_task_arn:
type: string
description: "The ARN of the Fargate task that performed the analysis"
example: >
arn:aws:ecs:us-west-2:123456789012:task/bna/29f979fc9fca402d94b014aa23d2f6e0
nullable: true
result_posted:
type: boolean
nullable: true
s3_bucket:
type: string
description: "the path of the S3 bucket where the results were stored"
example: "united states/new mexico/santa rosa/24.05.4"
nullable: true
sqs_message:
type: string
description: "Copy of the JSON message that was sent for processing"
example: >-
{"country":"United States","city":"santa rosa","region":"new mexico",
"fips_code":"3570670"}
nullable: true
start_time:
type: string
format: date-time
description: "Date and time"
nullable: true
step:
$ref: "#/components/schemas/step"
torn_down:
type: boolean
description: >
Flag indicating wether the resources were torn down or not at the end of the
analysis
nullable: true
state_machine_id:
$ref: "#/components/schemas/state_machine_id"
fargate_price_id:
type: number
description: >
Identifier of the Fargate Price rate used to compute the cost of the pipeline
run.
status:
$ref: "#/components/schemas/analysis_status"
analysis_status:
type: string
enum:
- Completed
- Pending
- Processing
description: "BNA Pipeline status"
example: "Pending"
api_gateway_id:
type: string
description: "API Gateway ID associated with the request "
example: "blfwkg8nvHcEJnQ="
bna:
type: object
properties:
id:
type: string
format: uuid
description: "Analysis identifier"
example: "1a759b85-cd87-4bb1-9efa-5789e38e9982"
nullable: false
city_id:
type: string
format: uuid
description: "City identifier"
example: "6d1927b4-3474-4ce0-9b2e-2a1f5a7d91bd"
community_centers:
type: number
description: "BNA category subscore for access to community centers"
example: 70.7
nullable: true
coreservices_score:
type: number
description: "BNA category score for access to core services"
example: 78.15
nullable: true
dentists:
type: number
description: "BNA category subscore for access to dentists"
example: 68.69
nullable: true
doctors:
type: number
description: "BNA category subscore for access to doctors"
example: 73.51
nullable: true
employment:
type: number
description: "BNA category subscore for access to job location areas"
example: 0.0
nullable: true
grocery:
type: number
description: "BNA category subscore for access to grocery stores"
example: 83.02
nullable: true
high_stress_miles:
type: number
description: "Total miles of high-stress streets in the measured area"
example: 437.8
nullable: true
higher_education:
type: number
description: "BNA category subscore for access to universities and colleges"
example: 84.76
nullable: true
hospitals:
type: number
description: "BNA category subscore for access to hospitals"
example: 82.43
nullable: true
k12_education:
type: number
description: "BNA category subscore for access to k12 schools"
example: 6.63
nullable: true
low_stress_miles:
type: number
description: "Total miles of low-stress streets and paths in the measured area"
example: 1862.2
nullable: true
opportunity_score:
type: number
description: BNA category score for access to education and jobs""
example: 79.91
nullable: true
parks:
type: number
description: "BNA category subscore for access to parks"
example: 78.49
nullable: true
people:
type: number
description: "BNA category score for access to residential areas"
example: 75.81
nullable: true
pharmacies:
type: number
description: "BNA category subscore for access to pharmacies"
example: 76.62
nullable: true
recreation_score:
type: number
description: "BNA category score for access to recreational facilities"
example: 82.13
nullable: true
recreation_trails:
type: number
description: "BNA category subscore for access to bikeable trails"
example: 94.45
nullable: true
retail:
type: number
description: "BNA category score for access to major retail centers"
example: 73.71
nullable: true
score:
type: number
description: "BNA total score"
example: 77.0
social_services:
type: number
description: "BNA category subscore for access to social services"
example: 77.82
nullable: true
technical_vocational_college:
type: number
description: "BNA category subscore for access to technical and vocational colleges"
example: 81.67
nullable: true
transit:
type: number
description: "BNA category score for access to major transit stops"
example: 71.59
nullable: true
version:
type: string
description: >
Analysis version. The format follows the [calver](https://calver.org)
specification with the YY.0M[.Minor] scheme.
example: "23.02"
required:
- id
- city_id
- score
- version
bna_post:
type: object
properties:
core_services:
$ref: "#/components/schemas/core_services"
infrastructure:
$ref: "#/components/schemas/infrastructure"
opportunity:
$ref: "#/components/schemas/opportunity"
people:
$ref: "#/components/schemas/people"
recreation:
$ref: "#/components/schemas/recreation"
retail:
$ref: "#/components/schemas/retail"
summary:
$ref: "#/components/schemas/bna_summary"
transit:
$ref: "#/components/schemas/transit"
required:
- core_services
- infrastructure
- opportunity
- people
- recreation
- retail
- summary
- transit
bna_summary:
type: object
properties:
rating_id:
type: string
format: uuid
description: "Analysis identifier"
example: "1a759b85-cd87-4bb1-9efa-5789e38e9982"
city_id:
type: string
format: uuid
description: "City identifier"
example: "6d1927b4-3474-4ce0-9b2e-2a1f5a7d91bd"
created_at:
type: string
format: date-time
description: "Date and time"
score:
type: number
description: "BNA score"
example: 77.0
version:
type: string
description: >
Analysis version. The format follows the [calver](https://calver.org)
specification with the YY.0M[.Minor] scheme.
example: "23.02"
required:
- city_id
- rating_id
- score
- version
bna_summary_with_city:
type: array
items:
allOf:
- $ref: "#/components/schemas/bna_summary"
- $ref: "#/components/schemas/city"
census:
type: object
description: "Census information"
properties:
census_id:
type: integer
example: 788
city_id:
type: string
format: uuid
description: "City identifier"
example: "6d1927b4-3474-4ce0-9b2e-2a1f5a7d91bd"
created_at:
type: string
format: date-time
description: "Date and time"
fips_code:
type: string
description: >
Numerical city identifier given by the U.S. census, or 0 for non-US cities
example: "4805000"
pop_size:
type: integer
description: >
City population size category (small (0), medium (1), large (2))
enum:
- 0
- 1
- 2
example: 2
population:
type: integer
description: "City population"
example: 907779
census_post:
type: object
properties:
fips_code:
type: string
description: >
Numerical city identifier given by the U.S. census, or 0 for non-US cities
example: "4805000"
pop_size:
type: integer
description: >
City population size category (small (0), medium (1), large (2))
enum:
- 0
- 1
- 2
example: 2
population:
type: integer
description: "City population"
example: 907779
city:
type: object
properties:
id:
type: string
format: uuid
description: "City identifier"
example: "6d1927b4-3474-4ce0-9b2e-2a1f5a7d91bd"
nullable: false
country:
$ref: "#/components/schemas/country"
created_at:
type: string
format: date-time
description: "Date and time"
latitude:
type: number
description: >
Geographic coordinate that specifies the north-south position of a point on the
surface of the Earth.
example: 51.2194
longitude:
type: number
description: >
Geographic coordinate that specifies the east–west position of a point on the
surface of the Earth.
example: 4.4025
name:
type: string
description: "City name"
example: "Antwerp"
region:
type: string
description: >
Region name. A region can be a state, a province, a community, or something
similar depending on the country. If a country does not have this concept, then
the country name is used.
example: "Belgium"
speed_limit:
type: number
description: "Speed limit in kilometer per hour (km/h)."
example: 50
state:
type: string
description: "State name"
example: "Antwerp"
state_abbrev:
type: string
description: "A short version of the state name, usually 2 or 3 character long."
example: "VAN"
updated_at:
type: string
format: date-time
description: "Date and time"
required:
- country
- created_at
- id
- name
- state
city_post:
type: object
properties:
country:
$ref: "#/components/schemas/country"
latitude:
type: number
description: >
Geographic coordinate that specifies the north-south position of a point on the
surface of the Earth.
example: 51.2194
nullable: true
longitude:
type: number
description: >
Geographic coordinate that specifies the east–west position of a point on the
surface of the Earth.
example: 4.4025
nullable: true
name:
type: string
description: "City name"
example: "Antwerp"
state:
type: string
description: "State name"
example: "Antwerp"
state_abbrev:
type: string
description: "A short version of the state name, usually 2 or 3 character long."
example: "VAN"
speed_limit:
type: number
description: "Speed limit in kilometer per hour (km/h)."
example: 50
nullable: true
required:
- country
- name
core_services:
type: object
properties:
dentists:
type: number
description: "BNA category subscore for access to dentists"
example: 68.69
doctors:
type: number
description: "BNA category subscore for access to doctors"
example: 73.51
grocery:
type: number
description: "BNA category subscore for access to grocery stores"
example: 83.02
hospitals:
type: number
description: "BNA category subscore for access to hospitals"
example: 82.43
pharmacies:
type: number
description: "BNA category subscore for access to pharmacies"
example: 76.62
score:
type: number
description: "BNA total score"
example: 77.0
social_services:
type: number
description: "BNA category subscore for access to social services"
example: 77.82
country:
type: string
enum:
- Australia
- Belgium
- Brazil
- Canada
- Chile
- Colombia
- Croatia
- Cuba
- England
- France
- Germany
- Greece
- Guatemala
- Iran
- Iraq
- Ireland
- Italy
- Mexico
- Netherlands
- New Zealand
- Northern Ireland
- Portugal
- Scotland
- Spain