-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi-specification.yaml
More file actions
863 lines (819 loc) · 25.3 KB
/
Copy pathapi-specification.yaml
File metadata and controls
863 lines (819 loc) · 25.3 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
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
openapi: 3.1.0
info:
title: AccountabilityAtlas User Service API
version: 1.0.0
description: |
User identity and access management for AccountabilityAtlas.
## Access Patterns
- **Public (via Gateway)**: `https://api.accountabilityatlas.com/api/v1/auth/...`
- **Internal (service-to-service)**: `http://user-service:8081/auth/...`
The API Gateway adds the `/api/v1` prefix for public requests.
Services calling directly use paths without the version prefix.
contact:
name: AccountabilityAtlas Team
license:
name: MIT
identifier: MIT
servers:
- url: http://localhost:8081
description: Local development (direct)
- url: http://user-service:8081
description: Internal service mesh (Kubernetes/ECS service discovery)
- url: https://api.accountabilityatlas.com/api/v1
description: Production (via API Gateway - adds /api/v1 prefix)
tags:
- name: Authentication
description: Registration, login, logout, and token management
- name: Users
description: User profile operations
- name: Admin
description: Administrative operations (trust tier management)
security:
- bearerAuth: []
paths:
/auth/register:
post:
operationId: registerUser
summary: Create a new user account
description: |
Register a new user with email and password. Returns the created user
profile and authentication tokens. New users start with trust tier NEW.
tags: [Authentication]
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RegisterRequest'
responses:
'201':
description: Account created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/RegisterResponse'
example:
user:
id: "550e8400-e29b-41d4-a716-446655440000"
email: "auditor@example.com"
emailVerified: false
displayName: "FirstAmendmentAuditor"
avatarUrl: null
trustTier: "NEW"
createdAt: "2025-02-01T12:00:00Z"
tokens:
accessToken: "eyJhbGciOiJIUzI1NiIs..."
refreshToken: "dGhpcyBpcyBhIHJlZnJl..."
expiresIn: 3600
tokenType: "Bearer"
'400':
$ref: '#/components/responses/BadRequest'
'409':
description: Email already registered
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: "EMAIL_EXISTS"
message: "An account with this email already exists"
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
'429':
$ref: '#/components/responses/RateLimited'
/auth/login:
post:
operationId: loginUser
summary: Authenticate with email and password
description: |
Authenticate an existing user and receive access/refresh tokens.
Failed attempts are rate-limited to prevent brute force attacks.
tags: [Authentication]
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/LoginRequest'
responses:
'200':
description: Login successful
content:
application/json:
schema:
$ref: '#/components/schemas/LoginResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
description: Invalid credentials
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: "INVALID_CREDENTIALS"
message: "Email or password is incorrect"
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
'429':
$ref: '#/components/responses/RateLimited'
/auth/oauth/{provider}:
post:
operationId: oauthLogin
summary: Authenticate via OAuth provider
description: |
Exchange an OAuth ID token for AccountabilityAtlas tokens.
Creates a new account if the OAuth identity is not yet linked.
tags: [Authentication]
security: []
parameters:
- name: provider
in: path
required: true
schema:
$ref: '#/components/schemas/OAuthProvider'
description: OAuth provider (GOOGLE or APPLE)
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/OAuthRequest'
responses:
'200':
description: Authentication successful (existing user)
content:
application/json:
schema:
$ref: '#/components/schemas/OAuthResponse'
'201':
description: Authentication successful (new account created)
content:
application/json:
schema:
$ref: '#/components/schemas/OAuthResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
description: Invalid or expired OAuth token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: "INVALID_OAUTH_TOKEN"
message: "The OAuth token is invalid or has expired"
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
/auth/refresh:
post:
operationId: refreshTokens
summary: Refresh access token
description: |
Exchange a valid refresh token for a new token pair.
The refresh token is rotated on each use (one-time use).
tags: [Authentication]
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RefreshRequest'
responses:
'200':
description: Tokens refreshed successfully
content:
application/json:
schema:
$ref: '#/components/schemas/RefreshResponse'
'401':
description: Invalid, expired, or revoked refresh token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: "INVALID_REFRESH_TOKEN"
message: "Refresh token is invalid, expired, or has been revoked"
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
/auth/logout:
post:
operationId: logoutUser
summary: Invalidate current session
description: |
Revoke the current refresh token, ending the session.
The access token remains valid until expiry but the refresh token
can no longer be used.
tags: [Authentication]
responses:
'204':
description: Logout successful (no content)
'401':
$ref: '#/components/responses/Unauthorized'
/auth/password/reset:
post:
operationId: requestPasswordReset
summary: Request password reset email
description: |
Initiates password reset flow by sending a reset link to the user's email.
Always returns 202 regardless of whether the email exists (prevents enumeration).
Reset tokens expire after 24 hours.
tags: [Authentication]
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PasswordResetRequest'
responses:
'202':
description: Reset email queued (if account exists)
content:
application/json:
schema:
type: object
properties:
message:
type: string
example:
message: "If an account exists with this email, a reset link has been sent"
'400':
$ref: '#/components/responses/BadRequest'
'429':
$ref: '#/components/responses/RateLimited'
/auth/password/reset/confirm:
post:
operationId: confirmPasswordReset
summary: Complete password reset
description: |
Validates the reset token and sets a new password.
Token is single-use and invalidated after successful reset.
tags: [Authentication]
security: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PasswordResetConfirmRequest'
responses:
'200':
description: Password reset successful
content:
application/json:
schema:
type: object
properties:
message:
type: string
example:
message: "Password has been reset successfully"
'400':
description: Invalid or expired reset token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: "INVALID_RESET_TOKEN"
message: "Reset token is invalid, expired, or has already been used"
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
'429':
$ref: '#/components/responses/RateLimited'
/users/me:
get:
operationId: getCurrentUser
summary: Get current user profile
description: Returns the authenticated user's full profile including email.
tags: [Users]
responses:
'200':
description: User profile retrieved
content:
application/json:
schema:
$ref: '#/components/schemas/User'
example:
id: "550e8400-e29b-41d4-a716-446655440000"
email: "auditor@example.com"
emailVerified: true
displayName: "FirstAmendmentAuditor"
avatarUrl: "https://example.com/avatar.jpg"
trustTier: "TRUSTED"
createdAt: "2024-06-15T12:00:00Z"
'401':
$ref: '#/components/responses/Unauthorized'
put:
operationId: updateCurrentUser
summary: Update current user profile
description: |
Update the authenticated user's profile. Only provided fields are updated.
Email changes require re-verification.
tags: [Users]
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateUserRequest'
responses:
'200':
description: Profile updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
description: Email already in use by another account
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: "EMAIL_EXISTS"
message: "This email is already associated with another account"
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
/users/{id}:
get:
operationId: getUserById
summary: Get user public profile
description: |
Returns a user's public profile. Privacy settings control which sections
are visible. Display name and avatar are always public. Social links
visibility depends on the user's privacy settings and the viewer's auth status.
tags: [Users]
security: []
parameters:
- name: id
in: path
required: true
schema:
type: string
format: uuid
description: User ID
responses:
'200':
description: Public profile retrieved
content:
application/json:
schema:
$ref: '#/components/schemas/UserPublicProfile'
example:
id: "550e8400-e29b-41d4-a716-446655440000"
displayName: "FirstAmendmentAuditor"
avatarUrl: "https://example.com/avatar.jpg"
trustTier: "TRUSTED"
stats:
submissionCount: 42
approvedCount: 38
createdAt: "2024-06-15T12:00:00Z"
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/users/{id}/trust-tier:
put:
operationId: updateUserTrustTier
summary: Update user trust tier (Admin only)
description: |
Manually set a user's trust tier. Only available to ADMIN users.
Used for promoting users to MODERATOR or demoting for abuse.
tags: [Admin]
parameters:
- name: id
in: path
required: true
schema:
type: string
format: uuid
description: User ID to update
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateTrustTierRequest'
responses:
'200':
description: Trust tier updated
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: |
JWT access token. Obtain via `/auth/login` or `/auth/oauth/{provider}`.
Tokens expire after 1 hour. Use `/auth/refresh` with refresh token to obtain new access token.
schemas:
# Enums
TrustTier:
type: string
enum: [NEW, TRUSTED, MODERATOR, ADMIN]
description: |
User trust level determining content moderation requirements:
- `NEW`: All submissions require moderation review
- `TRUSTED`: Submissions auto-approved (earned after 30 days + 10 approved submissions)
- `MODERATOR`: Can review and approve/reject content
- `ADMIN`: Full system access including trust tier management
OAuthProvider:
type: string
enum: [GOOGLE, APPLE]
# Core domain objects
User:
type: object
required: [id, email, displayName, trustTier, createdAt]
properties:
id:
type: string
format: uuid
email:
type: string
format: email
maxLength: 255
emailVerified:
type: boolean
default: false
displayName:
type: string
minLength: 2
maxLength: 100
avatarUrl:
type: string
format: uri
maxLength: 500
nullable: true
trustTier:
$ref: '#/components/schemas/TrustTier'
socialLinks:
$ref: '#/components/schemas/SocialLinks'
privacySettings:
$ref: '#/components/schemas/PrivacySettings'
avatarSources:
$ref: '#/components/schemas/AvatarSources'
createdAt:
type: string
format: date-time
description: Account creation timestamp
UserPublicProfile:
type: object
description: Public-facing user info (no email, no sensitive data)
required: [id, displayName, createdAt]
properties:
id:
type: string
format: uuid
displayName:
type: string
maxLength: 100
avatarUrl:
type: string
format: uri
maxLength: 500
nullable: true
trustTier:
$ref: '#/components/schemas/TrustTier'
memberSince:
type: string
format: date-time
approvedVideoCount:
type: integer
minimum: 0
socialLinks:
$ref: '#/components/schemas/SocialLinks'
createdAt:
type: string
format: date-time
SocialLinks:
type: object
properties:
youtube:
type: string
maxLength: 100
nullable: true
facebook:
type: string
maxLength: 100
nullable: true
instagram:
type: string
maxLength: 50
nullable: true
tiktok:
type: string
maxLength: 50
nullable: true
xTwitter:
type: string
maxLength: 50
nullable: true
bluesky:
type: string
maxLength: 100
nullable: true
PrivacySettings:
type: object
properties:
socialLinksVisibility:
type: string
enum: [PUBLIC, REGISTERED]
default: REGISTERED
submissionsVisibility:
type: string
enum: [PUBLIC, REGISTERED]
default: PUBLIC
AvatarSources:
type: object
properties:
gravatar:
type: string
format: uri
nullable: true
youtube:
type: string
format: uri
nullable: true
TokenPair:
type: object
required: [accessToken, refreshToken, expiresIn]
properties:
accessToken:
type: string
description: JWT access token (1 hour expiry)
refreshToken:
type: string
description: Opaque refresh token (30 day expiry, rotated on use)
expiresIn:
type: integer
description: Access token lifetime in seconds
examples: [3600]
tokenType:
type: string
default: Bearer
# Authentication requests/responses
RegisterRequest:
type: object
required: [email, password, displayName]
properties:
email:
type: string
format: email
maxLength: 255
password:
type: string
format: password
minLength: 8
maxLength: 128
description: Minimum 8 chars, must include uppercase, lowercase, and number
displayName:
type: string
minLength: 2
maxLength: 100
examples:
- email: "auditor@example.com"
password: "SecurePass123"
displayName: "FirstAmendmentAuditor"
RegisterResponse:
type: object
required: [user, tokens]
properties:
user:
$ref: '#/components/schemas/User'
tokens:
$ref: '#/components/schemas/TokenPair'
LoginRequest:
type: object
required: [email, password]
properties:
email:
type: string
format: email
maxLength: 255
password:
type: string
format: password
maxLength: 128
examples:
- email: "auditor@example.com"
password: "SecurePass123"
LoginResponse:
type: object
required: [user, tokens]
properties:
user:
$ref: '#/components/schemas/User'
tokens:
$ref: '#/components/schemas/TokenPair'
OAuthRequest:
type: object
required: [idToken]
properties:
idToken:
type: string
maxLength: 4096
description: ID token from OAuth provider (Google/Apple)
nonce:
type: string
maxLength: 255
description: Nonce for token validation (required for Apple)
examples:
- idToken: "eyJhbGciOiJSUzI1NiIsInR5cCI6Ikp..."
OAuthResponse:
type: object
required: [user, tokens, isNewUser]
properties:
user:
$ref: '#/components/schemas/User'
tokens:
$ref: '#/components/schemas/TokenPair'
isNewUser:
type: boolean
description: True if this OAuth login created a new account
RefreshRequest:
type: object
required: [refreshToken]
properties:
refreshToken:
type: string
maxLength: 512
examples:
- refreshToken: "dGhpcyBpcyBhIHJlZnJlc2ggdG9rZW4..."
RefreshResponse:
type: object
required: [tokens]
properties:
tokens:
$ref: '#/components/schemas/TokenPair'
description: New token pair (refresh token is rotated)
PasswordResetRequest:
type: object
required: [email]
properties:
email:
type: string
format: email
maxLength: 255
examples:
- email: "auditor@example.com"
PasswordResetConfirmRequest:
type: object
required: [token, newPassword]
properties:
token:
type: string
maxLength: 255
description: Reset token from email link
newPassword:
type: string
format: password
minLength: 8
maxLength: 128
examples:
- token: "abc123resettoken"
newPassword: "NewSecurePass456"
# User update requests
UpdateUserRequest:
type: object
properties:
email:
type: string
format: email
maxLength: 255
description: New email (requires re-verification)
displayName:
type: string
minLength: 2
maxLength: 100
avatarUrl:
type: string
maxLength: 500
nullable: true
description: URL to avatar image
socialLinks:
$ref: '#/components/schemas/SocialLinks'
privacySettings:
$ref: '#/components/schemas/PrivacySettings'
examples:
- displayName: "UpdatedDisplayName"
avatarUrl: "https://example.com/new-avatar.jpg"
UpdateTrustTierRequest:
type: object
required: [trustTier]
properties:
trustTier:
$ref: '#/components/schemas/TrustTier'
reason:
type: string
maxLength: 500
description: Reason for the change (logged for audit)
examples:
- trustTier: "MODERATOR"
reason: "Promoted for excellent contribution history"
# Error schemas
Error:
type: object
required: [code, message]
properties:
code:
type: string
description: Machine-readable error code
examples: ["VALIDATION_ERROR", "UNAUTHORIZED", "NOT_FOUND"]
message:
type: string
description: Human-readable error message
examples: ["Email address is already registered"]
details:
type: array
description: Field-level validation errors (when applicable)
items:
$ref: '#/components/schemas/FieldError'
traceId:
type: string
format: uuid
description: Correlation ID for debugging (from X-Ray)
FieldError:
type: object
required: [field, message]
properties:
field:
type: string
examples: ["email", "password"]
message:
type: string
examples: ["must be a valid email address"]
responses:
BadRequest:
description: Invalid request parameters or body
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: VALIDATION_ERROR
message: Request validation failed
details:
- field: email
message: must be a valid email address
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Unauthorized:
description: Missing or invalid authentication token
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: UNAUTHORIZED
message: Access token is missing or invalid
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Forbidden:
description: Authenticated but lacking required permissions
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: FORBIDDEN
message: You do not have permission to perform this action
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
NotFound:
description: Requested resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: NOT_FOUND
message: User not found
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
RateLimited:
description: Too many requests
headers:
Retry-After:
schema:
type: integer
description: Seconds until rate limit resets
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
code: RATE_LIMITED
message: Too many requests. Please retry after 60 seconds.
traceId: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"