forked from KillrVideo/kv-be-python-fastapi-dataapi-table
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkillrvideo_openapi.yaml
More file actions
2150 lines (2143 loc) · 56.9 KB
/
killrvideo_openapi.yaml
File metadata and controls
2150 lines (2143 loc) · 56.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
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.1.0
info:
title: KillrVideo v2 - Monolith Backend
version: 2.0.0-alpha-local
paths:
/api/v1/users/register:
post:
tags:
- Users
summary: Register new account
operationId: register_user_api_v1_users_register_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UserCreateRequest'
required: true
responses:
'201':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/UserCreateResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/users/login:
post:
tags:
- Users
summary: "Login \u2192 JWT"
operationId: login_for_access_token_api_v1_users_login_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UserLoginRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/UserLoginResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/users/me:
get:
tags:
- Users
summary: Current user profile
operationId: read_users_me_api_v1_users_me_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/User'
security:
- OAuth2PasswordBearer: []
put:
tags:
- Users
summary: Update profile
operationId: update_users_me_api_v1_users_me_put
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UserProfileUpdateRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- OAuth2PasswordBearer: []
/api/v1/users/{user_id_path}:
get:
tags:
- Users
summary: Public user profile by ID
description: Return basic user info (firstname, lastname, email, etc.) for a
given UUID.
operationId: get_user_by_id_api_v1_users__user_id_path__get
parameters:
- name: user_id_path
in: path
required: true
schema:
type: string
format: uuid
title: User Id Path
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos:
post:
tags:
- Videos
summary: Submit YouTube URL (async processing)
description: 'Submit a new YouTube video for asynchronous processing.
Only users with the *creator* or *moderator* role are authorized.'
operationId: submit_video_api_v1_videos_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/VideoSubmitRequest'
required: true
responses:
'202':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/VideoDetailResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- OAuth2PasswordBearer: []
/api/v1/videos/id/{video_id_path}/status:
get:
tags:
- Videos
summary: Processing status
description: 'Return processing status for the given video.
Accessible to the video owner (creator) or any moderator.'
operationId: get_video_status_api_v1_videos_id__video_id_path__status_get
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/VideoStatusResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/id/{video_id_path}:
get:
tags:
- Videos
summary: Video details
description: Public endpoint returning full video metadata.
operationId: get_video_details_api_v1_videos_id__video_id_path__get
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/VideoDetailResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
put:
tags:
- Videos
summary: Update video details
description: Allow owner or moderator to update title/desc/tags.
operationId: update_video_api_v1_videos_id__video_id_path__put
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/VideoUpdateRequest'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/VideoDetailResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/id/{video_id_path}/view:
post:
tags:
- Videos
summary: Record playback view
description: "Increment a video's view count.\n\nBehaviour nuances (aligned\
\ with test-suite expectations):\n\n\u2022 If the video does **not exist**\
\ \u2192 404 for everyone.\n\u2022 If the video exists but is **not READY**:\n\
\ \u2013 **Unauthenticated** callers receive 404 (video hidden).\n \u2013\
\ Authenticated *viewer*-level callers receive 403.\n \u2013 The owner\
\ (*creator*) or any *moderator* can still access \u2192 404 to\n remain\
\ consistent with current spec (not explicitly tested yet).\n\u2022 A READY\
\ video is public: anyone can record a view (204)."
operationId: record_view_api_v1_videos_id__video_id_path__view_post
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
responses:
'204':
description: Successful Response
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/latest:
get:
tags:
- Videos
summary: Latest videos
operationId: get_latest_videos_api_v1_videos_latest_get
parameters:
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/by-tag/{tag_name}:
get:
tags:
- Videos
summary: Videos by tag
operationId: get_videos_by_tag_api_v1_videos_by_tag__tag_name__get
parameters:
- name: tag_name
in: path
required: true
schema:
type: string
title: Tag Name
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/by-uploader/{uploader_id_path}:
get:
tags:
- Videos
summary: Videos by uploader
operationId: get_videos_by_uploader_api_v1_videos_by_uploader__uploader_id_path__get
parameters:
- name: uploader_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Uploader Id Path
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/id/{video_id_path}/rating:
post:
tags:
- Videos
summary: Submit rating (1-5)
operationId: submit_rating_api_v1_videos_id__video_id_path__rating_post
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/VideoRatingRequest'
responses:
'204':
description: Successful Response
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
get:
tags:
- Videos
summary: Get rating summary
operationId: get_rating_summary_endpoint_api_v1_videos_id__video_id_path__rating_get
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/VideoRatingSummary'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/id/{video_id_path}/related:
get:
tags:
- Videos
summary: Content-based related list
description: 'Return a list of videos related to the given video.
The underlying implementation is currently stubbed out and will return the
latest videos (excluding the source video) with a random relevance score.'
operationId: get_related_videos_for_video_api_v1_videos_id__video_id_path__related_get
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
- name: limit
in: query
required: false
schema:
type: integer
maximum: 20
minimum: 1
description: Max number of related videos
default: 5
title: Limit
description: Max number of related videos
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RecommendationItem'
title: Response Get Related Videos For Video Api V1 Videos Id Video
Id Path Related Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/trending:
get:
tags:
- Videos
summary: Trending videos (top by views)
description: "Return the *trending* list \u2013 most viewed videos in the selected\
\ window."
operationId: get_trending_videos_api_v1_videos_trending_get
parameters:
- name: intervalDays
in: query
required: false
schema:
type: integer
maximum: 30
minimum: 1
description: Time window in days to consider (1, 7, or 30)
examples:
one:
summary: 1 day
value: 1
default: 1
title: Intervaldays
description: Time window in days to consider (1, 7, or 30)
- name: limit
in: query
required: false
schema:
type: integer
maximum: 10
minimum: 1
description: Maximum number of records to return (max 10)
default: 10
title: Limit
description: Maximum number of records to return (max 10)
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/VideoSummary'
title: Response Get Trending Videos Api V1 Videos Trending Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/preview:
post:
tags:
- Videos
summary: Preview YouTube URL (title only)
description: "Return the title of the supplied YouTube video.\n\nNo authentication\
\ required \u2013 the client uses this to pre-fill the *Name*\nfield when\
\ submitting a new video. All heavy-lifting stays backend-side so\nwe avoid\
\ CORS issues and leaking any API keys."
operationId: preview_youtube_video_api_v1_videos_preview_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/VideoSubmitRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/VideoPreviewResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/search/videos:
get:
tags:
- Search
summary: Keyword video search
operationId: search_videos_api_v1_search_videos_get
parameters:
- name: query
in: query
required: true
schema:
type: string
minLength: 1
description: Search query term
title: Query
description: Search query term
- name: mode
in: query
required: false
schema:
enum:
- semantic
- keyword
type: string
description: 'Search mode: semantic or keyword'
default: keyword
title: Mode
description: 'Search mode: semantic or keyword'
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/search/tags/suggest:
get:
tags:
- Search
summary: Autocomplete tags
operationId: suggest_video_tags_api_v1_search_tags_suggest_get
parameters:
- name: query
in: query
required: true
schema:
type: string
minLength: 1
description: Partial tag to search for
title: Query
description: Partial tag to search for
- name: limit
in: query
required: false
schema:
type: integer
maximum: 25
minimum: 1
description: Maximum number of suggestions
default: 10
title: Limit
description: Maximum number of suggestions
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TagSuggestion'
title: Response Suggest Video Tags Api V1 Search Tags Suggest Get
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/{video_id_path}/comments:
post:
tags:
- Comments & Ratings
summary: Add comment to video
description: Endpoint for viewers to add a comment to a READY video.
operationId: post_comment_to_video_api_v1_videos__video_id_path__comments_post
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CommentCreateRequest'
responses:
'201':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CommentResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
get:
tags:
- Comments & Ratings
summary: List comments for video
operationId: list_comments_video_api_v1_videos__video_id_path__comments_get
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/users/{user_id_path}/comments:
get:
tags:
- Comments & Ratings
summary: List comments by user
operationId: list_comments_user_api_v1_users__user_id_path__comments_get
parameters:
- name: user_id_path
in: path
required: true
schema:
type: string
format: uuid
title: User Id Path
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/videos/{video_id_path}/ratings:
post:
tags:
- Comments & Ratings
summary: Rate a video (create or update)
description: Upsert a rating (1-5) for the specified video by the current viewer.
operationId: post_rating_video_api_v1_videos__video_id_path__ratings_post
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RatingCreateOrUpdateRequest'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/RatingResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
get:
tags:
- Comments & Ratings
summary: Get aggregate rating plus current user's rating (optional)
operationId: get_rating_summary_video_api_v1_videos__video_id_path__ratings_get
security:
- OAuth2PasswordBearer: []
parameters:
- name: video_id_path
in: path
required: true
schema:
type: string
format: uuid
title: Video Id Path
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/AggregateRatingResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/recommendations/foryou:
get:
tags:
- Recommendations
summary: Personalized 'For You' video recommendations
operationId: get_for_you_feed_api_v1_recommendations_foryou_get
security:
- OAuth2PasswordBearer: []
parameters:
- name: page
in: query
required: false
schema:
type: integer
minimum: 1
description: Page number
default: 1
title: Page
description: Page number
- name: pageSize
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Items per page
default: 10
title: Pagesize
description: Items per page
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedResponse_VideoSummary_'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/api/v1/reco/ingest:
post:
tags:
- Recommendations Internal
summary: Ingest vector embedding for a video
description: Accept a vector embedding for a video (creator-only).
operationId: ingest_embedding_api_v1_reco_ingest_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EmbeddingIngestRequest'
required: true
responses:
'202':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/EmbeddingIngestResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- OAuth2PasswordBearer: []
/api/v1/flags:
post:
tags:
- Flags
summary: Flag content (video or comment)
description: Create a new flag for the specified content.
operationId: submit_flag_api_v1_flags_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FlagCreateRequest'
required: true
responses:
'201':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/FlagResponse'
'422':
description: Validation Error
content: