-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1595 lines (1497 loc) · 47.4 KB
/
Copy pathopenapi.yaml
File metadata and controls
1595 lines (1497 loc) · 47.4 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
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: Spotter API
version: 1.0.0
description: |
Spotter is a personal music library management app built with Go, chi router, templ templates, and HTMX.
It is primarily a server-rendered HTML application. Most endpoints return HTML fragments for HTMX partial
page updates. A small number of endpoints return JSON for polling or event-driven UI patterns.
Authentication is handled via a JWT cookie (`spotter_token`). All protected routes require this cookie.
Login is validated against a Navidrome instance.
servers:
- url: http://localhost:8080
description: Development
components:
securitySchemes:
cookieAuth:
type: apiKey
in: cookie
name: spotter_token
schemas:
GenreSuggestions:
type: object
properties:
suggestions:
type: array
items:
type: string
description: List of genre suggestions from the user's library
required:
- suggestions
ArtistSuggestions:
type: object
properties:
suggestions:
type: array
items:
type: string
description: List of artist suggestions from the user's library
required:
- suggestions
PlaylistSyncStatus:
type: object
properties:
synced_count:
type: integer
description: Number of tracks successfully synced
error_count:
type: integer
description: Number of tracks that failed to sync
total:
type: integer
description: Total number of tracks in the playlist
status:
type: string
description: Overall sync status (e.g. "syncing", "complete", "error")
required:
- synced_count
- error_count
- total
- status
PlaylistSyncProgress:
type: object
properties:
percent:
type: number
format: float
description: Completion percentage (0-100)
synced:
type: integer
description: Number of tracks synced so far
total:
type: integer
description: Total number of tracks to sync
required:
- percent
- synced
- total
SSEEvent:
type: object
description: Server-Sent Event payload
properties:
type:
type: string
description: Event type identifier
payload:
type: object
description: Event-specific payload data
additionalProperties: true
required:
- type
- payload
responses:
HTMLFragment:
description: HTML fragment for HTMX partial page update
content:
text/html:
schema:
type: string
HTMLPage:
description: Full HTML page response
content:
text/html:
schema:
type: string
ImagePNG:
description: PNG image binary
content:
image/png:
schema:
type: string
format: binary
parameters:
PageParam:
name: page
in: query
schema:
type: integer
default: 1
minimum: 1
description: Page number for pagination
PerPageParam:
name: per_page
in: query
schema:
type: integer
default: 25
minimum: 1
maximum: 100
description: Number of items per page
SearchParam:
name: q
in: query
schema:
type: string
description: Search query string
security: []
tags:
- name: Authentication
description: Login, logout, and OAuth provider flows
- name: Home
description: Home dashboard and playlist generation
- name: Library
description: Music library browsing — artists, albums, and tracks
- name: Playlists
description: Playlist management and sync operations
- name: Vibes
description: DJ profiles and mixtape management
- name: Preferences
description: User preferences and provider configuration
- name: Tasks
description: Background task management
- name: Events
description: Server-Sent Events stream
paths:
# ---------------------------------------------------------------------------
# Authentication
# ---------------------------------------------------------------------------
/auth/login:
get:
tags: [Authentication]
summary: Login page
description: Returns the HTML login form. No authentication required.
operationId: getLoginPage
responses:
'200':
$ref: '#/components/responses/HTMLPage'
/login:
post:
tags: [Authentication]
summary: Submit login credentials
description: |
Authenticates the user against a Navidrome instance. On success, sets the `spotter_token`
cookie and redirects to the home page. On failure, returns the login form with an error message.
operationId: postLogin
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
username:
type: string
description: Navidrome username
password:
type: string
format: password
description: Navidrome password
required:
- username
- password
responses:
'302':
description: Redirect to home page on successful authentication
headers:
Location:
schema:
type: string
example: /
Set-Cookie:
schema:
type: string
example: spotter_token=<jwt>; Path=/; HttpOnly; SameSite=Lax
'200':
description: Login form with error message on authentication failure
content:
text/html:
schema:
type: string
/logout:
get:
tags: [Authentication]
summary: Log out
description: Clears the session cookie and redirects to the login page.
operationId: getLogout
responses:
'302':
description: Redirect to login page
headers:
Location:
schema:
type: string
example: /auth/login
/auth/spotify/login:
get:
tags: [Authentication]
summary: Initiate Spotify OAuth
description: Redirects the user to Spotify's OAuth authorization page.
operationId: getSpotifyLogin
security:
- cookieAuth: []
responses:
'302':
description: Redirect to Spotify OAuth authorization URL
headers:
Location:
schema:
type: string
/auth/spotify/callback:
get:
tags: [Authentication]
summary: Spotify OAuth callback
description: Handles the OAuth callback from Spotify. Exchanges the authorization code for tokens and stores the Spotify integration credentials.
operationId: getSpotifyCallback
parameters:
- name: code
in: query
required: true
schema:
type: string
description: Authorization code from Spotify
- name: state
in: query
required: true
schema:
type: string
description: CSRF state token
responses:
'302':
description: Redirect to preferences page on success or error
headers:
Location:
schema:
type: string
/auth/lastfm/login:
get:
tags: [Authentication]
summary: Initiate Last.fm OAuth
description: Redirects the user to Last.fm's OAuth authorization page.
operationId: getLastfmLogin
security:
- cookieAuth: []
responses:
'302':
description: Redirect to Last.fm OAuth authorization URL
headers:
Location:
schema:
type: string
/auth/lastfm/callback:
get:
tags: [Authentication]
summary: Last.fm OAuth callback
description: Handles the OAuth callback from Last.fm. Exchanges the token for a session key and stores the Last.fm integration credentials.
operationId: getLastfmCallback
parameters:
- name: token
in: query
required: true
schema:
type: string
description: Authentication token from Last.fm
responses:
'302':
description: Redirect to preferences page on success or error
headers:
Location:
schema:
type: string
# ---------------------------------------------------------------------------
# Home
# ---------------------------------------------------------------------------
/:
get:
tags: [Home]
summary: Home dashboard
description: Returns the main application dashboard showing recent activity and library overview.
operationId: getHome
security:
- cookieAuth: []
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
/generate:
post:
tags: [Home]
summary: Generate a playlist
description: Generates a new playlist using AI based on the provided prompt.
operationId: postGenerate
security:
- cookieAuth: []
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
prompt:
type: string
description: Natural language prompt describing the desired playlist
required:
- prompt
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
# ---------------------------------------------------------------------------
# Events (SSE)
# ---------------------------------------------------------------------------
/events:
get:
tags: [Events]
summary: Server-Sent Events stream
description: |
Establishes a persistent Server-Sent Events connection for real-time updates.
Each event contains a JSON payload with a `type` field identifying the event category
and a `payload` object with event-specific data.
Common event types include task progress updates, sync status changes, and enrichment completion notifications.
operationId: getEvents
security:
- cookieAuth: []
responses:
'200':
description: SSE stream
content:
text/event-stream:
schema:
type: string
description: |
Newline-delimited SSE messages. Each message has the format:
`data: {"type": "<event-type>", "payload": {...}}`
# ---------------------------------------------------------------------------
# Library - Artists
# ---------------------------------------------------------------------------
/library/artists:
get:
tags: [Library]
summary: List artists
description: Returns a paginated, searchable list of artists in the library.
operationId: listArtists
security:
- cookieAuth: []
parameters:
- $ref: '#/components/parameters/PageParam'
- $ref: '#/components/parameters/PerPageParam'
- $ref: '#/components/parameters/SearchParam'
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
/library/artist/{id}:
get:
tags: [Library]
summary: Get artist detail
description: Returns the detail page for a specific artist including biography, albums, and similar artists.
operationId: getArtist
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Artist ID
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
'404':
description: Artist not found
/library/artist/{id}.png:
get:
tags: [Library]
summary: Get artist image
description: Returns the artist's thumbnail image. Requires authentication.
operationId: getArtistImage
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Artist ID
responses:
'200':
$ref: '#/components/responses/ImagePNG'
'302':
description: Redirect to login if unauthenticated
'404':
description: Image not found
/library/artist/{id}/regenerate-ai:
post:
tags: [Library]
summary: Regenerate AI metadata for artist
description: Triggers AI regeneration of the artist's biography and metadata. Returns an HTML fragment with the updated content.
operationId: regenerateArtistAI
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Artist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Artist not found
/library/artist/{id}/find-similar:
post:
tags: [Library]
summary: Find similar artists
description: Triggers a search for artists similar to the specified artist and returns an HTML fragment with results.
operationId: findSimilarArtists
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Artist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Artist not found
/library/artist/{id}/create-mixtape:
post:
tags: [Library]
summary: Create mixtape from artist
description: Creates a new mixtape seeded with tracks from the specified artist and returns an HTML fragment.
operationId: createMixtapeFromArtist
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Artist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Artist not found
# ---------------------------------------------------------------------------
# Library - Albums
# ---------------------------------------------------------------------------
/library/albums:
get:
tags: [Library]
summary: List albums
description: Returns a paginated, searchable list of albums in the library.
operationId: listAlbums
security:
- cookieAuth: []
parameters:
- $ref: '#/components/parameters/PageParam'
- $ref: '#/components/parameters/PerPageParam'
- $ref: '#/components/parameters/SearchParam'
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
/library/album/{id}:
get:
tags: [Library]
summary: Get album detail
description: Returns the detail page for a specific album including tracklist and metadata.
operationId: getAlbum
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Album ID
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
'404':
description: Album not found
/library/album/{id}.png:
get:
tags: [Library]
summary: Get album image
description: Returns the album's cover art image. Requires authentication.
operationId: getAlbumImage
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Album ID
responses:
'200':
$ref: '#/components/responses/ImagePNG'
'302':
description: Redirect to login if unauthenticated
'404':
description: Image not found
/library/album/{id}/regenerate-ai:
post:
tags: [Library]
summary: Regenerate AI metadata for album
description: Triggers AI regeneration of the album's description and metadata. Returns an HTML fragment with the updated content.
operationId: regenerateAlbumAI
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Album ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Album not found
/library/album/{id}/create-mixtape:
post:
tags: [Library]
summary: Create mixtape from album
description: Creates a new mixtape seeded with tracks from the specified album and returns an HTML fragment.
operationId: createMixtapeFromAlbum
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Album ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Album not found
# ---------------------------------------------------------------------------
# Library - Tracks
# ---------------------------------------------------------------------------
/library/tracks:
get:
tags: [Library]
summary: List tracks
description: Returns a paginated, searchable list of tracks in the library.
operationId: listTracks
security:
- cookieAuth: []
parameters:
- $ref: '#/components/parameters/PageParam'
- $ref: '#/components/parameters/PerPageParam'
- $ref: '#/components/parameters/SearchParam'
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
/library/track/{id}:
get:
tags: [Library]
summary: Get track detail
description: Returns the detail page for a specific track.
operationId: getTrack
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Track ID
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
'404':
description: Track not found
/library/track/{id}/regenerate-ai:
post:
tags: [Library]
summary: Regenerate AI metadata for track
description: Triggers AI regeneration of the track's metadata and annotations. Returns an HTML fragment with the updated content.
operationId: regenerateTrackAI
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Track ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Track not found
# ---------------------------------------------------------------------------
# Recent
# ---------------------------------------------------------------------------
/recent:
get:
tags: [Library]
summary: Recent listens
description: Returns a paginated list of recently played tracks, optionally filtered by provider.
operationId: getRecent
security:
- cookieAuth: []
parameters:
- $ref: '#/components/parameters/PageParam'
- $ref: '#/components/parameters/PerPageParam'
- $ref: '#/components/parameters/SearchParam'
- name: provider
in: query
schema:
type: string
enum: [navidrome, lastfm, spotify]
description: Filter recent listens by provider
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
# ---------------------------------------------------------------------------
# Playlists
# ---------------------------------------------------------------------------
/playlists:
get:
tags: [Playlists]
summary: List playlists
description: Returns a paginated list of playlists.
operationId: listPlaylists
security:
- cookieAuth: []
parameters:
- $ref: '#/components/parameters/PageParam'
- $ref: '#/components/parameters/PerPageParam'
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
/playlists/{id}:
get:
tags: [Playlists]
summary: Get playlist detail
description: Returns the detail page for a specific playlist including tracklist and sync status.
operationId: getPlaylist
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/sync-status:
get:
tags: [Playlists]
summary: Get playlist sync status
description: Returns the current sync status for a playlist as JSON. Used for polling during sync operations.
operationId: getPlaylistSyncStatus
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
description: Playlist sync status
content:
application/json:
schema:
$ref: '#/components/schemas/PlaylistSyncStatus'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/sync-progress:
get:
tags: [Playlists]
summary: Get playlist sync progress
description: Returns the current sync progress percentage for a playlist. Used for progress bar updates.
operationId: getPlaylistSyncProgress
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
description: Playlist sync progress
content:
application/json:
schema:
$ref: '#/components/schemas/PlaylistSyncProgress'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/toggle-sync:
post:
tags: [Playlists]
summary: Toggle playlist sync
description: Enables or disables automatic syncing for the playlist. Returns an HTML fragment with the updated sync toggle control.
operationId: togglePlaylistSync
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/sync:
post:
tags: [Playlists]
summary: Sync playlist
description: Triggers an immediate sync of the playlist to Navidrome. Returns an HTML fragment with sync progress.
operationId: syncPlaylist
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/rebuild-sync:
post:
tags: [Playlists]
summary: Rebuild playlist sync
description: Clears existing sync state and performs a full resync of the playlist. Returns an HTML fragment with progress.
operationId: rebuildPlaylistSync
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/ai/generate-metadata:
post:
tags: [Playlists]
summary: Generate AI metadata for playlist
description: Uses AI to generate a title, description, and other metadata for the playlist. Returns an HTML fragment.
operationId: generatePlaylistMetadata
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
/playlists/{id}/ai/generate-artwork:
post:
tags: [Playlists]
summary: Generate AI artwork for playlist
description: Uses AI to generate cover artwork for the playlist. Returns an HTML fragment with the new artwork.
operationId: generatePlaylistArtwork
security:
- cookieAuth: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Playlist ID
responses:
'200':
$ref: '#/components/responses/HTMLFragment'
'302':
description: Redirect to login if unauthenticated
'404':
description: Playlist not found
# ---------------------------------------------------------------------------
# Vibes - DJs
# ---------------------------------------------------------------------------
/vibes/djs:
get:
tags: [Vibes]
summary: List DJ profiles
description: Returns the DJ profiles page listing all configured virtual DJ personalities.
operationId: listDJs
security:
- cookieAuth: []
responses:
'200':
$ref: '#/components/responses/HTMLPage'
'302':
description: Redirect to login if unauthenticated
post:
tags: [Vibes]
summary: Create DJ profile
description: Creates a new DJ profile with the specified name, genres, and style prompt. Returns an HTML fragment.
operationId: createDJ
security:
- cookieAuth: []
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
name:
type: string
description: Display name for the DJ profile
genres:
type: array
items:
type: string
description: List of genres this DJ specializes in
style_prompt:
type: string
description: Natural language description of the DJ's style and preferences