-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
662 lines (622 loc) · 17.9 KB
/
Copy pathopenapi.yaml
File metadata and controls
662 lines (622 loc) · 17.9 KB
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
openapi: "3.0.3"
info:
title: InWheel API
version: "1.0.0"
description: |
Public REST API for the InWheel accessibility platform.
All data endpoints are versioned under /v1/.
Probe endpoints (/healthz, /readyz) are unversioned.
servers:
- url: /v1
security: [] # most endpoints are public; overridden per-operation
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: X-API-Key
schemas:
# ── Enum helpers ──────────────────────────────────────────────────────────
A11yStatus:
type: string
enum: [accessible, limited, inaccessible, unknown]
A11yComponentType:
type: string
enum: [entrance, restroom, parking, elevator, other]
Category:
type: string
enum:
- mall
- airport
- train_station
- restaurant
- cafe
- shop
- toilet
- parking
- entrance
- other
OSMType:
type: string
enum: [node, way, relation]
PlaceStatus:
type: string
enum: [active, closed, osm_removed]
# ── Domain types — reuse existing Go structs via x-go-type ───────────────
# x-go-type tells oapi-codegen "don't generate a new struct, use this one".
# The spec schema still drives middleware validation; the Go type is imported.
EntranceProperties:
x-go-type: models.EntranceProperties
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
properties:
width:
type: number
format: double
minimum: 0
maximum: 10
has_ramp:
type: boolean
is_automatic:
type: boolean
has_step:
type: boolean
step_height:
type: number
format: double
minimum: 0
maximum: 1
RestroomProperties:
x-go-type: models.RestroomProperties
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
properties:
wheelchair_accessible:
type: boolean
grab_rails:
type: boolean
changing_table:
type: boolean
door_width:
type: number
format: double
minimum: 0
maximum: 10
ParkingProperties:
x-go-type: models.ParkingProperties
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
properties:
has_disabled_spaces:
type: boolean
count:
type: integer
minimum: 0
maximum: 10000
ElevatorProperties:
x-go-type: models.ElevatorProperties
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
properties:
width:
type: number
format: double
minimum: 0
maximum: 10
depth:
type: number
format: double
minimum: 0
maximum: 10
braille:
type: boolean
audio:
type: boolean
A11yComponent:
x-go-type: models.A11yComponent
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
required: [type]
properties:
type:
$ref: "#/components/schemas/A11yComponentType"
is_inherited:
type: boolean
source_id:
type: string
format: uuid
overall_status:
$ref: "#/components/schemas/A11yStatus"
audit_flags:
type: array
items:
type: string
entrance:
$ref: "#/components/schemas/EntranceProperties"
restroom:
$ref: "#/components/schemas/RestroomProperties"
parking:
$ref: "#/components/schemas/ParkingProperties"
elevator:
$ref: "#/components/schemas/ElevatorProperties"
metadata:
type: object
additionalProperties: true
AccessibilityProfile:
x-go-type: models.AccessibilityProfile
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
required: [overall_status]
properties:
id:
type: string
format: uuid
readOnly: true
place_id:
type: string
format: uuid
readOnly: true
overall_status:
$ref: "#/components/schemas/A11yStatus"
components:
type: array
items:
$ref: "#/components/schemas/A11yComponent"
updated_at:
type: string
format: date-time
readOnly: true
submitted_at:
type: string
format: date-time
readOnly: true
user_verified:
type: boolean
readOnly: true
ExternalRef:
x-go-type: models.ExternalRef
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
required: [id, confidence]
properties:
id:
type: string
confidence:
type: number
format: double
minimum: 0
maximum: 1
matched_at:
type: string
format: date-time
Place:
x-go-type: models.Place
x-go-type-import:
name: models
path: github.com/InWheelOrg/inwheel-api/pkg/models
type: object
required: [name, lat, lng, category]
properties:
id:
type: string
format: uuid
readOnly: true
osm_id:
type: integer
format: int64
minimum: 0
osm_type:
$ref: "#/components/schemas/OSMType"
name:
type: string
minLength: 1
maxLength: 256
lng:
type: number
format: double
minimum: -180
maximum: 180
lat:
type: number
format: double
minimum: -90
maximum: 90
category:
$ref: "#/components/schemas/Category"
rank:
type: integer
enum: [1, 2, 3]
parent_id:
type: string
format: uuid
accessibility:
$ref: "#/components/schemas/AccessibilityProfile"
tags:
type: object
additionalProperties:
type: string
source:
type: string
maxLength: 64
external_ids:
type: object
additionalProperties:
$ref: "#/components/schemas/ExternalRef"
status:
$ref: "#/components/schemas/PlaceStatus"
readOnly: true
created_at:
type: string
format: date-time
readOnly: true
updated_at:
type: string
format: date-time
readOnly: true
submitted_at:
type: string
format: date-time
readOnly: true
# ── API-specific response envelopes ───────────────────────────────────────
PlacePage:
type: object
required: [data]
properties:
data:
type: array
items:
$ref: "#/components/schemas/Place"
next_cursor:
type: string
description: >
Opaque cursor for the next page. Absent when this is the last page.
Re-send all filter params unchanged on each subsequent request.
# ── Error shapes ─────────────────────────────────────────────────────────
FieldError:
type: object
required: [field, reason]
properties:
field:
type: string
reason:
type: string
ValidationError:
type: object
required: [error, fields]
properties:
error:
type: string
example: "validation failed"
fields:
type: array
items:
$ref: "#/components/schemas/FieldError"
ConflictItem:
type: object
required: [component, reason]
properties:
component:
type: string
reason:
type: string
ConflictError:
type: object
required: [error, conflicts]
properties:
error:
type: string
example: "accessibility data contains conflicts"
conflicts:
type: array
items:
$ref: "#/components/schemas/ConflictItem"
ErrorResponse:
type: object
required: [error]
properties:
error:
type: string
# ── Auth schemas ──────────────────────────────────────────────────────────
RegisterRequest:
type: object
required: [email]
properties:
email:
type: string
format: email
RegisterResponse:
type: object
required: [api_key, email, created_at]
properties:
api_key:
type: string
description: Raw API key shown exactly once. Store it securely.
email:
type: string
created_at:
type: string
format: date-time
paths:
# ── Places ────────────────────────────────────────────────────────────────
/places:
get:
operationId: listPlaces
summary: List places with cursor-based pagination
description: |
Returns a page of places ordered by (updated_at DESC, id ASC).
Supports three modes (mutually exclusive):
- **Proximity**: `lng`, `lat`, `radius` — all three required together
- **Bounding box**: `min_lng`, `min_lat`, `max_lng`, `max_lat` — all four required together
- **Default**: most recently updated places
Re-send identical filter params on every subsequent page.
parameters:
- name: limit
in: query
schema:
type: integer
minimum: 1
maximum: 100
default: 20
- name: cursor
in: query
schema:
type: string
- name: lng
in: query
schema:
type: number
format: double
minimum: -180
maximum: 180
- name: lat
in: query
schema:
type: number
format: double
minimum: -90
maximum: 90
- name: radius
in: query
schema:
type: number
format: double
minimum: 0
exclusiveMinimum: true
maximum: 50000
- name: min_lng
in: query
schema:
type: number
format: double
minimum: -180
maximum: 180
- name: min_lat
in: query
schema:
type: number
format: double
minimum: -90
maximum: 90
- name: max_lng
in: query
schema:
type: number
format: double
minimum: -180
maximum: 180
- name: max_lat
in: query
schema:
type: number
format: double
minimum: -90
maximum: 90
responses:
"200":
description: Paginated list of places
content:
application/json:
schema:
$ref: "#/components/schemas/PlacePage"
"400":
description: Invalid query parameters
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
post:
operationId: createPlace
summary: Create a place
description: Creates a new place. Accessibility data may be included inline.
security:
- ApiKeyAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/Place"
responses:
"201":
description: Place created
content:
application/json:
schema:
$ref: "#/components/schemas/Place"
"400":
description: Validation error
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
"401":
description: Missing or invalid API key
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"422":
description: Accessibility data contains conflicts
content:
application/json:
schema:
$ref: "#/components/schemas/ConflictError"
/places/{id}:
get:
operationId: getPlace
summary: Get a single place
description: |
Returns a place with its effective accessibility profile.
For places with a parent, components are inherited from the parent
for any component type the child does not define itself.
Inherited components carry `is_inherited: true` and `source_id` of the parent.
parameters:
- name: id
in: path
required: true
schema:
type: string
format: uuid
responses:
"200":
description: Place found
content:
application/json:
schema:
$ref: "#/components/schemas/Place"
"400":
description: Invalid UUID format
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
"404":
description: Place not found
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/places/{id}/accessibility:
patch:
operationId: patchPlaceAccessibility
summary: Update or create an accessibility profile
description: |
Upserts the accessibility profile for the given place.
Audit flags are computed from submitted component properties.
Returns 422 if any component's status directly contradicts its audit flags.
security:
- ApiKeyAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/AccessibilityProfile"
responses:
"200":
description: Accessibility profile updated
content:
application/json:
schema:
$ref: "#/components/schemas/AccessibilityProfile"
"400":
description: Validation error
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
"401":
description: Missing or invalid API key
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"404":
description: Place not found
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"422":
description: Accessibility data contains conflicts
content:
application/json:
schema:
$ref: "#/components/schemas/ConflictError"
# ── Auth ─────────────────────────────────────────────────────────────────
/auth/register:
post:
operationId: register
summary: Register and receive an API key
description: |
Creates an API key for the given email address.
The raw key is returned exactly once — store it immediately.
Rate-limited to 3 registrations per IP per hour.
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/RegisterRequest"
responses:
"201":
description: API key created
content:
application/json:
schema:
$ref: "#/components/schemas/RegisterResponse"
"400":
description: Invalid email
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationError"
"409":
description: Active key already exists for this email
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
"429":
description: Rate limit exceeded
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/auth/keys:
delete:
operationId: revokeKey
summary: Revoke the authenticated API key
description: Revokes the key used to authenticate this request.
security:
- ApiKeyAuth: []
responses:
"204":
description: Key revoked
"401":
description: Missing or invalid API key
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"